2012-07-18 21:59:03 +03:00
|
|
|
#pragma once
|
2004-02-06 16:49:41 +02:00
|
|
|
|
2014-10-03 22:29:20 +03:00
|
|
|
#include <memory>
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "types.hh"
|
2004-02-06 16:49:41 +02:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
namespace nix {
|
2004-02-06 16:49:41 +02:00
|
|
|
|
2020-09-21 19:22:45 +03:00
|
|
|
struct Regex;
|
|
|
|
|
2004-02-06 16:49:41 +02:00
|
|
|
struct DrvName
|
|
|
|
{
|
|
|
|
string fullName;
|
|
|
|
string name;
|
|
|
|
string version;
|
|
|
|
unsigned int hits;
|
|
|
|
|
2004-02-09 13:59:39 +02:00
|
|
|
DrvName();
|
2019-12-05 20:11:09 +02:00
|
|
|
DrvName(std::string_view s);
|
2020-09-21 19:22:45 +03:00
|
|
|
~DrvName();
|
|
|
|
|
2004-02-06 16:49:41 +02:00
|
|
|
bool matches(DrvName & n);
|
2014-10-03 22:29:20 +03:00
|
|
|
|
|
|
|
private:
|
2020-09-21 19:22:45 +03:00
|
|
|
std::unique_ptr<Regex> regex;
|
2004-02-06 16:49:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef list<DrvName> DrvNames;
|
|
|
|
|
2018-02-14 01:28:27 +02:00
|
|
|
string nextComponent(string::const_iterator & p,
|
|
|
|
const string::const_iterator end);
|
2004-02-06 16:49:41 +02:00
|
|
|
int compareVersions(const string & v1, const string & v2);
|
|
|
|
DrvNames drvNamesFromArgs(const Strings & opArgs);
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|