aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/names.hh
blob: ecbad10b3df565e25292c8039c290aead253741c (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
#pragma once

#include <memory>

#include "types.hh"

namespace nix {

struct Regex;

struct DrvName
{
    string fullName;
    string name;
    string version;
    unsigned int hits;

    DrvName();
    DrvName(std::string_view s);
    ~DrvName();

    bool matches(const DrvName & n);

private:
    std::unique_ptr<Regex> regex;
};

typedef std::list<DrvName> DrvNames;

std::string_view nextComponent(std::string_view::const_iterator & p,
    const std::string_view::const_iterator end);
int compareVersions(const std::string_view v1, const std::string_view v2);
DrvNames drvNamesFromArgs(const Strings & opArgs);

}