2020-05-30 17:09:37 +00:00
// VulcanizeDB
// Copyright © 2020 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/>.
2020-05-30 17:20:00 +00:00
package ipfsethdb
2020-05-30 17:09:37 +00:00
import (
2020-06-29 21:11:29 +00:00
"context"
2020-05-30 17:09:37 +00:00
"errors"
"fmt"
"strings"
"github.com/ethereum/go-ethereum/ethdb"
2020-06-29 21:11:29 +00:00
"github.com/ipfs/go-blockservice"
2020-05-30 17:09:37 +00:00
)
var (
2020-07-12 23:16:42 +00:00
stateTrieCodec uint64 = 0x96
defaultBatchCapacity = 1024
errNotSupported = errors . New ( "this operation is not supported" )
2020-05-30 17:09:37 +00:00
)
2021-12-29 06:17:09 +00:00
var _ ethdb . Database = & Database { }
2020-06-29 21:11:29 +00:00
// Database is the type that satisfies the ethdb.Database and ethdb.KeyValueStore interfaces for IPFS Ethereum data
// This is ipfs-backing-datastore agnostic but must operate through a configured ipfs node (and so is subject to lockfile contention with e.g. an ipfs daemon)
// If blockservice block exchange is configured the blockservice can fetch data that are missing locally from IPFS peers
2020-05-30 17:09:37 +00:00
type Database struct {
2020-06-29 21:11:29 +00:00
blockService blockservice . BlockService
2020-05-30 17:09:37 +00:00
}
2020-06-29 21:11:29 +00:00
// NewKeyValueStore returns a ethdb.KeyValueStore interface for IPFS
func NewKeyValueStore ( bs blockservice . BlockService ) ethdb . KeyValueStore {
2020-05-30 17:09:37 +00:00
return & Database {
2020-06-29 21:11:29 +00:00
blockService : bs ,
2020-05-30 17:09:37 +00:00
}
}
2020-06-29 21:11:29 +00:00
// NewDatabase returns a ethdb.Database interface for IPFS
func NewDatabase ( bs blockservice . BlockService ) ethdb . Database {
2020-05-30 17:09:37 +00:00
return & Database {
2020-06-29 21:11:29 +00:00
blockService : bs ,
2020-05-30 17:09:37 +00:00
}
}
2021-10-06 09:46:09 +00:00
func ( d * Database ) ModifyAncients ( f func ( ethdb . AncientWriteOp ) error ) ( int64 , error ) {
return 0 , errNotSupported
}
2020-05-30 17:09:37 +00:00
// Has satisfies the ethdb.KeyValueReader interface
// Has retrieves if a key is present in the key-value data store
2020-06-29 21:11:29 +00:00
// This only operates on the local blockstore not through the exchange
2020-05-30 17:09:37 +00:00
func ( d * Database ) Has ( key [ ] byte ) ( bool , error ) {
2020-07-09 19:49:01 +00:00
// we are using state codec because we don't know the codec and at this level the codec doesn't matter, the datastore key is multihash-only derived
2020-07-12 23:16:42 +00:00
c , err := Keccak256ToCid ( key , stateTrieCodec )
2020-05-30 17:09:37 +00:00
if err != nil {
return false , err
}
2022-08-01 21:05:18 +00:00
return d . blockService . Blockstore ( ) . Has ( context . Background ( ) , c )
2020-05-30 17:09:37 +00:00
}
// Get satisfies the ethdb.KeyValueReader interface
// Get retrieves the given key if it's present in the key-value data store
func ( d * Database ) Get ( key [ ] byte ) ( [ ] byte , error ) {
2020-07-09 19:49:01 +00:00
// we are using state codec because we don't know the codec and at this level the codec doesn't matter, the datastore key is multihash-only derived
2020-07-12 23:16:42 +00:00
c , err := Keccak256ToCid ( key , stateTrieCodec )
2020-05-30 17:09:37 +00:00
if err != nil {
return nil , err
}
2020-06-29 21:11:29 +00:00
block , err := d . blockService . GetBlock ( context . Background ( ) , c )
2020-07-09 19:49:01 +00:00
if err != nil {
return nil , err
}
return block . RawData ( ) , nil
2020-05-30 17:09:37 +00:00
}
// Put satisfies the ethdb.KeyValueWriter interface
// Put inserts the given value into the key-value data store
2020-06-29 21:11:29 +00:00
// Key is expected to be the keccak256 hash of value
2020-05-30 17:09:37 +00:00
func ( d * Database ) Put ( key [ ] byte , value [ ] byte ) error {
2020-06-29 21:11:29 +00:00
b , err := NewBlock ( key , value )
2020-05-30 17:09:37 +00:00
if err != nil {
return err
}
2022-08-01 21:05:18 +00:00
return d . blockService . AddBlock ( context . Background ( ) , b )
2020-05-30 17:09:37 +00:00
}
// Delete satisfies the ethdb.KeyValueWriter interface
// Delete removes the key from the key-value data store
func ( d * Database ) Delete ( key [ ] byte ) error {
2020-07-09 19:49:01 +00:00
// we are using state codec because we don't know the codec and at this level the codec doesn't matter, the datastore key is multihash-only derived
2020-07-12 23:16:42 +00:00
c , err := Keccak256ToCid ( key , stateTrieCodec )
2020-05-30 17:09:37 +00:00
if err != nil {
return err
}
2022-08-01 21:05:18 +00:00
return d . blockService . DeleteBlock ( context . Background ( ) , c )
2020-05-30 17:09:37 +00:00
}
// DatabaseProperty enum type
type DatabaseProperty int
const (
Unknown DatabaseProperty = iota
2020-06-29 21:11:29 +00:00
ExchangeOnline
2020-05-30 17:09:37 +00:00
)
// DatabasePropertyFromString helper function
func DatabasePropertyFromString ( property string ) ( DatabaseProperty , error ) {
switch strings . ToLower ( property ) {
2020-06-29 21:11:29 +00:00
case "exchange" , "online" :
return ExchangeOnline , nil
2020-05-30 17:09:37 +00:00
default :
return Unknown , fmt . Errorf ( "unknown database property" )
}
}
// Stat satisfies the ethdb.Stater interface
// Stat returns a particular internal stat of the database
func ( d * Database ) Stat ( property string ) ( string , error ) {
prop , err := DatabasePropertyFromString ( property )
if err != nil {
return "" , err
}
switch prop {
default :
return "" , fmt . Errorf ( "unhandled database property" )
}
}
// Compact satisfies the ethdb.Compacter interface
// Compact flattens the underlying data store for the given key range
func ( d * Database ) Compact ( start [ ] byte , limit [ ] byte ) error {
return errNotSupported
}
// NewBatch satisfies the ethdb.Batcher interface
// NewBatch creates a write-only database that buffers changes to its host db
// until a final write is called
func ( d * Database ) NewBatch ( ) ethdb . Batch {
2020-06-29 21:11:29 +00:00
b , err := NewBatch ( d . blockService , defaultBatchCapacity )
if err != nil {
panic ( err )
}
return b
2020-05-30 17:09:37 +00:00
}
2022-04-20 10:38:50 +00:00
// NewBatchWithSize satisfies the ethdb.Batcher interface.
// NewBatchWithSize creates a write-only database batch with pre-allocated buffer.
func ( d * Database ) NewBatchWithSize ( size int ) ethdb . Batch {
b , err := NewBatch ( d . blockService , size )
if err != nil {
panic ( err )
}
return b
}
2020-05-30 17:09:37 +00:00
// NewIterator satisfies the ethdb.Iteratee interface
// it creates a binary-alphabetical iterator over a subset
// of database content with a particular key prefix, starting at a particular
// initial key (or after, if it does not exist).
//
// Note: This method assumes that the prefix is NOT part of the start, so there's
// no need for the caller to prepend the prefix to the start
func ( d * Database ) NewIterator ( prefix [ ] byte , start [ ] byte ) ethdb . Iterator {
2020-06-29 21:11:29 +00:00
return NewIterator ( start , prefix , d . blockService )
2020-05-30 17:09:37 +00:00
}
// Close satisfies the io.Closer interface
// Close closes the db connection
func ( d * Database ) Close ( ) error {
2020-06-29 21:11:29 +00:00
return d . blockService . Close ( )
2020-05-30 17:09:37 +00:00
}
// HasAncient satisfies the ethdb.AncientReader interface
// HasAncient returns an indicator whether the specified data exists in the ancient store
func ( d * Database ) HasAncient ( kind string , number uint64 ) ( bool , error ) {
return false , errNotSupported
}
// Ancient satisfies the ethdb.AncientReader interface
// Ancient retrieves an ancient binary blob from the append-only immutable files
func ( d * Database ) Ancient ( kind string , number uint64 ) ( [ ] byte , error ) {
return nil , errNotSupported
}
// Ancients satisfies the ethdb.AncientReader interface
// Ancients returns the ancient item numbers in the ancient store
func ( d * Database ) Ancients ( ) ( uint64 , error ) {
return 0 , errNotSupported
}
2022-04-20 10:38:50 +00:00
// Tail satisfies the ethdb.AncientReader interface.
// Tail returns the number of first stored item in the freezer.
func ( d * Database ) Tail ( ) ( uint64 , error ) {
return 0 , errNotSupported
}
2020-05-30 17:09:37 +00:00
// AncientSize satisfies the ethdb.AncientReader interface
// AncientSize returns the ancient size of the specified category
func ( d * Database ) AncientSize ( kind string ) ( uint64 , error ) {
return 0 , errNotSupported
}
2021-12-29 06:17:09 +00:00
// AncientRange retrieves all the items in a range, starting from the index 'start'.
2021-08-24 13:01:20 +00:00
// It will return
2024-04-03 09:41:52 +00:00
// - at most 'count' items,
// - at least 1 item (even if exceeding the maxBytes), but will otherwise
// return as many items as fit into maxBytes.
2021-12-29 06:17:09 +00:00
func ( d * Database ) AncientRange ( kind string , start , count , maxBytes uint64 ) ( [ ] [ ] byte , error ) {
2021-08-24 13:01:20 +00:00
return nil , errNotSupported
}
2021-12-29 06:17:09 +00:00
// ReadAncients applies the provided AncientReader function
2022-05-27 17:50:59 +00:00
func ( d * Database ) ReadAncients ( fn func ( ethdb . AncientReaderOp ) error ) ( err error ) {
2021-12-29 06:17:09 +00:00
return errNotSupported
}
2022-04-20 10:38:50 +00:00
// TruncateHead satisfies the ethdb.AncientWriter interface.
// TruncateHead discards all but the first n ancient data from the ancient store.
2024-04-03 09:41:52 +00:00
func ( d * Database ) TruncateHead ( n uint64 ) ( uint64 , error ) {
return 0 , errNotSupported
2022-04-20 10:38:50 +00:00
}
// TruncateTail satisfies the ethdb.AncientWriter interface.
// TruncateTail discards the first n ancient data from the ancient store.
2024-04-03 09:41:52 +00:00
func ( d * Database ) TruncateTail ( n uint64 ) ( uint64 , error ) {
return 0 , errNotSupported
2020-05-30 17:09:37 +00:00
}
// Sync satisfies the ethdb.AncientWriter interface
// Sync flushes all in-memory ancient store data to disk
func ( d * Database ) Sync ( ) error {
return errNotSupported
2020-05-30 17:10:48 +00:00
}
2022-04-20 10:38:50 +00:00
// MigrateTable satisfies the ethdb.AncientWriter interface.
// MigrateTable processes and migrates entries of a given table to a new format.
func ( d * Database ) MigrateTable ( string , func ( [ ] byte ) ( [ ] byte , error ) ) error {
return errNotSupported
}
// NewSnapshot satisfies the ethdb.Snapshotter interface.
// NewSnapshot creates a database snapshot based on the current state.
func ( d * Database ) NewSnapshot ( ) ( ethdb . Snapshot , error ) {
return nil , errNotSupported
}
2022-05-27 17:50:59 +00:00
// AncientDatadir returns an error as we don't have a backing chain freezer.
func ( d * Database ) AncientDatadir ( ) ( string , error ) {
return "" , errNotSupported
}