-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpredicate.cpp
106 lines (86 loc) · 2.03 KB
/
predicate.cpp
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Copyright (c) 2010 Roy Sharon <[email protected]>
// See project repositry at <https://github.com/roysharon/Uniclasser>
// Using this file is subject to the MIT License <http://creativecommons.org/licenses/MIT/>
#include <cassert>
#include "predicate.hpp"
//----- Predicate -------------------------------------------------------------
bool Predicate::push(IPredicate *p)
{
if (predicate == 0) predicate = p;
else return predicate->push(p);
return true;
}
void Predicate::accept(IGenerator &generator)
{
assert(!push(0)); // Cannot generate an incomplete predicate
generator.visit(*predicate);
}
//----- TerminalPredicate -----------------------------------------------------
void TerminalPredicate::accept(IGenerator &generator)
{
generator.visit(*this);
}
//----- AndPredicate ----------------------------------------------------------
bool AndPredicate::push(IPredicate *p)
{
if (complete) return false;
else if (lhs == 0) lhs = p;
else if (!lhs->push(p))
{
if (rhs == 0) rhs = p;
else if (!rhs->push(p))
{
complete = true;
return false;
}
}
return true;
}
void AndPredicate::accept(IGenerator &generator)
{
generator.visit(*this);
}
//----- OrPredicate -----------------------------------------------------------
bool OrPredicate::push(IPredicate *p)
{
if (complete) return false;
else if (lhs == 0) lhs = p;
else if (!lhs->push(p))
{
if (rhs == 0) rhs = p;
else if (!rhs->push(p))
{
complete = true;
return false;
}
}
return true;
}
void OrPredicate::accept(IGenerator &generator)
{
generator.visit(*this);
}
//----- TernaryPredicate ------------------------------------------------------
bool TernaryPredicate::push(IPredicate *p)
{
if (complete) return false;
else if (predicate == 0) predicate = p;
else if (!predicate->push(p))
{
if (off == 0) off = p;
else if (!off->push(p))
{
if (on == 0) on = p;
else if (!on->push(p))
{
complete = true;
return false;
}
}
}
return true;
}
void TernaryPredicate::accept(IGenerator &generator)
{
generator.visit(*this);
}