mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-18 16:05:10 +00:00
* upgraded abstore golang chaincode to use contract-api package Signed-off-by: Pritam Singh <pkspritam10@gmail.com> * resolved the issue Signed-off-by: Pritam Singh <pkspritam10@gmail.com>
135 lines
3.4 KiB
Go
135 lines
3.4 KiB
Go
/*
|
|
Copyright IBM Corp. 2016 All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"github.com/hyperledger/fabric-contract-api-go/contractapi"
|
|
)
|
|
|
|
// ABstore Chaincode implementation
|
|
type ABstore struct {
|
|
contractapi.Contract
|
|
}
|
|
|
|
func (t *ABstore) Init(ctx contractapi.TransactionContextInterface, A string, Aval int, B string, Bval int) error {
|
|
fmt.Println("ABstore Init")
|
|
var err error
|
|
// Initialize the chaincode
|
|
fmt.Printf("Aval = %d, Bval = %d\n", Aval, Bval)
|
|
// Write the state to the ledger
|
|
err = ctx.GetStub().PutState(A, []byte(strconv.Itoa(Aval)))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = ctx.GetStub().PutState(B, []byte(strconv.Itoa(Bval)))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Transaction makes payment of X units from A to B
|
|
func (t *ABstore) Invoke(ctx contractapi.TransactionContextInterface, A, B string, X int) error {
|
|
var err error
|
|
var Aval int
|
|
var Bval int
|
|
// Get the state from the ledger
|
|
// TODO: will be nice to have a GetAllState call to ledger
|
|
Avalbytes, err := ctx.GetStub().GetState(A)
|
|
if err != nil {
|
|
return fmt.Errorf("Failed to get state")
|
|
}
|
|
if Avalbytes == nil {
|
|
return fmt.Errorf("Entity not found")
|
|
}
|
|
Aval, _ = strconv.Atoi(string(Avalbytes))
|
|
|
|
Bvalbytes, err := ctx.GetStub().GetState(B)
|
|
if err != nil {
|
|
return fmt.Errorf("Failed to get state")
|
|
}
|
|
if Bvalbytes == nil {
|
|
return fmt.Errorf("Entity not found")
|
|
}
|
|
Bval, _ = strconv.Atoi(string(Bvalbytes))
|
|
|
|
// Perform the execution
|
|
Aval = Aval - X
|
|
Bval = Bval + X
|
|
fmt.Printf("Aval = %d, Bval = %d\n", Aval, Bval)
|
|
|
|
// Write the state back to the ledger
|
|
err = ctx.GetStub().PutState(A, []byte(strconv.Itoa(Aval)))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = ctx.GetStub().PutState(B, []byte(strconv.Itoa(Bval)))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Delete an entity from state
|
|
func (t *ABstore) Delete(ctx contractapi.TransactionContextInterface, A string) error {
|
|
|
|
// Delete the key from the state in ledger
|
|
err := ctx.GetStub().DelState(A)
|
|
if err != nil {
|
|
return fmt.Errorf("Failed to delete state")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Query callback representing the query of a chaincode
|
|
func (t *ABstore) Query(ctx contractapi.TransactionContextInterface, A string) (string, error) {
|
|
var err error
|
|
// Get the state from the ledger
|
|
Avalbytes, err := ctx.GetStub().GetState(A)
|
|
if err != nil {
|
|
jsonResp := "{\"Error\":\"Failed to get state for " + A + "\"}"
|
|
return "", errors.New(jsonResp)
|
|
}
|
|
|
|
if Avalbytes == nil {
|
|
jsonResp := "{\"Error\":\"Nil amount for " + A + "\"}"
|
|
return "", errors.New(jsonResp)
|
|
}
|
|
|
|
jsonResp := "{\"Name\":\"" + A + "\",\"Amount\":\"" + string(Avalbytes) + "\"}"
|
|
fmt.Printf("Query Response:%s\n", jsonResp)
|
|
return string(Avalbytes), nil
|
|
}
|
|
|
|
func main() {
|
|
cc, err := contractapi.NewChaincode(new(ABstore))
|
|
if err != nil {
|
|
panic(err.Error())
|
|
}
|
|
if err := cc.Start(); err != nil {
|
|
fmt.Printf("Error starting ABstore chaincode: %s", err)
|
|
}
|
|
}
|