2003-11-16 18:46:31 +01:00
|
|
|
#ifndef __ATERM_H
|
|
|
|
#define __ATERM_H
|
|
|
|
|
|
|
|
#include <aterm2.h>
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
#include "types.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
2003-11-16 18:46:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Print an ATerm. */
|
|
|
|
string atPrint(ATerm t);
|
|
|
|
|
2003-11-16 19:31:29 +01:00
|
|
|
class ATermIterator
|
|
|
|
{
|
|
|
|
ATermList t;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ATermIterator(ATermList _t) : t(_t) { }
|
|
|
|
ATermIterator & operator ++ ()
|
|
|
|
{
|
|
|
|
t = ATgetNext(t);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
ATerm operator * ()
|
|
|
|
{
|
|
|
|
return ATgetFirst(t);
|
|
|
|
}
|
|
|
|
operator bool ()
|
|
|
|
{
|
|
|
|
return t != ATempty;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-11-18 12:22:29 +01:00
|
|
|
/* Throw an exception with an error message containing the given
|
|
|
|
aterm. */
|
|
|
|
Error badTerm(const format & f, ATerm t);
|
|
|
|
|
|
|
|
|
2004-11-03 19:12:03 +01:00
|
|
|
/* Convert strings to ATerms. */
|
|
|
|
ATerm toATerm(const char * s);
|
|
|
|
ATerm toATerm(const string & s);
|
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
ATermList toATermList(const StringSet & ss);
|
2006-09-04 23:06:23 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Write an ATerm to an output stream. */
|
|
|
|
std::ostream & operator << (std::ostream & stream, ATerm e);
|
|
|
|
|
2004-11-03 19:12:03 +01:00
|
|
|
|
2003-11-16 18:46:31 +01:00
|
|
|
#endif /* !__ATERM_H */
|