This repository has been archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathchaincode_example02.go
executable file
·152 lines (120 loc) · 3.81 KB
/
chaincode_example02.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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"
"hyperledger/cci/appinit"
"hyperledger/cci/org/hyperledger/chaincode/example02"
"hyperledger/ccs"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric/core/chaincode/shim"
)
type ChaincodeExample struct {
}
// Called to initialize the chaincode
func (t *ChaincodeExample) Init(stub shim.ChaincodeStubInterface, param *appinit.Init) error {
var err error
fmt.Printf("Aval = %d, Bval = %d\n", param.PartyA.Value, param.PartyB.Value)
// Write the state to the ledger
err = t.PutState(stub, param.PartyA)
if err != nil {
return err
}
err = t.PutState(stub, param.PartyB)
if err != nil {
return err
}
return nil
}
// Transaction makes payment of X units from A to B
func (t *ChaincodeExample) MakePayment(stub shim.ChaincodeStubInterface, param *example02.PaymentParams) error {
var err error
// Get the state from the ledger
src, err := t.GetState(stub, param.PartySrc)
if err != nil {
return err
}
dst, err := t.GetState(stub, param.PartyDst)
if err != nil {
return err
}
// Perform the execution
X := int(param.Amount)
src = src - X
dst = dst + X
fmt.Printf("Aval = %d, Bval = %d\n", src, dst)
// Write the state back to the ledger
err = stub.PutState(param.PartySrc, []byte(strconv.Itoa(src)))
if err != nil {
return err
}
err = stub.PutState(param.PartyDst, []byte(strconv.Itoa(dst)))
if err != nil {
return err
}
return nil
}
// Deletes an entity from state
func (t *ChaincodeExample) DeleteAccount(stub shim.ChaincodeStubInterface, param *example02.Entity) error {
// Delete the key from the state in ledger
err := stub.DelState(param.Id)
if err != nil {
return errors.New("Failed to delete state")
}
return nil
}
// Query callback representing the query of a chaincode
func (t *ChaincodeExample) CheckBalance(stub shim.ChaincodeStubInterface, param *example02.Entity) (*example02.BalanceResult, error) {
var err error
// Get the state from the ledger
val, err := t.GetState(stub, param.Id)
if err != nil {
return nil, err
}
fmt.Printf("Query Response: %d\n", val)
return &example02.BalanceResult{Balance: *proto.Int32(int32(val))}, nil
}
func main() {
self := &ChaincodeExample{}
interfaces := ccs.Interfaces {
"org.hyperledger.chaincode.example02": self,
"appinit": self,
}
err := ccs.Start(interfaces) // Our one instance implements both Transactions and Queries interfaces
if err != nil {
fmt.Printf("Error starting example chaincode: %s", err)
}
}
//-------------------------------------------------
// Helpers
//-------------------------------------------------
func (t *ChaincodeExample) PutState(stub shim.ChaincodeStubInterface, party *appinit.Party) error {
return stub.PutState(party.Entity, []byte(strconv.Itoa(int(party.Value))))
}
func (t *ChaincodeExample) GetState(stub shim.ChaincodeStubInterface, entity string) (int, error) {
bytes, err := stub.GetState(entity)
if err != nil {
return 0, errors.New("Failed to get state")
}
if bytes == nil {
return 0, errors.New("Entity not found")
}
val, _ := strconv.Atoi(string(bytes))
return val, nil
}