2017-11-06 16:52:07 +00:00
|
|
|
package repositories
|
|
|
|
|
2018-01-23 18:43:35 +00:00
|
|
|
import (
|
2018-02-02 21:53:16 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
2018-01-26 00:08:26 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/filters"
|
2018-01-23 18:43:35 +00:00
|
|
|
)
|
2017-11-06 16:52:07 +00:00
|
|
|
|
|
|
|
type Repository interface {
|
2018-02-02 21:53:16 +00:00
|
|
|
BlockRepository
|
|
|
|
ContractRepository
|
|
|
|
LogsRepository
|
|
|
|
ReceiptRepository
|
|
|
|
FilterRepository
|
2018-02-08 16:12:08 +00:00
|
|
|
WatchedEventsRepository
|
2018-02-02 21:53:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var ErrBlockDoesNotExist = func(blockNumber int64) error {
|
|
|
|
return errors.New(fmt.Sprintf("Block number %d does not exist", blockNumber))
|
|
|
|
}
|
|
|
|
|
|
|
|
type BlockRepository interface {
|
2017-12-19 20:14:41 +00:00
|
|
|
CreateOrUpdateBlock(block core.Block) error
|
2018-02-08 16:12:08 +00:00
|
|
|
GetBlock(blockNumber int64) (core.Block, error)
|
2017-11-06 20:36:12 +00:00
|
|
|
MissingBlockNumbers(startingBlockNumber int64, endingBlockNumber int64) []int64
|
2018-02-02 21:53:16 +00:00
|
|
|
SetBlocksStatus(chainHead int64)
|
|
|
|
}
|
|
|
|
|
|
|
|
var ErrContractDoesNotExist = func(contractHash string) error {
|
|
|
|
return errors.New(fmt.Sprintf("Contract %v does not exist", contractHash))
|
|
|
|
}
|
|
|
|
|
|
|
|
type ContractRepository interface {
|
2017-12-04 22:54:35 +00:00
|
|
|
CreateContract(contract core.Contract) error
|
2018-02-08 16:12:08 +00:00
|
|
|
GetContract(contractHash string) (core.Contract, error)
|
2017-12-04 22:54:35 +00:00
|
|
|
ContractExists(contractHash string) bool
|
2018-02-08 16:12:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var ErrFilterDoesNotExist = func(name string) error {
|
|
|
|
return errors.New(fmt.Sprintf("filter %s does not exist", name))
|
2018-02-02 21:53:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type FilterRepository interface {
|
2018-02-08 16:12:08 +00:00
|
|
|
CreateFilter(filter filters.LogFilter) error
|
|
|
|
GetFilter(name string) (filters.LogFilter, error)
|
2017-11-06 16:52:07 +00:00
|
|
|
}
|
2018-02-02 21:53:16 +00:00
|
|
|
|
|
|
|
type LogsRepository interface {
|
|
|
|
CreateLogs(logs []core.Log) error
|
2018-02-08 16:12:08 +00:00
|
|
|
GetLogs(address string, blockNumber int64) []core.Log
|
2018-02-02 21:53:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var ErrReceiptDoesNotExist = func(txHash string) error {
|
|
|
|
return errors.New(fmt.Sprintf("Receipt for tx: %v does not exist", txHash))
|
|
|
|
}
|
|
|
|
|
|
|
|
type ReceiptRepository interface {
|
2018-02-08 16:12:08 +00:00
|
|
|
GetReceipt(txHash string) (core.Receipt, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type WatchedEventsRepository interface {
|
|
|
|
GetWatchedEvents(name string) ([]*core.WatchedEvent, error)
|
2018-02-02 21:53:16 +00:00
|
|
|
}
|