2012-07-18 18:59:03 +00:00
|
|
|
#pragma once
|
2004-02-06 14:49:41 +00:00
|
|
|
|
2014-10-03 19:29:20 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
#include "types.hh"
|
2014-10-03 19:29:20 +00:00
|
|
|
#include "regex.hh"
|
2004-02-06 14:49:41 +00:00
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
namespace nix {
|
2004-02-06 14:49:41 +00:00
|
|
|
|
|
|
|
struct DrvName
|
|
|
|
{
|
|
|
|
string fullName;
|
|
|
|
string name;
|
|
|
|
string version;
|
|
|
|
unsigned int hits;
|
|
|
|
|
2004-02-09 11:59:39 +00:00
|
|
|
DrvName();
|
2004-02-06 14:49:41 +00:00
|
|
|
DrvName(const string & s);
|
|
|
|
bool matches(DrvName & n);
|
2014-10-03 19:29:20 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::shared_ptr<Regex> regex;
|
2004-02-06 14:49:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef list<DrvName> DrvNames;
|
|
|
|
|
|
|
|
int compareVersions(const string & v1, const string & v2);
|
|
|
|
DrvNames drvNamesFromArgs(const Strings & opArgs);
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
}
|