aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/flake/lockfile.hh
blob: 7077db3cddb8ab49e970ac959daa802ac00f6c94 (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
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
#pragma once

#include "flakeref.hh"

#include <nlohmann/json.hpp>

namespace nix {
class Store;
}

namespace nix::flake {

/* Common lock file information about a flake input, namely the
   immutable ref and the NAR hash. */
struct AbstractInput
{
    FlakeRef ref;
    Hash narHash;

    AbstractInput(const FlakeRef & flakeRef, const Hash & narHash)
        : ref(flakeRef), narHash(narHash)
    {
        assert(ref.isImmutable());
    };

    AbstractInput(const nlohmann::json & json);

    nlohmann::json toJson() const;

    Path computeStorePath(Store & store) const;
};

/* Lock file information about a non-flake input. */
struct NonFlakeInput : AbstractInput
{
    using AbstractInput::AbstractInput;

    bool operator ==(const NonFlakeInput & other) const
    {
        return ref == other.ref && narHash == other.narHash;
    }
};

struct FlakeInput;

/* Lock file information about the dependencies of a flake. */
struct FlakeInputs
{
    std::map<FlakeRef, FlakeInput> flakeInputs;
    std::map<FlakeAlias, NonFlakeInput> nonFlakeInputs;

    FlakeInputs() {};
    FlakeInputs(const nlohmann::json & json);

    nlohmann::json toJson() const;

    /* A lock file is dirty if it contains a dirty flakeref
       (i.e. reference to a dirty working tree). */
    bool isDirty() const;
};

/* Lock file information about a flake input. */
struct FlakeInput : FlakeInputs, AbstractInput
{
    FlakeId id;

    FlakeInput(const FlakeId & id, const FlakeRef & flakeRef, const Hash & narHash)
        : AbstractInput(flakeRef, narHash), id(id) {};

    FlakeInput(const nlohmann::json & json);

    bool operator ==(const FlakeInput & other) const
    {
        return
            id == other.id
            && ref == other.ref
            && narHash == other.narHash
            && flakeInputs == other.flakeInputs
            && nonFlakeInputs == other.nonFlakeInputs;
    }

    nlohmann::json toJson() const;
};

/* An entire lock file. Note that this cannot be a FlakeInput for the
   top-level flake, because then the lock file would need to contain
   the hash of the top-level flake, but committing the lock file
   would invalidate that hash. */
struct LockFile : FlakeInputs
{
    bool operator ==(const LockFile & other) const
    {
        return
            flakeInputs == other.flakeInputs
            && nonFlakeInputs == other.nonFlakeInputs;
    }

    LockFile() {}
    LockFile(const nlohmann::json & json) : FlakeInputs(json) {}
    LockFile(FlakeInput && dep)
    {
        flakeInputs = std::move(dep.flakeInputs);
        nonFlakeInputs = std::move(dep.nonFlakeInputs);
    }

    nlohmann::json toJson() const;

    static LockFile read(const Path & path);

    void write(const Path & path) const;
};

std::ostream & operator <<(std::ostream & stream, const LockFile & lockFile);

}