2020-05-30 17:09:51 +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:51 +00:00
|
|
|
|
|
|
|
import (
|
2020-06-29 21:11:29 +00:00
|
|
|
"context"
|
|
|
|
|
2020-05-30 17:09:51 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2024-05-23 12:47:27 +00:00
|
|
|
"github.com/ipfs/boxo/blockservice"
|
2020-05-30 17:09:51 +00:00
|
|
|
)
|
|
|
|
|
2021-12-29 06:17:09 +00:00
|
|
|
var _ ethdb.Iterator = &Iterator{}
|
|
|
|
|
2020-06-29 21:11:29 +00:00
|
|
|
// Iterator is the type that satisfies the ethdb.Iterator interface for IPFS Ethereum data
|
2020-06-26 22:39:32 +00:00
|
|
|
// Iteratee interface is used in Geth for various tests, trie/sync_bloom.go (for fast sync),
|
|
|
|
// rawdb.InspectDatabase, and the new core/state/snapshot features.
|
|
|
|
// This should not be confused with trie.NodeIterator or state.NodeIteraor (which can be constructed
|
|
|
|
// from the ethdb.KeyValueStoreand ethdb.Database interfaces)
|
2020-05-30 17:09:51 +00:00
|
|
|
type Iterator struct {
|
2020-06-29 21:11:29 +00:00
|
|
|
blockService blockservice.BlockService
|
2020-05-30 17:09:51 +00:00
|
|
|
currentKey, prefix []byte
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2020-06-29 21:11:29 +00:00
|
|
|
// NewIterator returns an ethdb.Iterator interface for PG-IPFS
|
|
|
|
func NewIterator(start, prefix []byte, bs blockservice.BlockService) ethdb.Iterator {
|
2020-05-30 17:09:51 +00:00
|
|
|
return &Iterator{
|
2020-06-29 21:11:29 +00:00
|
|
|
blockService: bs,
|
|
|
|
prefix: prefix,
|
|
|
|
currentKey: start,
|
2020-05-30 17:09:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next satisfies the ethdb.Iterator interface
|
|
|
|
// Next moves the iterator to the next key/value pair
|
|
|
|
// It returns whether the iterator is exhausted
|
|
|
|
func (i *Iterator) Next() bool {
|
2020-06-03 20:42:11 +00:00
|
|
|
// this is complicated by the ipfs db keys not being the keccak256 hashes
|
|
|
|
// go-ethereum usage of this method expects the iteration to occur over keccak256 keys
|
2020-05-30 17:09:51 +00:00
|
|
|
panic("implement me: Next")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error satisfies the ethdb.Iterator interface
|
|
|
|
// Error returns any accumulated error
|
|
|
|
// Exhausting all the key/value pairs is not considered to be an error
|
|
|
|
func (i *Iterator) Error() error {
|
|
|
|
return i.err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Key satisfies the ethdb.Iterator interface
|
|
|
|
// Key returns the key of the current key/value pair, or nil if done
|
|
|
|
// The caller should not modify the contents of the returned slice
|
|
|
|
// and its contents may change on the next call to Next
|
|
|
|
func (i *Iterator) Key() []byte {
|
|
|
|
return i.currentKey
|
|
|
|
}
|
|
|
|
|
|
|
|
// Value satisfies the ethdb.Iterator interface
|
|
|
|
// Value returns the value of the current key/value pair, or nil if done
|
|
|
|
// The caller should not modify the contents of the returned slice
|
|
|
|
// and its contents may change on the next call to Next
|
|
|
|
func (i *Iterator) Value() []byte {
|
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(i.currentKey, stateTrieCodec)
|
2020-06-29 21:11:29 +00:00
|
|
|
if err != nil {
|
|
|
|
i.err = err
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
block, err := i.blockService.GetBlock(context.Background(), c)
|
2020-05-30 17:09:51 +00:00
|
|
|
if err != nil {
|
|
|
|
i.err = err
|
|
|
|
return nil
|
|
|
|
}
|
2020-06-29 21:11:29 +00:00
|
|
|
return block.RawData()
|
2020-05-30 17:09:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Release satisfies the ethdb.Iterator interface
|
|
|
|
// Release releases associated resources
|
|
|
|
// Release should always succeed and can be called multiple times without causing error
|
|
|
|
func (i *Iterator) Release() {
|
2020-06-29 21:11:29 +00:00
|
|
|
i.blockService.Close()
|
2020-05-30 17:10:48 +00:00
|
|
|
}
|