2024-01-07 08:13:35 +00:00
|
|
|
package interfaces
|
|
|
|
|
|
|
|
import (
|
|
|
|
"git.lumeweb.com/LumeWeb/libs5-go/config"
|
|
|
|
"git.lumeweb.com/LumeWeb/libs5-go/encoding"
|
|
|
|
"git.lumeweb.com/LumeWeb/libs5-go/structs"
|
|
|
|
bolt "go.etcd.io/bbolt"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
2024-01-08 05:16:32 +00:00
|
|
|
//go:generate mockgen -source=node.go -destination=../mocks/interfaces/node.go -package=interfaces
|
|
|
|
|
2024-01-07 08:13:35 +00:00
|
|
|
type Node interface {
|
2024-01-07 08:54:32 +00:00
|
|
|
Services() Services
|
|
|
|
HashQueryRoutingTable() structs.Map
|
2024-01-07 08:13:35 +00:00
|
|
|
IsStarted() bool
|
|
|
|
Config() *config.NodeConfig
|
|
|
|
Logger() *zap.Logger
|
|
|
|
Db() *bolt.DB
|
|
|
|
Start() error
|
2024-01-07 08:54:32 +00:00
|
|
|
GetCachedStorageLocations(hash *encoding.Multihash, types []int) (map[string]StorageLocation, error)
|
|
|
|
AddStorageLocation(hash *encoding.Multihash, nodeId *encoding.NodeId, location StorageLocation, message []byte, config *config.NodeConfig) error
|
2024-01-07 14:02:39 +00:00
|
|
|
NetworkId() string
|
2024-01-07 08:13:35 +00:00
|
|
|
}
|