2014-02-14 14:56:09 -08:00
|
|
|
package ethdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
|
|
|
"github.com/syndtr/goleveldb/leveldb"
|
|
|
|
"path"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LDBDatabase struct {
|
|
|
|
db *leveldb.DB
|
|
|
|
}
|
|
|
|
|
2014-02-25 02:21:03 -08:00
|
|
|
func NewLDBDatabase(name string) (*LDBDatabase, error) {
|
|
|
|
dbPath := path.Join(ethutil.Config.ExecPath, name)
|
2014-02-14 14:56:09 -08:00
|
|
|
|
|
|
|
// Open the db
|
|
|
|
db, err := leveldb.OpenFile(dbPath, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
database := &LDBDatabase{db: db}
|
|
|
|
|
|
|
|
return database, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (db *LDBDatabase) Put(key []byte, value []byte) {
|
|
|
|
err := db.db.Put(key, value, nil)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Error put", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (db *LDBDatabase) Get(key []byte) ([]byte, error) {
|
|
|
|
return db.db.Get(key, nil)
|
|
|
|
}
|
|
|
|
|
2014-02-24 03:12:01 -08:00
|
|
|
func (db *LDBDatabase) Delete(key []byte) error {
|
|
|
|
return db.db.Delete(key, nil)
|
|
|
|
}
|
|
|
|
|
2014-02-25 02:21:03 -08:00
|
|
|
func (db *LDBDatabase) Db() *leveldb.DB {
|
|
|
|
return db.db
|
|
|
|
}
|
|
|
|
|
2014-02-14 14:56:09 -08:00
|
|
|
func (db *LDBDatabase) LastKnownTD() []byte {
|
|
|
|
data, _ := db.db.Get([]byte("LastKnownTotalDifficulty"), nil)
|
|
|
|
|
|
|
|
if len(data) == 0 {
|
|
|
|
data = []byte{0x0}
|
|
|
|
}
|
|
|
|
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
2014-02-28 01:36:06 -08:00
|
|
|
func (db *LDBDatabase) GetKeys() []*ethutil.Key {
|
|
|
|
data, _ := db.Get([]byte("KeyRing"))
|
|
|
|
|
|
|
|
return []*ethutil.Key{ethutil.NewKeyFromBytes(data)}
|
|
|
|
}
|
|
|
|
|
2014-02-14 14:56:09 -08:00
|
|
|
func (db *LDBDatabase) Close() {
|
|
|
|
// Close the leveldb database
|
|
|
|
db.db.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (db *LDBDatabase) Print() {
|
2014-02-28 01:36:06 -08:00
|
|
|
iter := db.db.NewIterator(nil, nil)
|
2014-02-14 14:56:09 -08:00
|
|
|
for iter.Next() {
|
|
|
|
key := iter.Key()
|
|
|
|
value := iter.Value()
|
|
|
|
|
|
|
|
fmt.Printf("%x(%d): ", key, len(key))
|
|
|
|
node := ethutil.NewValueFromBytes(value)
|
|
|
|
fmt.Printf("%v\n", node)
|
|
|
|
}
|
|
|
|
}
|