forked from cgorenflo/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.go
91 lines (77 loc) · 2.57 KB
/
store.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
/*
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 (
"fmt"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric/core/chaincode/shim"
"github.com/hyperledger/fabric/examples/chaincode/go/utxo/util"
)
// Store struct uses a chaincode stub for state access
type Store struct {
stub shim.ChaincodeStubInterface
}
// MakeChaincodeStore returns a store for storing keys in the state
func MakeChaincodeStore(stub shim.ChaincodeStubInterface) util.Store {
store := &Store{}
store.stub = stub
return store
}
func keyToString(key *util.Key) string {
return key.TxHashAsHex + ":" + string(key.TxIndex)
}
// GetState returns the transaction for a given key
func (s *Store) GetState(key util.Key) (*util.TX_TXOUT, bool, error) {
keyToFetch := keyToString(&key)
data, err := s.stub.GetState(keyToFetch)
if err != nil {
return nil, false, fmt.Errorf("Error getting state from stub: %s", err)
}
if data == nil {
return nil, false, nil
}
// Value found, unmarshal
var value = &util.TX_TXOUT{}
err = proto.Unmarshal(data, value)
if err != nil {
return nil, false, fmt.Errorf("Error unmarshalling value: %s", err)
}
return value, true, nil
}
// DelState deletes the transaction for the given key
func (s *Store) DelState(key util.Key) error {
return s.stub.DelState(keyToString(&key))
}
// PutState stores the given transaction and key
func (s *Store) PutState(key util.Key, value *util.TX_TXOUT) error {
data, err := proto.Marshal(value)
if err != nil {
return fmt.Errorf("Error marshalling value to bytes: %s", err)
}
return s.stub.PutState(keyToString(&key), data)
}
// GetTran returns a transaction for the given hash
func (s *Store) GetTran(key string) ([]byte, bool, error) {
data, err := s.stub.GetState(key)
if err != nil {
return nil, false, fmt.Errorf("Error getting state from stub: %s", err)
}
if data == nil {
return nil, false, nil
}
return data, true, nil
}
// PutTran adds a transaction to the state with the hash as a key
func (s *Store) PutTran(key string, value []byte) error {
return s.stub.PutState(key, value)
}