2012-07-18 21:59:03 +03:00
|
|
|
#pragma once
|
2006-09-05 00:06:23 +03:00
|
|
|
|
2016-02-23 14:53:31 +02:00
|
|
|
#include "ref.hh"
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
#include <list>
|
|
|
|
#include <set>
|
2020-06-30 00:21:27 +03:00
|
|
|
#include <string>
|
2017-04-13 16:55:38 +03:00
|
|
|
#include <map>
|
2020-05-14 21:28:18 +03:00
|
|
|
#include <vector>
|
2014-10-20 19:15:50 +03:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
using std::list;
|
|
|
|
using std::set;
|
|
|
|
using std::vector;
|
2020-05-12 00:52:15 +03:00
|
|
|
using std::string;
|
2017-05-11 18:06:07 +03:00
|
|
|
|
2020-05-14 00:56:39 +03:00
|
|
|
typedef list<string> Strings;
|
|
|
|
typedef set<string> StringSet;
|
|
|
|
typedef std::map<string, string> StringMap;
|
2006-09-05 00:06:23 +03:00
|
|
|
|
|
|
|
/* Paths are just strings. */
|
2020-04-24 23:57:51 +03:00
|
|
|
|
2020-05-14 00:56:39 +03:00
|
|
|
typedef string Path;
|
2022-01-12 17:02:29 +02:00
|
|
|
typedef std::string_view PathView;
|
2006-09-05 00:06:23 +03:00
|
|
|
typedef list<Path> Paths;
|
|
|
|
typedef set<Path> PathSet;
|
|
|
|
|
2020-06-17 22:08:59 +03:00
|
|
|
typedef vector<std::pair<string, string>> Headers;
|
|
|
|
|
2020-03-30 17:04:18 +03:00
|
|
|
/* Helper class to run code at startup. */
|
|
|
|
template<typename T>
|
|
|
|
struct OnStartup
|
|
|
|
{
|
|
|
|
OnStartup(T && t) { t(); }
|
|
|
|
};
|
|
|
|
|
2020-10-26 17:58:58 +02:00
|
|
|
/* Wrap bools to prevent string literals (i.e. 'char *') from being
|
|
|
|
cast to a bool in Attr. */
|
|
|
|
template<typename T>
|
|
|
|
struct Explicit {
|
|
|
|
T t;
|
|
|
|
|
|
|
|
bool operator ==(const Explicit<T> & other) const
|
|
|
|
{
|
|
|
|
return t == other.t;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|