/*
This file is part of TON Blockchain Library.
TON Blockchain Library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
TON Blockchain Library 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with TON Blockchain Library. If not, see .
*/
#pragma once
#include "common/refcnt.hpp"
#include "vm/stack.hpp"
#include "vm/atom.h"
namespace fift {
using td::Ref;
using td::RefAny;
class DictKey {
public:
typedef vm::StackEntry::Type Type;
typedef unsigned long long keyhash_t;
private:
RefAny ref_;
Type tp_ = Type::t_null;
keyhash_t hash_ = 0;
static constexpr keyhash_t IntHash0 = 0xce6ab89d724409ed, MixConst1 = 0xcd5c126501510979,
MixConst2 = 0xb8f44d7fd6274ad1, MixConst3 = 0xd08726ea2422e405,
MixConst4 = 0x6407d2aeb5039dfb, StrHash = 0x93ff128344add06d;
keyhash_t compute_hash();
static keyhash_t compute_str_hash(DictKey::keyhash_t h, const char* str, std::size_t len);
static keyhash_t compute_int_hash(td::AnyIntView<> x);
int cmp_internal(const DictKey& other) const;
template
Ref value() const {
return Ref{td::static_cast_ref(), ref_};
}
template
Ref move_value() {
return Ref{td::static_cast_ref(), std::move(ref_)};
}
public:
DictKey() : ref_(), tp_(Type::t_null) {
}
DictKey(const DictKey& other) = default;
DictKey(DictKey&& other) = default;
DictKey& operator=(const DictKey& other) = default;
DictKey& operator=(DictKey&& other) = default;
DictKey(Ref atom_ref) : ref_(std::move(atom_ref)), tp_(Type::t_atom) {
compute_hash();
}
DictKey(td::RefInt256 int_ref) : ref_(std::move(int_ref)), tp_(Type::t_int) {
compute_hash();
}
explicit DictKey(vm::StackEntry se);
DictKey(std::string str, bool bytes = false) : ref_(), tp_(bytes ? Type::t_bytes : Type::t_string) {
ref_ = Ref>{true, std::move(str)};
compute_hash();
}
Type type() const {
return tp_;
}
void swap(DictKey& other) {
ref_.swap(other.ref_);
std::swap(tp_, other.tp_);
}
operator vm::StackEntry() const&;
operator vm::StackEntry() &&;
int cmp(const DictKey& other) const;
bool operator==(const DictKey& other) const {
return hash_ == other.hash_ && !cmp_internal(other);
}
bool operator!=(const DictKey& other) const {
return hash_ != other.hash_ || cmp_internal(other);
}
bool operator<(const DictKey& other) const {
return hash_ < other.hash_ || (hash_ == other.hash_ && cmp_internal(other) < 0);
}
bool is_null() const {
return tp_ == Type::t_null;
}
bool is_string() const {
return tp_ == Type::t_string;
}
};
std::ostream& operator<<(std::ostream& os, const DictKey& dkey);
class Hashmap : public td::CntObject {
DictKey key_;
vm::StackEntry value_;
Ref left_;
Ref right_;
long long y_;
public:
Hashmap(DictKey key, vm::StackEntry value, Ref left, Ref right, long long y)
: key_(std::move(key)), value_(std::move(value)), left_(std::move(left)), right_(std::move(right)), y_(y) {
}
Hashmap(const Hashmap& other) = default;
Hashmap(Hashmap&& other) = default;
virtual ~Hashmap() {
}
Hashmap* make_copy() const override {
return new Hashmap(*this);
}
const DictKey& key() const& {
return key_;
}
DictKey key() && {
return std::move(key_);
}
const vm::StackEntry& value() const& {
return value_;
}
vm::StackEntry value() && {
return std::move(value_);
}
Ref left() const {
return left_;
}
Ref right() const {
return right_;
}
Ref lr(bool branch) const {
return branch ? right_ : left_;
}
Ref rl(bool branch) const {
return branch ? left_ : right_;
}
static Ref lookup_key(Ref root, const DictKey& key);
template
static Ref lookup(Ref root, Args&&... args) {
return lookup_key(std::move(root), DictKey{std::forward(args)...});
}
static vm::StackEntry get_key(Ref root, const DictKey& key);
template
static vm::StackEntry get(Ref root, Args&&... args) {
return get_key(std::move(root), DictKey{std::forward(args)...});
}
static Ref remove_key(Ref root, const DictKey& key);
template
static Ref remove(Ref root, Args&&... args) {
return remove_key(std::move(root), DictKey{std::forward(args)...});
}
static std::pair[, vm::StackEntry> get_remove_key(Ref root, const DictKey& key);
template
static std::pair][, vm::StackEntry> get_remove(Ref root, Args&&... args) {
return get_remove_key(std::move(root), DictKey{std::forward(args)...});
}
static Ref set(Ref root, const DictKey& key, vm::StackEntry value);
static bool replace(Ref& root, const DictKey& key, vm::StackEntry value);
static std::pair][, Ref> split(Ref root, const DictKey& key, bool eq_left = false);
static Ref empty() {
return {};
}
private:
static Ref merge(Ref a, Ref b);
static const Hashmap* lookup_key_aux(const Hashmap* root, const DictKey& key);
Ref get_remove_internal(const DictKey& key, vm::StackEntry& val) const;
Ref replace_internal(const DictKey& key, const vm::StackEntry& value, bool& found) const;
static void insert(Ref& root, const DictKey& key, vm::StackEntry value, long long y);
static long long new_y();
};
struct HashmapIdx {
Ref& root_;
DictKey idx_;
template
HashmapIdx(Ref& root, Args&&... args) : root_(root), idx_(std::forward(args)...) {
}
operator vm::StackEntry() const {
return Hashmap::get(root_, idx_);
}
template
HashmapIdx& operator=(T&& value) {
root_ = Hashmap::set(root_, idx_, vm::StackEntry(std::forward(value)));
return *this;
}
};
class HashmapIterator {
std::vector][> stack_;
Ref cur_;
const bool down_{false};
bool unwind(Ref root);
public:
HashmapIterator() = default;
HashmapIterator(Ref root, bool down = false) : down_(down) {
unwind(std::move(root));
}
const Hashmap& operator*() const {
return *cur_;
}
const Hashmap* operator->() const {
return cur_.get();
}
bool eof() {
return cur_.is_null();
}
bool next();
bool operator<(const HashmapIterator& other) const {
if (other.cur_.is_null()) {
return cur_.not_null();
} else if (cur_.is_null()) {
return false;
} else {
return cur_->key().cmp(other.cur_->key()) * (down_ ? -1 : 1) < 0;
}
}
bool operator==(const HashmapIterator& other) const {
return other.cur_.is_null() ? cur_.is_null() : (cur_.not_null() && cur_->key() == other.cur_->key());
}
bool operator!=(const HashmapIterator& other) const {
return other.cur_.is_null() ? cur_.not_null() : (cur_.is_null() || cur_->key() != other.cur_->key());
}
HashmapIterator& operator++() {
next();
return *this;
}
};
struct HashmapKeeper {
Ref root;
HashmapKeeper() = default;
HashmapKeeper(Ref _root) : root(std::move(_root)) {
}
Ref extract() {
return std::move(root);
}
operator Ref() const& {
return root;
}
operator Ref() && {
return std::move(root);
}
template
HashmapIdx operator[](Args&&... args) {
return HashmapIdx{root, DictKey{std::forward(args)...}};
}
template
vm::StackEntry operator[](Args&&... args) const {
return Hashmap::get(root, DictKey{std::forward(args)...});
}
vm::StackEntry get_key(const DictKey& key) const {
return Hashmap::get(root, key);
}
template
vm::StackEntry get(Args&&... args) const {
return Hashmap::get(root, DictKey{std::forward(args)...});
}
vm::StackEntry get_remove_key(const DictKey& key) {
auto res = Hashmap::get_remove_key(root, key);
root = std::move(res.first);
return std::move(res.second);
}
template
vm::StackEntry get_remove(Args&&... args) {
return get_remove_key(DictKey{std::forward(args)...});
}
bool remove_key(const DictKey& key) {
auto res = Hashmap::get_remove(root, key);
root = std::move(res.first);
return !res.second.is_null();
}
template
bool remove(Args&&... args) {
return remove_key(DictKey{std::forward(args)...});
}
template
void set(T key, vm::StackEntry value) {
root = Hashmap::set(root, DictKey(key), std::move(value));
}
template
bool replace(T key, vm::StackEntry value) {
return Hashmap::replace(root, DictKey(key), std::move(value));
}
HashmapIterator begin(bool reverse = false) const {
return HashmapIterator{root, reverse};
}
HashmapIterator end() const {
return HashmapIterator{};
}
HashmapIterator rbegin() const {
return HashmapIterator{root, true};
}
HashmapIterator rend() const {
return HashmapIterator{};
}
};
} // namespace fift
]