2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
package ethdb
|
|
|
|
|
|
|
|
import (
|
2015-10-13 09:04:25 +00:00
|
|
|
"errors"
|
2015-10-07 09:14:30 +00:00
|
|
|
"sync"
|
2014-10-23 13:01:27 +00:00
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2014-02-14 22:56:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a test memory database. Do not use for any production it does not get persisted
|
|
|
|
*/
|
|
|
|
type MemDatabase struct {
|
2015-10-07 09:14:30 +00:00
|
|
|
db map[string][]byte
|
|
|
|
lock sync.RWMutex
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 12:24:25 +00:00
|
|
|
func NewMemDatabase() *MemDatabase {
|
2015-10-07 09:14:30 +00:00
|
|
|
return &MemDatabase{
|
|
|
|
db: make(map[string][]byte),
|
2018-05-09 12:24:25 +00:00
|
|
|
}
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 12:24:25 +00:00
|
|
|
func NewMemDatabaseWithCap(size int) *MemDatabase {
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 11:56:11 +00:00
|
|
|
return &MemDatabase{
|
|
|
|
db: make(map[string][]byte, size),
|
2018-05-09 12:24:25 +00:00
|
|
|
}
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 11:56:11 +00:00
|
|
|
}
|
|
|
|
|
2015-06-20 18:31:11 +00:00
|
|
|
func (db *MemDatabase) Put(key []byte, value []byte) error {
|
2015-10-07 09:14:30 +00:00
|
|
|
db.lock.Lock()
|
|
|
|
defer db.lock.Unlock()
|
|
|
|
|
2015-07-05 23:19:16 +00:00
|
|
|
db.db[string(key)] = common.CopyBytes(value)
|
2015-06-20 18:31:11 +00:00
|
|
|
return nil
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2017-09-09 16:03:07 +00:00
|
|
|
func (db *MemDatabase) Has(key []byte) (bool, error) {
|
|
|
|
db.lock.RLock()
|
|
|
|
defer db.lock.RUnlock()
|
|
|
|
|
|
|
|
_, ok := db.db[string(key)]
|
|
|
|
return ok, nil
|
|
|
|
}
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
func (db *MemDatabase) Get(key []byte) ([]byte, error) {
|
2015-10-07 09:14:30 +00:00
|
|
|
db.lock.RLock()
|
|
|
|
defer db.lock.RUnlock()
|
|
|
|
|
2015-10-13 09:04:25 +00:00
|
|
|
if entry, ok := db.db[string(key)]; ok {
|
2017-08-11 10:41:49 +00:00
|
|
|
return common.CopyBytes(entry), nil
|
2015-10-13 09:04:25 +00:00
|
|
|
}
|
|
|
|
return nil, errors.New("not found")
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 16:55:18 +00:00
|
|
|
func (db *MemDatabase) Keys() [][]byte {
|
2015-10-07 09:14:30 +00:00
|
|
|
db.lock.RLock()
|
|
|
|
defer db.lock.RUnlock()
|
|
|
|
|
2015-07-02 16:55:18 +00:00
|
|
|
keys := [][]byte{}
|
2017-01-06 14:52:03 +00:00
|
|
|
for key := range db.db {
|
2015-07-02 16:55:18 +00:00
|
|
|
keys = append(keys, []byte(key))
|
|
|
|
}
|
|
|
|
return keys
|
|
|
|
}
|
|
|
|
|
2014-02-24 11:12:01 +00:00
|
|
|
func (db *MemDatabase) Delete(key []byte) error {
|
2015-10-07 09:14:30 +00:00
|
|
|
db.lock.Lock()
|
|
|
|
defer db.lock.Unlock()
|
2014-02-24 11:12:01 +00:00
|
|
|
|
2015-10-07 09:14:30 +00:00
|
|
|
delete(db.db, string(key))
|
2014-02-24 11:12:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-12-11 00:33:45 +00:00
|
|
|
func (db *MemDatabase) Close() {}
|
2015-04-22 10:46:41 +00:00
|
|
|
|
2015-08-18 11:42:21 +00:00
|
|
|
func (db *MemDatabase) NewBatch() Batch {
|
|
|
|
return &memBatch{db: db}
|
|
|
|
}
|
|
|
|
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 11:56:11 +00:00
|
|
|
func (db *MemDatabase) Len() int { return len(db.db) }
|
|
|
|
|
2018-07-18 10:41:36 +00:00
|
|
|
type kv struct {
|
|
|
|
k, v []byte
|
|
|
|
del bool
|
|
|
|
}
|
2015-08-18 11:42:21 +00:00
|
|
|
|
|
|
|
type memBatch struct {
|
|
|
|
db *MemDatabase
|
|
|
|
writes []kv
|
2017-09-09 16:03:07 +00:00
|
|
|
size int
|
2015-08-18 11:42:21 +00:00
|
|
|
}
|
|
|
|
|
2015-10-07 09:14:30 +00:00
|
|
|
func (b *memBatch) Put(key, value []byte) error {
|
2018-07-18 10:41:36 +00:00
|
|
|
b.writes = append(b.writes, kv{common.CopyBytes(key), common.CopyBytes(value), false})
|
2017-09-09 16:03:07 +00:00
|
|
|
b.size += len(value)
|
2015-08-18 11:42:21 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-07-02 08:16:30 +00:00
|
|
|
func (b *memBatch) Delete(key []byte) error {
|
2018-07-18 10:41:36 +00:00
|
|
|
b.writes = append(b.writes, kv{common.CopyBytes(key), nil, true})
|
|
|
|
b.size += 1
|
2018-07-02 08:16:30 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-10-07 09:14:30 +00:00
|
|
|
func (b *memBatch) Write() error {
|
2015-10-13 09:04:25 +00:00
|
|
|
b.db.lock.Lock()
|
|
|
|
defer b.db.lock.Unlock()
|
2015-10-07 09:14:30 +00:00
|
|
|
|
|
|
|
for _, kv := range b.writes {
|
2018-07-18 10:41:36 +00:00
|
|
|
if kv.del {
|
2018-07-02 08:16:30 +00:00
|
|
|
delete(b.db.db, string(kv.k))
|
|
|
|
continue
|
|
|
|
}
|
2015-10-07 09:14:30 +00:00
|
|
|
b.db.db[string(kv.k)] = kv.v
|
2015-08-18 11:42:21 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-09-09 16:03:07 +00:00
|
|
|
|
|
|
|
func (b *memBatch) ValueSize() int {
|
|
|
|
return b.size
|
|
|
|
}
|
2018-01-30 17:03:31 +00:00
|
|
|
|
|
|
|
func (b *memBatch) Reset() {
|
|
|
|
b.writes = b.writes[:0]
|
|
|
|
b.size = 0
|
|
|
|
}
|