2020-01-17 23:16:01 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2019 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package shared
|
|
|
|
|
2020-01-31 18:03:37 +00:00
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
)
|
|
|
|
|
2020-01-29 20:37:20 +00:00
|
|
|
// PayloadStreamer streams chain-specific payloads to the provided channel
|
|
|
|
type PayloadStreamer interface {
|
2020-01-31 18:03:37 +00:00
|
|
|
Stream(payloadChan chan RawChainData) (ClientSubscription, error)
|
2020-01-29 20:37:20 +00:00
|
|
|
}
|
2020-01-17 23:16:01 +00:00
|
|
|
|
2020-01-29 20:37:20 +00:00
|
|
|
// PayloadFetcher fetches chain-specific payloads
|
|
|
|
type PayloadFetcher interface {
|
2020-01-31 18:03:37 +00:00
|
|
|
FetchAt(blockHeights []uint64) ([]RawChainData, error)
|
2020-01-29 20:37:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PayloadConverter converts chain-specific payloads into IPLD payloads for publishing
|
|
|
|
type PayloadConverter interface {
|
2020-02-20 22:12:52 +00:00
|
|
|
Convert(payload RawChainData) (ConvertedData, error)
|
2020-01-29 20:37:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IPLDPublisher publishes IPLD payloads and returns a CID payload for indexing
|
|
|
|
type IPLDPublisher interface {
|
2020-02-20 22:12:52 +00:00
|
|
|
Publish(payload ConvertedData) (CIDsForIndexing, error)
|
2020-01-17 23:16:01 +00:00
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:20 +00:00
|
|
|
// CIDIndexer indexes a CID payload in Postgres
|
2020-01-17 23:16:01 +00:00
|
|
|
type CIDIndexer interface {
|
2020-01-31 18:03:37 +00:00
|
|
|
Index(cids CIDsForIndexing) error
|
2020-01-17 23:16:01 +00:00
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:20 +00:00
|
|
|
// ResponseFilterer applies a filter to an IPLD payload to return a subscription response packet
|
|
|
|
type ResponseFilterer interface {
|
2020-02-20 22:12:52 +00:00
|
|
|
Filter(filter SubscriptionSettings, payload ConvertedData) (response IPLDs, err error)
|
2020-01-29 20:37:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CIDRetriever retrieves cids according to a provided filter and returns a CID wrapper
|
2020-01-17 23:16:01 +00:00
|
|
|
type CIDRetriever interface {
|
2020-02-23 23:14:29 +00:00
|
|
|
Retrieve(filter SubscriptionSettings, blockNumber int64) ([]CIDsForFetching, bool, error)
|
2020-01-17 23:16:01 +00:00
|
|
|
RetrieveFirstBlockNumber() (int64, error)
|
|
|
|
RetrieveLastBlockNumber() (int64, error)
|
|
|
|
RetrieveGapsInData() ([]Gap, error)
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:20 +00:00
|
|
|
// IPLDFetcher uses a CID wrapper to fetch an IPLD wrapper
|
2020-01-17 23:16:01 +00:00
|
|
|
type IPLDFetcher interface {
|
2020-02-20 22:12:52 +00:00
|
|
|
Fetch(cids CIDsForFetching) (IPLDs, error)
|
2020-01-17 23:16:01 +00:00
|
|
|
}
|
2020-01-29 20:37:20 +00:00
|
|
|
|
|
|
|
// ClientSubscription is a general interface for chain data subscriptions
|
|
|
|
type ClientSubscription interface {
|
|
|
|
Err() <-chan error
|
|
|
|
Unsubscribe()
|
|
|
|
}
|
2020-01-30 22:35:31 +00:00
|
|
|
|
|
|
|
// DagPutter is a general interface for a dag putter
|
|
|
|
type DagPutter interface {
|
|
|
|
DagPut(raw interface{}) ([]string, error)
|
|
|
|
}
|
2020-01-31 18:03:37 +00:00
|
|
|
|
2020-03-12 18:51:58 +00:00
|
|
|
// Cleaner is for cleaning out data from the cache within the given ranges
|
|
|
|
type Cleaner interface {
|
|
|
|
Clean(rngs [][2]uint64, t DataType) error
|
|
|
|
}
|
|
|
|
|
2020-01-31 18:03:37 +00:00
|
|
|
// SubscriptionSettings is the interface every subscription filter type needs to satisfy, no matter the chain
|
|
|
|
// Further specifics of the underlying filter type depend on the internal needs of the types
|
|
|
|
// which satisfy the ResponseFilterer and CIDRetriever interfaces for a specific chain
|
|
|
|
// The underlying type needs to be rlp serializable
|
|
|
|
type SubscriptionSettings interface {
|
|
|
|
StartingBlock() *big.Int
|
|
|
|
EndingBlock() *big.Int
|
2020-02-03 18:22:29 +00:00
|
|
|
ChainType() ChainType
|
2020-01-31 18:03:37 +00:00
|
|
|
HistoricalData() bool
|
|
|
|
HistoricalDataOnly() bool
|
|
|
|
}
|