github.com/mysteriumnetwork/go-ethereum@v1.11.0/core/rawdb/table.go (about)

     1  // Copyright 2018 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package rawdb
    18  
    19  import (
    20  	"github.com/ethereum/go-ethereum/ethdb"
    21  )
    22  
    23  // table is a wrapper around a database that prefixes each key access with a pre-
    24  // configured string.
    25  type table struct {
    26  	db     ethdb.Database
    27  	prefix string
    28  }
    29  
    30  // NewTable returns a database object that prefixes all keys with a given string.
    31  func NewTable(db ethdb.Database, prefix string) ethdb.Database {
    32  	return &table{
    33  		db:     db,
    34  		prefix: prefix,
    35  	}
    36  }
    37  
    38  // Close is a noop to implement the Database interface.
    39  func (t *table) Close() error {
    40  	return nil
    41  }
    42  
    43  // Has retrieves if a prefixed version of a key is present in the database.
    44  func (t *table) Has(key []byte) (bool, error) {
    45  	return t.db.Has(append([]byte(t.prefix), key...))
    46  }
    47  
    48  // Get retrieves the given prefixed key if it's present in the database.
    49  func (t *table) Get(key []byte) ([]byte, error) {
    50  	return t.db.Get(append([]byte(t.prefix), key...))
    51  }
    52  
    53  // HasAncient is a noop passthrough that just forwards the request to the underlying
    54  // database.
    55  func (t *table) HasAncient(kind string, number uint64) (bool, error) {
    56  	return t.db.HasAncient(kind, number)
    57  }
    58  
    59  // Ancient is a noop passthrough that just forwards the request to the underlying
    60  // database.
    61  func (t *table) Ancient(kind string, number uint64) ([]byte, error) {
    62  	return t.db.Ancient(kind, number)
    63  }
    64  
    65  // AncientRange is a noop passthrough that just forwards the request to the underlying
    66  // database.
    67  func (t *table) AncientRange(kind string, start, count, maxBytes uint64) ([][]byte, error) {
    68  	return t.db.AncientRange(kind, start, count, maxBytes)
    69  }
    70  
    71  // Ancients is a noop passthrough that just forwards the request to the underlying
    72  // database.
    73  func (t *table) Ancients() (uint64, error) {
    74  	return t.db.Ancients()
    75  }
    76  
    77  // Tail is a noop passthrough that just forwards the request to the underlying
    78  // database.
    79  func (t *table) Tail() (uint64, error) {
    80  	return t.db.Tail()
    81  }
    82  
    83  // AncientSize is a noop passthrough that just forwards the request to the underlying
    84  // database.
    85  func (t *table) AncientSize(kind string) (uint64, error) {
    86  	return t.db.AncientSize(kind)
    87  }
    88  
    89  // ModifyAncients runs an ancient write operation on the underlying database.
    90  func (t *table) ModifyAncients(fn func(ethdb.AncientWriteOp) error) (int64, error) {
    91  	return t.db.ModifyAncients(fn)
    92  }
    93  
    94  func (t *table) ReadAncients(fn func(reader ethdb.AncientReader) error) (err error) {
    95  	return t.db.ReadAncients(fn)
    96  }
    97  
    98  // TruncateHead is a noop passthrough that just forwards the request to the underlying
    99  // database.
   100  func (t *table) TruncateHead(items uint64) error {
   101  	return t.db.TruncateHead(items)
   102  }
   103  
   104  // TruncateTail is a noop passthrough that just forwards the request to the underlying
   105  // database.
   106  func (t *table) TruncateTail(items uint64) error {
   107  	return t.db.TruncateTail(items)
   108  }
   109  
   110  // Sync is a noop passthrough that just forwards the request to the underlying
   111  // database.
   112  func (t *table) Sync() error {
   113  	return t.db.Sync()
   114  }
   115  
   116  // MigrateTable processes the entries in a given table in sequence
   117  // converting them to a new format if they're of an old format.
   118  func (t *table) MigrateTable(kind string, convert convertLegacyFn) error {
   119  	return t.db.MigrateTable(kind, convert)
   120  }
   121  
   122  // Put inserts the given value into the database at a prefixed version of the
   123  // provided key.
   124  func (t *table) Put(key []byte, value []byte) error {
   125  	return t.db.Put(append([]byte(t.prefix), key...), value)
   126  }
   127  
   128  // Delete removes the given prefixed key from the database.
   129  func (t *table) Delete(key []byte) error {
   130  	return t.db.Delete(append([]byte(t.prefix), key...))
   131  }
   132  
   133  // NewIterator creates a binary-alphabetical iterator over a subset
   134  // of database content with a particular key prefix, starting at a particular
   135  // initial key (or after, if it does not exist).
   136  func (t *table) NewIterator(prefix []byte, start []byte) ethdb.Iterator {
   137  	innerPrefix := append([]byte(t.prefix), prefix...)
   138  	iter := t.db.NewIterator(innerPrefix, start)
   139  	return &tableIterator{
   140  		iter:   iter,
   141  		prefix: t.prefix,
   142  	}
   143  }
   144  
   145  // Stat returns a particular internal stat of the database.
   146  func (t *table) Stat(property string) (string, error) {
   147  	return t.db.Stat(property)
   148  }
   149  
   150  // Compact flattens the underlying data store for the given key range. In essence,
   151  // deleted and overwritten versions are discarded, and the data is rearranged to
   152  // reduce the cost of operations needed to access them.
   153  //
   154  // A nil start is treated as a key before all keys in the data store; a nil limit
   155  // is treated as a key after all keys in the data store. If both is nil then it
   156  // will compact entire data store.
   157  func (t *table) Compact(start []byte, limit []byte) error {
   158  	// If no start was specified, use the table prefix as the first value
   159  	if start == nil {
   160  		start = []byte(t.prefix)
   161  	} else {
   162  		start = append([]byte(t.prefix), start...)
   163  	}
   164  	// If no limit was specified, use the first element not matching the prefix
   165  	// as the limit
   166  	if limit == nil {
   167  		limit = []byte(t.prefix)
   168  		for i := len(limit) - 1; i >= 0; i-- {
   169  			// Bump the current character, stopping if it doesn't overflow
   170  			limit[i]++
   171  			if limit[i] > 0 {
   172  				break
   173  			}
   174  			// Character overflown, proceed to the next or nil if the last
   175  			if i == 0 {
   176  				limit = nil
   177  			}
   178  		}
   179  	} else {
   180  		limit = append([]byte(t.prefix), limit...)
   181  	}
   182  	// Range correctly calculated based on table prefix, delegate down
   183  	return t.db.Compact(start, limit)
   184  }
   185  
   186  // NewBatch creates a write-only database that buffers changes to its host db
   187  // until a final write is called, each operation prefixing all keys with the
   188  // pre-configured string.
   189  func (t *table) NewBatch() ethdb.Batch {
   190  	return &tableBatch{t.db.NewBatch(), t.prefix}
   191  }
   192  
   193  // NewBatchWithSize creates a write-only database batch with pre-allocated buffer.
   194  func (t *table) NewBatchWithSize(size int) ethdb.Batch {
   195  	return &tableBatch{t.db.NewBatchWithSize(size), t.prefix}
   196  }
   197  
   198  // NewSnapshot creates a database snapshot based on the current state.
   199  // The created snapshot will not be affected by all following mutations
   200  // happened on the database.
   201  func (t *table) NewSnapshot() (ethdb.Snapshot, error) {
   202  	return t.db.NewSnapshot()
   203  }
   204  
   205  // tableBatch is a wrapper around a database batch that prefixes each key access
   206  // with a pre-configured string.
   207  type tableBatch struct {
   208  	batch  ethdb.Batch
   209  	prefix string
   210  }
   211  
   212  // Put inserts the given value into the batch for later committing.
   213  func (b *tableBatch) Put(key, value []byte) error {
   214  	return b.batch.Put(append([]byte(b.prefix), key...), value)
   215  }
   216  
   217  // Delete inserts the a key removal into the batch for later committing.
   218  func (b *tableBatch) Delete(key []byte) error {
   219  	return b.batch.Delete(append([]byte(b.prefix), key...))
   220  }
   221  
   222  // ValueSize retrieves the amount of data queued up for writing.
   223  func (b *tableBatch) ValueSize() int {
   224  	return b.batch.ValueSize()
   225  }
   226  
   227  // Write flushes any accumulated data to disk.
   228  func (b *tableBatch) Write() error {
   229  	return b.batch.Write()
   230  }
   231  
   232  // Reset resets the batch for reuse.
   233  func (b *tableBatch) Reset() {
   234  	b.batch.Reset()
   235  }
   236  
   237  // tableReplayer is a wrapper around a batch replayer which truncates
   238  // the added prefix.
   239  type tableReplayer struct {
   240  	w      ethdb.KeyValueWriter
   241  	prefix string
   242  }
   243  
   244  // Put implements the interface KeyValueWriter.
   245  func (r *tableReplayer) Put(key []byte, value []byte) error {
   246  	trimmed := key[len(r.prefix):]
   247  	return r.w.Put(trimmed, value)
   248  }
   249  
   250  // Delete implements the interface KeyValueWriter.
   251  func (r *tableReplayer) Delete(key []byte) error {
   252  	trimmed := key[len(r.prefix):]
   253  	return r.w.Delete(trimmed)
   254  }
   255  
   256  // Replay replays the batch contents.
   257  func (b *tableBatch) Replay(w ethdb.KeyValueWriter) error {
   258  	return b.batch.Replay(&tableReplayer{w: w, prefix: b.prefix})
   259  }
   260  
   261  // tableIterator is a wrapper around a database iterator that prefixes each key access
   262  // with a pre-configured string.
   263  type tableIterator struct {
   264  	iter   ethdb.Iterator
   265  	prefix string
   266  }
   267  
   268  // Next moves the iterator to the next key/value pair. It returns whether the
   269  // iterator is exhausted.
   270  func (iter *tableIterator) Next() bool {
   271  	return iter.iter.Next()
   272  }
   273  
   274  // Error returns any accumulated error. Exhausting all the key/value pairs
   275  // is not considered to be an error.
   276  func (iter *tableIterator) Error() error {
   277  	return iter.iter.Error()
   278  }
   279  
   280  // Key returns the key of the current key/value pair, or nil if done. The caller
   281  // should not modify the contents of the returned slice, and its contents may
   282  // change on the next call to Next.
   283  func (iter *tableIterator) Key() []byte {
   284  	key := iter.iter.Key()
   285  	if key == nil {
   286  		return nil
   287  	}
   288  	return key[len(iter.prefix):]
   289  }
   290  
   291  // Value returns the value of the current key/value pair, or nil if done. The
   292  // caller should not modify the contents of the returned slice, and its contents
   293  // may change on the next call to Next.
   294  func (iter *tableIterator) Value() []byte {
   295  	return iter.iter.Value()
   296  }
   297  
   298  // Release releases associated resources. Release should always succeed and can
   299  // be called multiple times without causing error.
   300  func (iter *tableIterator) Release() {
   301  	iter.iter.Release()
   302  }