You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.4 KiB
60 lines
1.4 KiB
/*
|
|
This file is part of cpp-ethereum.
|
|
|
|
cpp-ethereum is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Foobar is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/** @file Trie.h
|
|
* @author Gav Wood <i@gavwood.com>
|
|
* @date 2014
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <map>
|
|
#include "RLP.h"
|
|
|
|
namespace eth
|
|
{
|
|
|
|
u256 hash256(StringMap const& _s);
|
|
u256 hash256(u256Map const& _s);
|
|
std::string hexPrefixEncode(bytes const& _hexVector, bool _terminated = false, int _begin = 0, int _end = -1);
|
|
|
|
class TrieNode;
|
|
|
|
/**
|
|
* @brief Merkle Patricia Tree "Trie": a modifed base-16 Radix tree.
|
|
*/
|
|
class Trie
|
|
{
|
|
public:
|
|
Trie(): m_root(nullptr) {}
|
|
~Trie();
|
|
|
|
u256 hash256() const;
|
|
bytes rlp() const;
|
|
|
|
void debugPrint();
|
|
|
|
std::string const& at(std::string const& _key) const;
|
|
void insert(std::string const& _key, std::string const& _value);
|
|
void remove(std::string const& _key);
|
|
|
|
private:
|
|
TrieNode* m_root;
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|