30 {
31 static struct D
32 {
33 boost::mutex mutex;
34 std::vector<std::uint64_t> cached_distribution;
35 std::uint64_t cached_from, cached_to, cached_start_height, cached_base;
38 bool cached;
39 D(): cached_from(0), cached_to(0), cached_start_height(0), cached_base(0), cached_m10_hash(crypto::null_hash), cached_top_hash(crypto::null_hash), cached(
false) {}
40 } d;
41 const boost::unique_lock<boost::mutex> lock(d.mutex);
42
44 if (d.cached_to < blockchain_height)
45 top_hash = get_hash(d.cached_to);
46 if (d.cached && amount == 0 && d.cached_from == from_height && d.cached_to == to_height && d.cached_top_hash == top_hash)
47 return process_distribution(cumulative, d.cached_start_height, d.cached_distribution, d.cached_base);
48
49 std::vector<std::uint64_t> distribution;
50 std::uint64_t start_height, base;
51
52
53 bool can_extend = d.cached && amount == 0 && d.cached_from == from_height && to_height > d.cached_to && top_hash == d.cached_top_hash;
54 if (!can_extend)
55 {
56
57
58 if (d.cached && amount == 0 && d.cached_from == from_height && d.cached_to - d.cached_from >= 10 && to_height > d.cached_to - 10)
59 {
61 if (hash10 == d.cached_m10_hash)
62 {
63 d.cached_to -= 10;
64 d.cached_top_hash = hash10;
65 d.cached_m10_hash = crypto::null_hash;
66 d.cached_distribution.resize(d.cached_distribution.size() - 10);
67 can_extend = true;
68 }
69 }
70 }
71 if (can_extend)
72 {
73 std::vector<std::uint64_t> new_distribution;
74 if (!f(amount, d.cached_to + 1, to_height, start_height, new_distribution, base))
75 return boost::none;
76 distribution = d.cached_distribution;
77 distribution.reserve(distribution.size() + new_distribution.size());
78 for (const auto &e: new_distribution)
79 distribution.push_back(e);
80 start_height = d.cached_start_height;
81 base = d.cached_base;
82 }
83 else
84 {
85 if (!f(amount, from_height, to_height, start_height, distribution, base))
86 return boost::none;
87 }
88
89 if (to_height > 0 && to_height >= from_height)
90 {
91 const std::uint64_t offset = std::max(from_height, start_height);
92 if (offset <= to_height && to_height - offset + 1 < distribution.size())
93 distribution.resize(to_height - offset + 1);
94 }
95
96 if (amount == 0)
97 {
98 d.cached_from = from_height;
99 d.cached_to = to_height;
100 d.cached_top_hash = get_hash(d.cached_to);
101 d.cached_m10_hash = d.cached_to >= 10 ? get_hash(d.cached_to - 10) : crypto::null_hash;
102 d.cached_distribution = distribution;
103 d.cached_start_height = start_height;
104 d.cached_base = base;
105 d.cached = true;
106 }
107
108 return process_distribution(cumulative, start_height, std::move(distribution), base);
109 }