chia-pos2 0.4.1

A library for creating plots, validating proofs of space, farming partial proofs and solving proofs. Using Chia proof of space v2
Documentation
#pragma once

#include <cstdint>
#include <cstring>
#include <fstream>
#include <optional>
#include <span>
#include <stdexcept>
#include <string>
#include <type_traits>
#include <utility>
#include <vector>

#include "ChunkCompressor.hpp"
#include "PlotData.hpp"
#include "PlotIO.hpp"
#include "pos/ProofParams.hpp"

class PlotFile {
public:
    static constexpr int CHUNK_SPAN_RANGE_BITS = 16; // 65k entries per chunk
    static constexpr int MINUS_STUB_BITS
        = 2; // proof fragments get k stub bits minus this many extra bits

    // Current on-disk format version, update this when the format changes.
    static constexpr uint8_t FORMAT_VERSION = 1;

    struct PlotFileContents {
        ChunkedProofFragments data;
        ProofParams params;
    };

    // Construct a PlotFile bound to a specific filename (for reading).
    explicit PlotFile(std::string filename) : filename_(std::move(filename)) {}

    /// Write PlotData to disk, converting to chunked + compressed representation first.
    static size_t writeData(std::string const& filename,
        PlotData const& data,
        ProofParams const& params,
        uint16_t const index,
        uint8_t const meta_group,
        std::span<uint8_t const> const memo)
    {
        uint64_t const range_per_chunk = (1ULL << (params.get_k() + CHUNK_SPAN_RANGE_BITS));
        ChunkedProofFragments chunked_data
            = ChunkedProofFragments::convertToChunkedProofFragments(data, range_per_chunk);
        return writeData(filename, chunked_data, params, index, meta_group, memo);
    }

    // returns bytes written
    static size_t writeData(std::string const& filename,
        ChunkedProofFragments const& data,
        ProofParams const& params,
        uint16_t const index,
        uint8_t const meta_group,
        std::span<uint8_t const> const memo)
    {
        size_t bytes_written = 0;

        std::ofstream out(filename, std::ios::binary);
        if (!out)
            throw std::runtime_error("Failed to open " + filename);

        out.write("pos2", 4);
        out.write(reinterpret_cast<char const*>(&FORMAT_VERSION), 1);

        // Write plot ID
        out.write(reinterpret_cast<char const*>(params.get_plot_id_bytes()), 32);

        // Write k and strength (match_key_bits)
        uint8_t const k = numeric_cast<uint8_t>(params.get_k());
        uint8_t const match_key_bits = numeric_cast<uint8_t>(params.get_match_key_bits());
        out.write(reinterpret_cast<char const*>(&k), 1);
        out.write(reinterpret_cast<char const*>(&match_key_bits), 1);

        out.write(reinterpret_cast<char const*>(&index), 2);
        out.write(reinterpret_cast<char const*>(&meta_group), 1);

        uint8_t const memo_size = static_cast<uint8_t>(memo.size());
        out.write(reinterpret_cast<char const*>(&memo_size), 1);
        out.write(reinterpret_cast<char const*>(memo.data()), memo.size());

        // Write chunk index + chunk bodies:
        //  uint64_t num_chunks
        //  num_chunks * uint64_t offsets (placeholders, overwritten later)
        //  chunk_0 data...
        //  chunk_1 data...
        {
            uint64_t const num_chunks = static_cast<uint64_t>(data.proof_fragments_chunks.size());

            // Write num_chunks
            out.write(reinterpret_cast<char const*>(&num_chunks), sizeof(num_chunks));
            if (!out)
                throw std::runtime_error("Failed to write chunk count to " + filename);

            // Remember where offsets will be written
            std::streampos offsets_start_pos = out.tellp();

            // Write placeholder zero offsets
            uint64_t zero = 0;
            for (uint64_t i = 0; i < num_chunks; ++i) {
                out.write(reinterpret_cast<char const*>(&zero), sizeof(zero));
            }
            if (!out)
                throw std::runtime_error(
                    "Failed to write chunk offset placeholders to " + filename);

            // Collect real offsets as we write chunks
            std::vector<uint64_t> offsets(num_chunks);

            int const stub_bits = params.get_k() - MINUS_STUB_BITS;
            uint64_t const range_per_chunk = (1ULL << (params.get_k() + CHUNK_SPAN_RANGE_BITS));

            for (uint64_t i = 0; i < num_chunks; ++i) {
                // record offset for this chunk (absolute offset from file start)
                std::streampos pos = out.tellp();
                offsets[i] = static_cast<uint64_t>(pos);

                uint64_t start_proof_fragment_range = i * range_per_chunk;
                std::vector<uint8_t> compressed_chunk = ChunkCompressor::compressProofFragments(
                    data.proof_fragments_chunks[i], start_proof_fragment_range, stub_bits);

                writeVector(out, compressed_chunk);
                if (!out) {
                    throw std::runtime_error(
                        "Failed to write chunk " + std::to_string(i) + " to " + filename);
                }
            }

            bytes_written = static_cast<size_t>(out.tellp());

            // Seek back and overwrite placeholders with actual offsets
            out.seekp(offsets_start_pos);
            if (!out)
                throw std::runtime_error("Failed to seek to chunk offsets in " + filename);

            for (uint64_t i = 0; i < num_chunks; ++i) {
                out.write(reinterpret_cast<char const*>(&offsets[i]), sizeof(offsets[i]));
            }
            if (!out)
                throw std::runtime_error("Failed to write chunk offsets to " + filename);

            // Seek back to end so file finalization is consistent
            out.seekp(0, std::ios::end);
        }

        if (!out)
            throw std::runtime_error("Failed to write " + filename);

        return bytes_written;
    }

    // -------- Instance reading API --------

    // Read header + xs (if present) + chunk index (num_chunks + offsets) and cache locally.
    // Safe to call multiple times; only does work once.
    void readHeadersAndIndexes()
    {
        if (plot_file_header_) {
            return; // already loaded
        }

        std::ifstream in(filename_, std::ios::binary);
        if (!in) {
            throw std::runtime_error("Failed to open " + filename_);
        }

        char magic[4] = {};
        in.read(magic, sizeof(magic));
        if (std::memcmp(magic, "pos2", 4) != 0) {
            throw std::runtime_error("Plot file invalid magic bytes, not a plot file");
        }

        uint8_t version;
        in.read(reinterpret_cast<char*>(&version), sizeof(version));
        if (version != FORMAT_VERSION) {
            throw std::runtime_error(
                "Plot file format version " + std::to_string(version) + " is not supported.");
        }

        uint8_t plot_id_bytes[32];
        in.read(reinterpret_cast<char*>(plot_id_bytes), 32);

        uint8_t k;
        in.read(reinterpret_cast<char*>(&k), sizeof(k));

        uint8_t strength;
        in.read(reinterpret_cast<char*>(&strength), sizeof(strength));

        uint16_t index;
        in.read(reinterpret_cast<char*>(&index), sizeof(index));

        uint8_t meta_group;
        in.read(reinterpret_cast<char*>(&meta_group), sizeof(meta_group));

        ProofParams params(plot_id_bytes, k, strength);

        uint8_t memo_length = 0;
        in.read(reinterpret_cast<char*>(&memo_length), sizeof(memo_length));
        // skip memo
        in.seekg(memo_length, std::ifstream::cur);

        PlotFileHeader header(params);
        header.index = index;
        header.meta_group = meta_group;

        // Read number of chunks
        uint64_t num_chunks = 0;
        in.read(reinterpret_cast<char*>(&num_chunks), sizeof(num_chunks));
        if (!in) {
            throw std::runtime_error("Failed to read number of chunks in " + filename_);
        }

        header.num_chunks = num_chunks;

        // Read offsets
        header.offsets.resize(num_chunks);
        for (uint64_t i = 0; i < num_chunks; ++i) {
            in.read(reinterpret_cast<char*>(&header.offsets[i]), sizeof(header.offsets[i]));
        }
        if (!in) {
            throw std::runtime_error("Failed to read chunk offsets in " + filename_);
        }

        plot_file_header_ = std::move(header);
    }

    // Reads all chunked data + params.
    PlotFileContents readAllChunkedData()
    {
        readHeadersAndIndexes();
        if (!plot_file_header_) {
            throw std::runtime_error("PlotFileHeader not loaded");
        }

        auto const& header = *plot_file_header_;

        ChunkedProofFragments chunked;

        uint64_t const num_chunks = header.num_chunks;
        chunked.proof_fragments_chunks.clear();
        chunked.proof_fragments_chunks.resize(num_chunks);

        std::ifstream in(filename_, std::ios::binary);
        if (!in) {
            throw std::runtime_error("Failed to open " + filename_);
        }

        int const stub_bits = header.params.get_k() - MINUS_STUB_BITS;
        uint64_t const range_per_chunk = (1ULL << (header.params.get_k() + CHUNK_SPAN_RANGE_BITS));

        for (uint64_t i = 0; i < num_chunks; ++i) {
            in.seekg(static_cast<std::streamoff>(header.offsets[i]), std::ios::beg);
            if (!in) {
                throw std::runtime_error(
                    "Failed to seek to chunk " + std::to_string(i) + " in " + filename_);
            }

            uint64_t start_proof_fragment_range = i * range_per_chunk;
            std::vector<uint8_t> compressed_chunk = readVector<uint8_t>(in);
            if (!in) {
                throw std::runtime_error(
                    "Failed to read compressed chunk " + std::to_string(i) + " from " + filename_);
            }

            chunked.proof_fragments_chunks[i] = ChunkCompressor::decompressProofFragments(
                compressed_chunk, start_proof_fragment_range, stub_bits);
        }

        return { .data = std::move(chunked), .params = header.params };
    }

    // Read a single chunk's decompressed proof fragments by index.
    std::vector<uint64_t> readChunk(uint64_t chunk_index)
    {
        readHeadersAndIndexes();
        if (!plot_file_header_) {
            throw std::runtime_error("PlotFileHeader not loaded");
        }

        auto const& header = *plot_file_header_;

        if (chunk_index >= header.num_chunks) {
            throw std::out_of_range("chunk_index out of range");
        }

        std::ifstream in(filename_, std::ios::binary);
        if (!in) {
            throw std::runtime_error("Failed to open " + filename_);
        }

        in.seekg(static_cast<std::streamoff>(header.offsets[chunk_index]), std::ios::beg);
        if (!in) {
            throw std::runtime_error(
                "Failed to seek to chunk " + std::to_string(chunk_index) + " in " + filename_);
        }

        int const stub_bits = header.params.get_k() - MINUS_STUB_BITS;
        uint64_t const range_per_chunk = (1ULL << (header.params.get_k() + CHUNK_SPAN_RANGE_BITS));
        uint64_t const start_proof_fragment_range = chunk_index * range_per_chunk;

        std::vector<uint8_t> compressed_chunk = readVector<uint8_t>(in);
        if (!in) {
            throw std::runtime_error(
                "Failed to read chunk " + std::to_string(chunk_index) + " from " + filename_);
        }

        return ChunkCompressor::decompressProofFragments(
            compressed_chunk, start_proof_fragment_range, stub_bits);
    }

    // -------- Static convenience wrappers for reading --------

    static PlotFileContents readAllChunkedData(std::string const& filename)
    {
        PlotFile pf(filename);
        return pf.readAllChunkedData();
    }

    static std::vector<uint64_t> readChunk(std::string const& filename, uint64_t chunk_index)
    {
        PlotFile pf(filename);
        return pf.readChunk(chunk_index);
    }

    ProofParams const& getProofParams()
    {
        readHeadersAndIndexes();
        if (!plot_file_header_) {
            throw std::runtime_error("PlotFileHeader not loaded");
        }
        return plot_file_header_->params;
    }

    std::vector<ProofFragment> getProofFragmentsInRange(Range const& range)
    {
        uint64_t const range_per_chunk = getRangePerChunk();
        uint64_t const chunk_index = range.start / range_per_chunk;
        uint64_t const end_chunk = (range.end - 1) / range_per_chunk;
        if (chunk_index != end_chunk) {
            throw std::invalid_argument("getProofFragmentsInRange: range spans multiple chunks");
        }

        std::vector<ProofFragment> result;

        std::vector<uint64_t> chunk_fragments = readChunk(chunk_index);
        for (auto const& fragment: chunk_fragments) {
            if (fragment >= range.start && fragment < range.end) {
                result.push_back(fragment);
            }
        }

        return result;
    }

private:
    struct PlotFileHeader {
        ProofParams params;
        uint16_t index;
        uint8_t meta_group;
#ifdef RETAIN_X_VALUES_TO_T3
        std::vector<std::array<uint32_t, 8>> xs_correlating_to_proof_fragments;
#endif
        uint64_t num_chunks = 0;
        std::vector<uint64_t> offsets;

        // Explicit constructor so this type can be constructed
        explicit PlotFileHeader(ProofParams const& p) : params(p) {}
    };

    uint64_t getRangePerChunk()
    {
        readHeadersAndIndexes();
        if (!plot_file_header_) {
            throw std::runtime_error("PlotFileHeader not loaded");
        }
        // TODO: this will be written with plot eventually, tunable by groupings and disk seq. read
        // speed.
        return (1ULL << (plot_file_header_->params.get_k() + CHUNK_SPAN_RANGE_BITS));
    }

    std::string filename_;
    std::optional<PlotFileHeader> plot_file_header_;
};