f4ab297b31
`///@file` makes them show up in the internal API dos. A tiny few were missing `#pragma once`.
37 lines
644 B
C++
37 lines
644 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include <memory>
|
|
|
|
#include "types.hh"
|
|
|
|
namespace nix {
|
|
|
|
struct Regex;
|
|
|
|
struct DrvName
|
|
{
|
|
std::string fullName;
|
|
std::string name;
|
|
std::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);
|
|
|
|
}
|