github.com/gilgames000/kcc-geth@v1.0.6/core/rawdb/accessors_metadata.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  	"encoding/json"
    21  	"time"
    22  
    23  	"github.com/ethereum/go-ethereum/common"
    24  	"github.com/ethereum/go-ethereum/ethdb"
    25  	"github.com/ethereum/go-ethereum/log"
    26  	"github.com/ethereum/go-ethereum/params"
    27  	"github.com/ethereum/go-ethereum/rlp"
    28  )
    29  
    30  // ReadDatabaseVersion retrieves the version number of the database.
    31  func ReadDatabaseVersion(db ethdb.KeyValueReader) *uint64 {
    32  	var version uint64
    33  
    34  	enc, _ := db.Get(databaseVersionKey)
    35  	if len(enc) == 0 {
    36  		return nil
    37  	}
    38  	if err := rlp.DecodeBytes(enc, &version); err != nil {
    39  		return nil
    40  	}
    41  
    42  	return &version
    43  }
    44  
    45  // WriteDatabaseVersion stores the version number of the database
    46  func WriteDatabaseVersion(db ethdb.KeyValueWriter, version uint64) {
    47  	enc, err := rlp.EncodeToBytes(version)
    48  	if err != nil {
    49  		log.Crit("Failed to encode database version", "err", err)
    50  	}
    51  	if err = db.Put(databaseVersionKey, enc); err != nil {
    52  		log.Crit("Failed to store the database version", "err", err)
    53  	}
    54  }
    55  
    56  // ReadChainConfig retrieves the consensus settings based on the given genesis hash.
    57  func ReadChainConfig(db ethdb.KeyValueReader, hash common.Hash) *params.ChainConfig {
    58  	data, _ := db.Get(configKey(hash))
    59  	if len(data) == 0 {
    60  		return nil
    61  	}
    62  	var config params.ChainConfig
    63  	if err := json.Unmarshal(data, &config); err != nil {
    64  		log.Error("Invalid chain config JSON", "hash", hash, "err", err)
    65  		return nil
    66  	}
    67  	return &config
    68  }
    69  
    70  // WriteChainConfig writes the chain config settings to the database.
    71  func WriteChainConfig(db ethdb.KeyValueWriter, hash common.Hash, cfg *params.ChainConfig) {
    72  	if cfg == nil {
    73  		return
    74  	}
    75  	data, err := json.Marshal(cfg)
    76  	if err != nil {
    77  		log.Crit("Failed to JSON encode chain config", "err", err)
    78  	}
    79  	if err := db.Put(configKey(hash), data); err != nil {
    80  		log.Crit("Failed to store chain config", "err", err)
    81  	}
    82  }
    83  
    84  // crashList is a list of unclean-shutdown-markers, for rlp-encoding to the
    85  // database
    86  type crashList struct {
    87  	Discarded uint64   // how many ucs have we deleted
    88  	Recent    []uint64 // unix timestamps of 10 latest unclean shutdowns
    89  }
    90  
    91  const crashesToKeep = 10
    92  
    93  // PushUncleanShutdownMarker appends a new unclean shutdown marker and returns
    94  // the previous data
    95  // - a list of timestamps
    96  // - a count of how many old unclean-shutdowns have been discarded
    97  func PushUncleanShutdownMarker(db ethdb.KeyValueStore) ([]uint64, uint64, error) {
    98  	var uncleanShutdowns crashList
    99  	// Read old data
   100  	if data, err := db.Get(uncleanShutdownKey); err != nil {
   101  		log.Warn("Error reading unclean shutdown markers", "error", err)
   102  	} else if err := rlp.DecodeBytes(data, &uncleanShutdowns); err != nil {
   103  		return nil, 0, err
   104  	}
   105  	var discarded = uncleanShutdowns.Discarded
   106  	var previous = make([]uint64, len(uncleanShutdowns.Recent))
   107  	copy(previous, uncleanShutdowns.Recent)
   108  	// Add a new (but cap it)
   109  	uncleanShutdowns.Recent = append(uncleanShutdowns.Recent, uint64(time.Now().Unix()))
   110  	if count := len(uncleanShutdowns.Recent); count > crashesToKeep+1 {
   111  		numDel := count - (crashesToKeep + 1)
   112  		uncleanShutdowns.Recent = uncleanShutdowns.Recent[numDel:]
   113  		uncleanShutdowns.Discarded += uint64(numDel)
   114  	}
   115  	// And save it again
   116  	data, _ := rlp.EncodeToBytes(uncleanShutdowns)
   117  	if err := db.Put(uncleanShutdownKey, data); err != nil {
   118  		log.Warn("Failed to write unclean-shutdown marker", "err", err)
   119  		return nil, 0, err
   120  	}
   121  	return previous, discarded, nil
   122  }
   123  
   124  // PopUncleanShutdownMarker removes the last unclean shutdown marker
   125  func PopUncleanShutdownMarker(db ethdb.KeyValueStore) {
   126  	var uncleanShutdowns crashList
   127  	// Read old data
   128  	if data, err := db.Get(uncleanShutdownKey); err != nil {
   129  		log.Warn("Error reading unclean shutdown markers", "error", err)
   130  	} else if err := rlp.DecodeBytes(data, &uncleanShutdowns); err != nil {
   131  		log.Error("Error decoding unclean shutdown markers", "error", err) // Should mos def _not_ happen
   132  	}
   133  	if l := len(uncleanShutdowns.Recent); l > 0 {
   134  		uncleanShutdowns.Recent = uncleanShutdowns.Recent[:l-1]
   135  	}
   136  	data, _ := rlp.EncodeToBytes(uncleanShutdowns)
   137  	if err := db.Put(uncleanShutdownKey, data); err != nil {
   138  		log.Warn("Failed to clear unclean-shutdown marker", "err", err)
   139  	}
   140  }