Skip to content

Commit 9e9090e

Browse files
committed
[FAB-10029] Extend committer API to get coll. conf.
Add new function to the Committer interface to expose capablity of acquiring collections configuration based on chaincode namespace and the ledger height. Change-Id: I3cb9b039895503992375e4675c87fd85a1894ce8 Signed-off-by: Artem Barger <bartem@il.ibm.com>
1 parent ff31dd1 commit 9e9090e

8 files changed

+36
-0
lines changed

core/committer/committer.go

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ type Committer interface {
4848
// Gets blocks with sequence numbers provided in the slice
4949
GetBlocks(blockSeqs []uint64) []*common.Block
5050

51+
// GetConfigHistoryRetriever returns the ConfigHistoryRetriever
52+
GetConfigHistoryRetriever() (ledger.ConfigHistoryRetriever, error)
53+
5154
// Closes committing service
5255
Close()
5356
}

core/committer/committer_impl.go

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ type PeerLedgerSupport interface {
5050

5151
GetBlockByNumber(blockNumber uint64) (*common.Block, error)
5252

53+
GetConfigHistoryRetriever() (ledger.ConfigHistoryRetriever, error)
54+
5355
Close()
5456
}
5557

core/committer/committer_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ type mockLedger struct {
3232
mock.Mock
3333
}
3434

35+
func (m *mockLedger) GetConfigHistoryRetriever() (ledger2.ConfigHistoryRetriever, error) {
36+
args := m.Called()
37+
return args.Get(0).(ledger2.ConfigHistoryRetriever), args.Error(1)
38+
}
39+
3540
func (m *mockLedger) GetBlockchainInfo() (*common.BlockchainInfo, error) {
3641
info := &common.BlockchainInfo{
3742
Height: m.height,

gossip/privdata/coordinator_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,11 @@ type committerMock struct {
163163
mock.Mock
164164
}
165165

166+
func (mock *committerMock) GetConfigHistoryRetriever() (ledger.ConfigHistoryRetriever, error) {
167+
args := mock.Called()
168+
return args.Get(0).(ledger.ConfigHistoryRetriever), args.Error(1)
169+
}
170+
166171
func (mock *committerMock) GetPvtDataByNum(blockNum uint64, filter ledger.PvtNsCollFilter) ([]*ledger.TxPvtData, error) {
167172
args := mock.Called(blockNum, filter)
168173
return args.Get(0).([]*ledger.TxPvtData), args.Error(1)

gossip/privdata/dataretriever.go

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ type DataStore interface {
3333
// collections and namespaces of private data to retrieve
3434
GetPvtDataByNum(blockNum uint64, filter ledger.PvtNsCollFilter) ([]*ledger.TxPvtData, error)
3535

36+
// GetConfigHistoryRetriever returns the ConfigHistoryRetriever
37+
GetConfigHistoryRetriever() (ledger.ConfigHistoryRetriever, error)
38+
3639
// Get recent block sequence number
3740
LedgerHeight() (uint64, error)
3841
}

gossip/privdata/dataretriever_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ type mockedDataStore struct {
2222
mock.Mock
2323
}
2424

25+
func (ds *mockedDataStore) GetConfigHistoryRetriever() (ledger.ConfigHistoryRetriever, error) {
26+
args := ds.Called()
27+
return args.Get(0).(ledger.ConfigHistoryRetriever), args.Error(1)
28+
}
29+
2530
func (ds *mockedDataStore) GetTxPvtRWSetByTxid(txid string, filter ledger.PvtNsCollFilter) (transientstore.RWSetScanner, error) {
2631
args := ds.Called(txid, filter)
2732
return args.Get(0).(transientstore.RWSetScanner), args.Error(1)

gossip/service/gossip_service_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,10 @@ type mockLedgerInfo struct {
338338
Height uint64
339339
}
340340

341+
func (li *mockLedgerInfo) GetConfigHistoryRetriever() (ledger.ConfigHistoryRetriever, error) {
342+
panic("implement me")
343+
}
344+
341345
func (li *mockLedgerInfo) GetPvtDataByNum(blockNum uint64, filter ledger.PvtNsCollFilter) ([]*ledger.TxPvtData, error) {
342346
panic("implement me")
343347
}

gossip/state/state_test.go

+9
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,11 @@ type mockCommitter struct {
197197
sync.Mutex
198198
}
199199

200+
func (mc *mockCommitter) GetConfigHistoryRetriever() (ledger.ConfigHistoryRetriever, error) {
201+
args := mc.Called()
202+
return args.Get(0).(ledger.ConfigHistoryRetriever), args.Error(1)
203+
}
204+
200205
func (mc *mockCommitter) GetPvtDataByNum(blockNum uint64, filter ledger.PvtNsCollFilter) ([]*ledger.TxPvtData, error) {
201206
args := mc.Called(blockNum, filter)
202207
return args.Get(0).([]*ledger.TxPvtData), args.Error(1)
@@ -241,6 +246,10 @@ type ramLedger struct {
241246
sync.RWMutex
242247
}
243248

249+
func (mock *ramLedger) GetConfigHistoryRetriever() (ledger.ConfigHistoryRetriever, error) {
250+
panic("implement me")
251+
}
252+
244253
func (mock *ramLedger) GetPvtDataAndBlockByNum(blockNum uint64, filter ledger.PvtNsCollFilter) (*ledger.BlockAndPvtData, error) {
245254
mock.RLock()
246255
defer mock.RUnlock()

0 commit comments

Comments
 (0)