chia-pos2 0.6.0

A library for creating plots, validating proofs of space, farming partial proofs and solving proofs. Using Chia proof of space v2
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
// progress.hpp
#pragma once
#include <atomic>
#include <chrono>
#include <cstddef> // size_t
#include <cstdint>
#include <iostream> // VerboseConsoleSink uses std::cout/cerr
#include <type_traits>

enum class EventKind : uint8_t {
    PlotBegin,
    PlotEnd,
    AllocationBegin,
    AllocationEnd,
    TableBegin,
    TableEnd,
    SectionBegin,
    SectionEnd,
    MatchKeyBegin,
    MatchKeyEnd,
    PostSortBegin,
    PostSortEnd,
    Note,
    Warning,
    Error,
};

enum class NoteId : uint8_t {
    None = 0,
    LayoutTotalBytesAllocated,
    HasAESHardware,
    TableCapacityUsed
};

struct ProgressEvent {
    EventKind kind;
    NoteId note_id = NoteId::None; // optional, for Note events

    uint8_t table_id = 0;
    uint8_t section_l = 0;
    uint8_t section_r = 0;
    uint32_t match_key = 0;
    uint32_t processed_match_keys = 0;
    uint32_t match_keys_total = 0;

    uint64_t items_l = 0;
    uint64_t items_r = 0;
    uint64_t num_items_in = 0;
    uint64_t produced = 0;

    // generic fields for various uses
    uint64_t u64_0 = 0;
    uint64_t u64_1 = 0;
    double f64_0 = 0.0;

    // C-ABI friendly: elapsed time in nanoseconds (for *End events* usually).
    uint64_t elapsed = 0;

    // C-ABI friendly: optional null-terminated message string (may be nullptr).
    char const* msg = nullptr;
};

// Ensure C/tooling ABI friendliness.
static_assert(std::is_standard_layout_v<ProgressEvent>);
static_assert(std::is_trivially_copyable_v<ProgressEvent>);

// POD function table for tooling / C ABI.
struct ProgressSinkProcs {
    using OnEventProc = int32_t (*)(ProgressEvent const*);
    OnEventProc on_event_proc = nullptr;
};

// For C/tooling ABI, the important properties are standard-layout + trivially-copyable.
static_assert(std::is_standard_layout_v<ProgressSinkProcs>);
static_assert(std::is_trivially_copyable_v<ProgressSinkProcs>);

// C++ sink interface:
// - Still virtual (for C++ side)
// - Optionally forwards to `on_event_proc` if set (for tooling bridges).
// - Tooling-facing POD structs should avoid virtuals and use explicit C function pointers instead.
struct IProgressSink : ProgressSinkProcs {
    virtual ~IProgressSink() = default;

    virtual bool on_event(ProgressEvent const& e) noexcept
    {
        if (on_event_proc != nullptr) {
            return on_event_proc(&e) == 0;
        }
        return true;
    }
};

// default no-op sink
struct NullProgressSink final : IProgressSink {
    bool on_event(ProgressEvent const&) noexcept override { return true; }
};

inline IProgressSink& null_progress_sink()
{
    static NullProgressSink s;
    return s;
}

class ScopedEvent {
public:
    ScopedEvent(IProgressSink& sink, ProgressEvent begin)
        : sink_(sink)
        , ev_(begin)
        , start_(std::chrono::steady_clock::now())
    {
        cancelled_ = !sink_.on_event(ev_);
    }

    ~ScopedEvent()
    {
        if (cancelled_)
            return;

        ev_.elapsed = static_cast<uint64_t>(std::chrono::duration_cast<std::chrono::nanoseconds>(
            std::chrono::steady_clock::now() - start_)
                .count());

        // Convert Begin->End event kind:
        ev_.kind = end_kind(ev_.kind);
        sink_.on_event(ev_);
    }

    bool cancelled() const noexcept { return cancelled_; }

private:
    static EventKind end_kind(EventKind k)
    {
        switch (k) {
        case EventKind::PlotBegin:
            return EventKind::PlotEnd;
        case EventKind::AllocationBegin:
            return EventKind::AllocationEnd;
        case EventKind::TableBegin:
            return EventKind::TableEnd;
        case EventKind::SectionBegin:
            return EventKind::SectionEnd;
        case EventKind::MatchKeyBegin:
            return EventKind::MatchKeyEnd;
        case EventKind::PostSortBegin:
            return EventKind::PostSortEnd;
        default:
            return k;
        }
    }

    IProgressSink& sink_;
    ProgressEvent ev_;
    std::chrono::steady_clock::time_point start_;
    bool cancelled_ = false;
};

// Coarse-grained state for polling UIs (progress bars, etc.)
enum class PlotState : uint8_t {
    Idle = 0,
    Plotting,
    Allocating,
    Matching,
    PostSort,
    Finished,
    Error,
};

// Return a null-terminated string literal so consumers can print it directly without copying
// into a new buffer to add a 0-terminator.
inline char const* plot_state_name(PlotState s) noexcept
{
    switch (s) {
    case PlotState::Idle:
        return "idle";
    case PlotState::Plotting:
        return "plot";
    case PlotState::Allocating:
        return "alloc";
    case PlotState::Matching:
        return "matching";
    case PlotState::PostSort:
        return "postsort";
    case PlotState::Finished:
        return "done";
    case PlotState::Error:
        return "error";
    }
    return "unknown";
}

struct AtomicProgressSnapshot {
    double fraction = 0.0; // 0..1
    PlotState state = PlotState::Idle;
    uint8_t table_id = 0;
};

// Minimal sink: store progress atomically for polling UIs.
class AtomicProgressSink final : public IProgressSink {
public:
    AtomicProgressSink() = default;

    AtomicProgressSnapshot snapshot() const noexcept
    {
        AtomicProgressSnapshot s;
        s.fraction = fraction_.load();
        s.state = static_cast<PlotState>(state_.load());
        s.table_id = table_id_.load();
        return s;
    }

    bool on_event(ProgressEvent const& e) noexcept override
    {
        switch (e.kind) {
        case EventKind::PlotBegin:
            store_state_(PlotState::Plotting);
            store_fraction_(0.0);
            break;

        case EventKind::AllocationBegin:
            store_state_(PlotState::Allocating);
            break;

        case EventKind::TableBegin:
            table_id_.store(e.table_id, std::memory_order_relaxed);
            store_state_(PlotState::Matching);
            store_fraction_(table_base_(e.table_id));
            break;

        case EventKind::MatchKeyEnd:
            if (e.match_keys_total > 0) {
                double p = double(e.processed_match_keys + 1) / double(e.match_keys_total);
                if (p < 0.0)
                    p = 0.0;
                if (p > 1.0)
                    p = 1.0;
                store_fraction_(table_base_(e.table_id) + table_weight_(e.table_id) * p);
            }
            break;

        case EventKind::PostSortBegin:
            store_state_(PlotState::PostSort);
            break;

        case EventKind::PostSortEnd:
            store_state_(PlotState::Plotting);
            store_fraction_(table_base_(e.table_id) + table_weight_(e.table_id));
            break;

        case EventKind::TableEnd:
            table_id_.store(e.table_id, std::memory_order_relaxed);
            store_state_(PlotState::Plotting);
            store_fraction_(table_base_(e.table_id) + table_weight_(e.table_id));
            break;

        case EventKind::Error:
            store_state_(PlotState::Error);
            break;

        case EventKind::PlotEnd:
            store_state_(PlotState::Finished);
            store_fraction_(1.0);
            break;

        default:
            break;
        }
        return true;
    }

private:
    // Simple fixed weights: small allocation phase + 3 tables.
    static constexpr double kAllocWeight = 0.03;
    static constexpr double kTablesWeight = 1.0 - kAllocWeight;
    static constexpr double kPerTable = kTablesWeight / 3.0;

    static double table_base_(uint8_t table_id) noexcept
    {
        // Treat allocation as happening before tables.
        if (table_id <= 1)
            return kAllocWeight + 0.0 * kPerTable;
        if (table_id == 2)
            return kAllocWeight + 1.0 * kPerTable;
        if (table_id == 3)
            return kAllocWeight + 2.0 * kPerTable;
        return 0.0;
    }

    static double table_weight_([[maybe_unused]] uint8_t table_id) noexcept
    {
        (void)table_id;
        return kPerTable;
    }

    void store_state_(PlotState s) noexcept
    {
        state_.store(static_cast<uint8_t>(s), std::memory_order_relaxed);
    }

    void store_fraction_(double f) noexcept
    {
        if (f < 0.0)
            f = 0.0;
        if (f > 1.0)
            f = 1.0;
        fraction_.store(f, std::memory_order_relaxed);
    }

private:
    std::atomic<double> fraction_ { 0.0 };
    std::atomic<uint8_t> state_ { static_cast<uint8_t>(PlotState::Idle) };
    std::atomic<uint8_t> table_id_ { 0 };
};

class VerboseConsoleSink final : public IProgressSink {
public:
    bool on_event(ProgressEvent const& e) noexcept override
    {
        switch (e.kind) {
        case EventKind::PlotBegin:
            std::cout << "Plotting started...\n";
            break;
        case EventKind::PlotEnd:
            std::cout << "Plotting ended. Total time: "
                      << std::chrono::duration<double, std::milli>(
                             std::chrono::nanoseconds(e.elapsed))
                             .count()
                      << " ms\n";
            break;
        case EventKind::AllocationBegin:
            std::cout << "Allocating memory for plotting...\n";
            break;
        case EventKind::AllocationEnd:
            std::cout << "Memory allocation completed. Time: "
                      << std::chrono::duration<double, std::milli>(
                             std::chrono::nanoseconds(e.elapsed))
                             .count()
                      << " ms\n";
            break;
        case EventKind::TableBegin:
            std::cout << "Constructing Table " << int(e.table_id) << " from " << int(e.num_items_in)
                      << " items...\n";
            break;
        case EventKind::TableEnd:
            std::cout << "Table " << int(e.table_id) << " constructed. Time: "
                      << std::chrono::duration<double, std::milli>(
                             std::chrono::nanoseconds(e.elapsed))
                             .count()
                      << " ms\n";
            break;
        case EventKind::SectionBegin:
            std::cout << "  T" << int(e.table_id) << " section " << int(e.section_l) << "-"
                      << int(e.section_r) << " started...\n";
            break;
        case EventKind::SectionEnd:
            std::cout << "  T" << int(e.table_id) << " section " << int(e.section_l) << "-"
                      << int(e.section_r) << " time: "
                      << std::chrono::duration<double, std::milli>(
                             std::chrono::nanoseconds(e.elapsed))
                             .count()
                      << " ms\n";
            break;
        case EventKind::MatchKeyBegin:
            std::cout << "    T" << int(e.table_id) << " matching key " << e.match_key
                      << " (section " << int(e.section_l) << "-" << int(e.section_r) << ")\n";
            break;
        case EventKind::MatchKeyEnd:
            std::cout << "    T" << int(e.table_id) << " matching key " << e.match_key
                      << " completed. Time: "
                      << std::chrono::duration<double, std::milli>(
                             std::chrono::nanoseconds(e.elapsed))
                             .count()
                      << " ms\n";
            break;
        case EventKind::PostSortBegin:
            std::cout << "  T" << int(e.table_id) << " post-sort started...\n";
            break;
        case EventKind::PostSortEnd:
            std::cout << "  T" << int(e.table_id) << " post-sort completed. Time: "
                      << std::chrono::duration<double, std::milli>(
                             std::chrono::nanoseconds(e.elapsed))
                             .count()
                      << " ms\n";
            break;
        case EventKind::Note:
            switch (e.note_id) {
            case NoteId::LayoutTotalBytesAllocated:
                std::cout << "Note: Total bytes allocated for layout: " << e.u64_0 << " bytes\n";
                break;
            case NoteId::TableCapacityUsed:
                std::cout << "Note: Table " << int(e.table_id)
                          << " capacity used: " << e.f64_0 * 100.0 << "%\n";
                break;
            case NoteId::HasAESHardware:
                std::cout << "Note: AES hardware acceleration is "
                          << (e.u64_0 ? "available" : "not available") << "\n";
                break;
            default:
                if (e.msg != nullptr && e.msg[0] != '\0')
                    std::cout << "Note: " << e.msg << "\n";
                break;
            }
            break;

        case EventKind::Warning:
            std::cerr << "Warning: " << (e.msg ? e.msg : "") << "\n";
            break;
        case EventKind::Error:
            std::cerr << "Error: " << (e.msg ? e.msg : "") << "\n";
            break;

        default:
            break;
        }
        return true;
    }
};