about summary refs log tree commit diff
path: root/src/libutil/aterm.hh
blob: b1cbc3b6d8955bf46ce72aba8d6ab418ef6b0219 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef __ATERM_H
#define __ATERM_H

#include <aterm2.h>

#include "types.hh"


namespace nix {


/* Print an ATerm. */
string atPrint(ATerm t);

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;
    }
};


/* Throw an exception with an error message containing the given
   aterm. */
Error badTerm(const format & f, ATerm t);


/* Convert strings to ATerms. */
ATerm toATerm(const char * s);
ATerm toATerm(const string & s);

ATermList toATermList(const StringSet & ss);
 
}


/* Write an ATerm to an output stream. */
std::ostream & operator << (std::ostream & stream, ATerm e);


#endif /* !__ATERM_H */