2012-07-18 21:59:03 +03:00
|
|
|
#pragma once
|
2010-04-13 15:25:42 +03:00
|
|
|
|
2010-10-04 19:16:19 +03:00
|
|
|
#include "config.h"
|
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
#include <map>
|
2010-10-04 19:16:19 +03:00
|
|
|
|
|
|
|
#if HAVE_TR1_UNORDERED_SET
|
2010-04-13 17:34:11 +03:00
|
|
|
#include <tr1/unordered_set>
|
2010-10-04 19:16:19 +03:00
|
|
|
#endif
|
2010-04-13 15:25:42 +03:00
|
|
|
|
|
|
|
#include "types.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
/* Symbol table used by the parser and evaluator to represent and look
|
2013-10-24 17:41:04 +03:00
|
|
|
up identifiers and attributes efficiently. SymbolTable::create()
|
|
|
|
converts a string into a symbol. Symbols have the property that
|
|
|
|
they can be compared efficiently (using a pointer equality test),
|
|
|
|
because the symbol table stores only one copy of each string. */
|
2010-04-13 15:25:42 +03:00
|
|
|
|
|
|
|
class Symbol
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
const string * s; // pointer into SymbolTable
|
|
|
|
Symbol(const string * s) : s(s) { };
|
|
|
|
friend class SymbolTable;
|
|
|
|
|
|
|
|
public:
|
2010-10-24 03:41:29 +03:00
|
|
|
Symbol() : s(0) { };
|
2013-05-16 20:08:02 +03:00
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
bool operator == (const Symbol & s2) const
|
|
|
|
{
|
|
|
|
return s == s2.s;
|
|
|
|
}
|
2013-05-16 20:08:02 +03:00
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
bool operator != (const Symbol & s2) const
|
|
|
|
{
|
|
|
|
return s != s2.s;
|
|
|
|
}
|
2013-05-16 20:08:02 +03:00
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
bool operator < (const Symbol & s2) const
|
|
|
|
{
|
|
|
|
return s < s2.s;
|
|
|
|
}
|
|
|
|
|
|
|
|
operator const string & () const
|
|
|
|
{
|
|
|
|
return *s;
|
|
|
|
}
|
|
|
|
|
2013-05-16 20:08:02 +03:00
|
|
|
bool set() const
|
|
|
|
{
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2010-04-13 15:25:42 +03:00
|
|
|
bool empty() const
|
|
|
|
{
|
|
|
|
return s->empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
friend std::ostream & operator << (std::ostream & str, const Symbol & sym);
|
|
|
|
};
|
|
|
|
|
|
|
|
inline std::ostream & operator << (std::ostream & str, const Symbol & sym)
|
|
|
|
{
|
|
|
|
str << *sym.s;
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
class SymbolTable
|
|
|
|
{
|
|
|
|
private:
|
2013-05-16 20:08:02 +03:00
|
|
|
#if HAVE_TR1_UNORDERED_SET
|
2010-04-13 17:34:11 +03:00
|
|
|
typedef std::tr1::unordered_set<string> Symbols;
|
2010-10-04 19:16:19 +03:00
|
|
|
#else
|
|
|
|
typedef std::set<string> Symbols;
|
|
|
|
#endif
|
2010-04-13 15:25:42 +03:00
|
|
|
Symbols symbols;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Symbol create(const string & s)
|
|
|
|
{
|
|
|
|
std::pair<Symbols::iterator, bool> res = symbols.insert(s);
|
|
|
|
return Symbol(&*res.first);
|
|
|
|
}
|
2010-04-13 17:34:11 +03:00
|
|
|
|
|
|
|
unsigned int size() const
|
|
|
|
{
|
|
|
|
return symbols.size();
|
|
|
|
}
|
2013-10-08 16:34:57 +03:00
|
|
|
|
|
|
|
size_t totalSize() const;
|
2010-04-13 15:25:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|