schema.go 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. // Package rawdb contains a collection of low level database accessors.
  17. package rawdb
  18. import (
  19. "encoding/binary"
  20. "github.com/ethereum/go-ethereum/common"
  21. "github.com/ethereum/go-ethereum/metrics"
  22. )
  23. // The fields below define the low level database schema prefixing.
  24. var (
  25. // databaseVerisionKey tracks the current database version.
  26. databaseVerisionKey = []byte("DatabaseVersion")
  27. // headHeaderKey tracks the latest known header's hash.
  28. headHeaderKey = []byte("LastHeader")
  29. // headBlockKey tracks the latest known full block's hash.
  30. headBlockKey = []byte("LastBlock")
  31. // headFastBlockKey tracks the latest known incomplete block's hash during fast sync.
  32. headFastBlockKey = []byte("LastFast")
  33. // fastTrieProgressKey tracks the number of trie entries imported during fast sync.
  34. fastTrieProgressKey = []byte("TrieSync")
  35. // Data item prefixes (use single byte to avoid mixing data types, avoid `i`, used for indexes).
  36. headerPrefix = []byte("h") // headerPrefix + num (uint64 big endian) + hash -> header
  37. headerTDSuffix = []byte("t") // headerPrefix + num (uint64 big endian) + hash + headerTDSuffix -> td
  38. headerHashSuffix = []byte("n") // headerPrefix + num (uint64 big endian) + headerHashSuffix -> hash
  39. headerNumberPrefix = []byte("H") // headerNumberPrefix + hash -> num (uint64 big endian)
  40. blockBodyPrefix = []byte("b") // blockBodyPrefix + num (uint64 big endian) + hash -> block body
  41. blockReceiptsPrefix = []byte("r") // blockReceiptsPrefix + num (uint64 big endian) + hash -> block receipts
  42. txLookupPrefix = []byte("l") // txLookupPrefix + hash -> transaction/receipt lookup metadata
  43. bloomBitsPrefix = []byte("B") // bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash -> bloom bits
  44. preimagePrefix = []byte("secure-key-") // preimagePrefix + hash -> preimage
  45. configPrefix = []byte("ethereum-config-") // config prefix for the db
  46. // Chain index prefixes (use `i` + single byte to avoid mixing data types).
  47. BloomBitsIndexPrefix = []byte("iB") // BloomBitsIndexPrefix is the data table of a chain indexer to track its progress
  48. preimageCounter = metrics.NewRegisteredCounter("db/preimage/total", nil)
  49. preimageHitCounter = metrics.NewRegisteredCounter("db/preimage/hits", nil)
  50. )
  51. const (
  52. // freezerHeaderTable indicates the name of the freezer header table.
  53. freezerHeaderTable = "headers"
  54. // freezerHashTable indicates the name of the freezer canonical hash table.
  55. freezerHashTable = "hashes"
  56. // freezerBodiesTable indicates the name of the freezer block body table.
  57. freezerBodiesTable = "bodies"
  58. // freezerReceiptTable indicates the name of the freezer receipts table.
  59. freezerReceiptTable = "receipts"
  60. // freezerDifficultyTable indicates the name of the freezer total difficulty table.
  61. freezerDifficultyTable = "diffs"
  62. )
  63. // LegacyTxLookupEntry is the legacy TxLookupEntry definition with some unnecessary
  64. // fields.
  65. type LegacyTxLookupEntry struct {
  66. BlockHash common.Hash
  67. BlockIndex uint64
  68. Index uint64
  69. }
  70. // encodeBlockNumber encodes a block number as big endian uint64
  71. func encodeBlockNumber(number uint64) []byte {
  72. enc := make([]byte, 8)
  73. binary.BigEndian.PutUint64(enc, number)
  74. return enc
  75. }
  76. // headerKeyPrefix = headerPrefix + num (uint64 big endian)
  77. func headerKeyPrefix(number uint64) []byte {
  78. return append(headerPrefix, encodeBlockNumber(number)...)
  79. }
  80. // headerKey = headerPrefix + num (uint64 big endian) + hash
  81. func headerKey(number uint64, hash common.Hash) []byte {
  82. return append(append(headerPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  83. }
  84. // headerTDKey = headerPrefix + num (uint64 big endian) + hash + headerTDSuffix
  85. func headerTDKey(number uint64, hash common.Hash) []byte {
  86. return append(headerKey(number, hash), headerTDSuffix...)
  87. }
  88. // headerHashKey = headerPrefix + num (uint64 big endian) + headerHashSuffix
  89. func headerHashKey(number uint64) []byte {
  90. return append(append(headerPrefix, encodeBlockNumber(number)...), headerHashSuffix...)
  91. }
  92. // headerNumberKey = headerNumberPrefix + hash
  93. func headerNumberKey(hash common.Hash) []byte {
  94. return append(headerNumberPrefix, hash.Bytes()...)
  95. }
  96. // blockBodyKey = blockBodyPrefix + num (uint64 big endian) + hash
  97. func blockBodyKey(number uint64, hash common.Hash) []byte {
  98. return append(append(blockBodyPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  99. }
  100. // blockReceiptsKey = blockReceiptsPrefix + num (uint64 big endian) + hash
  101. func blockReceiptsKey(number uint64, hash common.Hash) []byte {
  102. return append(append(blockReceiptsPrefix, encodeBlockNumber(number)...), hash.Bytes()...)
  103. }
  104. // txLookupKey = txLookupPrefix + hash
  105. func txLookupKey(hash common.Hash) []byte {
  106. return append(txLookupPrefix, hash.Bytes()...)
  107. }
  108. // bloomBitsKey = bloomBitsPrefix + bit (uint16 big endian) + section (uint64 big endian) + hash
  109. func bloomBitsKey(bit uint, section uint64, hash common.Hash) []byte {
  110. key := append(append(bloomBitsPrefix, make([]byte, 10)...), hash.Bytes()...)
  111. binary.BigEndian.PutUint16(key[1:], uint16(bit))
  112. binary.BigEndian.PutUint64(key[3:], section)
  113. return key
  114. }
  115. // preimageKey = preimagePrefix + hash
  116. func preimageKey(hash common.Hash) []byte {
  117. return append(preimagePrefix, hash.Bytes()...)
  118. }
  119. // configKey = configPrefix + hash
  120. func configKey(hash common.Hash) []byte {
  121. return append(configPrefix, hash.Bytes()...)
  122. }