aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/fetchers/tree-info.hh
blob: 02e92759b25310e51f0cce2a6465651aed14581f (plain)
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
#pragma once

#include "path.hh"

namespace nix { class Store; }

namespace nix::fetchers {

struct TreeInfo
{
    Hash narHash;
    std::optional<uint64_t> revCount;
    std::optional<time_t> lastModified;

    bool operator ==(const TreeInfo & other) const
    {
        return
            narHash == other.narHash
            && revCount == other.revCount
            && lastModified == other.lastModified;
    }

    StorePath computeStorePath(Store & store) const;
};

}