-
Notifications
You must be signed in to change notification settings - Fork 464
/
Copy pathnode.cpp
251 lines (170 loc) · 7.57 KB
/
node.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#include "node.hpp"
#include "to_string.hpp"
#include "context.hpp"
#include "parser.hpp"
namespace Sass {
Node Node::createCombinator(const Complex_Selector::Combinator& combinator) {
NodeDequePtr null;
return Node(COMBINATOR, combinator, NULL /*pSelector*/, null /*pCollection*/);
}
Node Node::createSelector(Complex_Selector* pSelector, Context& ctx) {
NodeDequePtr null;
Complex_Selector* pStripped = pSelector->clone(ctx);
pStripped->tail(NULL);
pStripped->combinator(Complex_Selector::ANCESTOR_OF);
return Node(SELECTOR, Complex_Selector::ANCESTOR_OF, pStripped, null /*pCollection*/);
}
Node Node::createCollection() {
NodeDequePtr pEmptyCollection = make_shared<NodeDeque>();
return Node(COLLECTION, Complex_Selector::ANCESTOR_OF, NULL /*pSelector*/, pEmptyCollection);
}
Node Node::createCollection(const NodeDeque& values) {
NodeDequePtr pShallowCopiedCollection = make_shared<NodeDeque>(values);
return Node(COLLECTION, Complex_Selector::ANCESTOR_OF, NULL /*pSelector*/, pShallowCopiedCollection);
}
Node Node::createNil() {
NodeDequePtr null;
return Node(NIL, Complex_Selector::ANCESTOR_OF, NULL /*pSelector*/, null /*pCollection*/);
}
Node::Node(const TYPE& type, Complex_Selector::Combinator combinator, Complex_Selector* pSelector, NodeDequePtr& pCollection)
: got_line_feed(false), mType(type), mCombinator(combinator), mpSelector(pSelector), mpCollection(pCollection)
{ /* if (pSelector) got_line_feed = pSelector->has_line_feed(); */ }
Node Node::clone(Context& ctx) const {
NodeDequePtr pNewCollection = make_shared<NodeDeque>();
if (mpCollection) {
for (NodeDeque::iterator iter = mpCollection->begin(), iterEnd = mpCollection->end(); iter != iterEnd; iter++) {
Node& toClone = *iter;
pNewCollection->push_back(toClone.clone(ctx));
}
}
return Node(mType, mCombinator, mpSelector ? mpSelector->clone(ctx) : NULL, pNewCollection);
}
bool Node::contains(const Node& potentialChild, bool simpleSelectorOrderDependent) const {
bool found = false;
for (NodeDeque::iterator iter = mpCollection->begin(), iterEnd = mpCollection->end(); iter != iterEnd; iter++) {
Node& toTest = *iter;
if (nodesEqual(toTest, potentialChild, simpleSelectorOrderDependent)) {
found = true;
break;
}
}
return found;
}
bool Node::operator==(const Node& rhs) const {
return nodesEqual(*this, rhs, true /*simpleSelectorOrderDependent*/);
}
bool nodesEqual(const Node& lhs, const Node& rhs, bool simpleSelectorOrderDependent) {
if (lhs.type() != rhs.type()) {
return false;
}
if (lhs.isCombinator()) {
return lhs.combinator() == rhs.combinator();
} else if (lhs.isNil()) {
return true; // no state to check
} else if (lhs.isSelector()){
return selectors_equal(*lhs.selector(), *rhs.selector(), simpleSelectorOrderDependent);
} else if (lhs.isCollection()) {
if (lhs.collection()->size() != rhs.collection()->size()) {
return false;
}
for (NodeDeque::iterator lhsIter = lhs.collection()->begin(), lhsIterEnd = lhs.collection()->end(),
rhsIter = rhs.collection()->begin(); lhsIter != lhsIterEnd; lhsIter++, rhsIter++) {
if (!nodesEqual(*lhsIter, *rhsIter, simpleSelectorOrderDependent)) {
return false;
}
}
return true;
}
// We shouldn't get here.
throw "Comparing unknown node types. A new type was probably added and this method wasn't implemented for it.";
}
void Node::plus(Node& rhs) {
if (!this->isCollection() || !rhs.isCollection()) {
throw "Both the current node and rhs must be collections.";
}
this->collection()->insert(this->collection()->end(), rhs.collection()->begin(), rhs.collection()->end());
}
#ifdef DEBUG
ostream& operator<<(ostream& os, const Node& node) {
if (node.isCombinator()) {
switch (node.combinator()) {
case Complex_Selector::ANCESTOR_OF: os << "\" \""; break;
case Complex_Selector::PARENT_OF: os << "\">\""; break;
case Complex_Selector::PRECEDES: os << "\"~\""; break;
case Complex_Selector::ADJACENT_TO: os << "\"+\""; break;
}
} else if (node.isNil()) {
os << "nil";
} else if (node.isSelector()){
To_String to_string;
os << node.selector()->head()->perform(&to_string);
} else if (node.isCollection()) {
os << "[";
for (NodeDeque::iterator iter = node.collection()->begin(), iterBegin = node.collection()->begin(), iterEnd = node.collection()->end(); iter != iterEnd; iter++) {
if (iter != iterBegin) {
os << ", ";
}
os << (*iter);
}
os << "]";
}
return os;
}
#endif
Node complexSelectorToNode(Complex_Selector* pToConvert, Context& ctx) {
if (pToConvert == NULL) {
return Node::createNil();
}
Node node = Node::createCollection();
while (pToConvert) {
// the first Complex_Selector may contain a dummy head pointer, skip it.
if (pToConvert->head() != NULL && !pToConvert->head()->is_empty_reference()) {
node.collection()->push_back(Node::createSelector(pToConvert, ctx));
}
if (pToConvert->combinator() != Complex_Selector::ANCESTOR_OF) {
node.collection()->push_back(Node::createCombinator(pToConvert->combinator()));
}
pToConvert = pToConvert->tail();
}
return node;
}
Complex_Selector* nodeToComplexSelector(const Node& toConvert, Context& ctx) {
if (toConvert.isNil()) {
return NULL;
}
if (!toConvert.isCollection()) {
throw "The node to convert to a Complex_Selector* must be a collection type or nil.";
}
NodeDeque& childNodes = *toConvert.collection();
string noPath("");
Position noPosition(-1, -1, -1);
Complex_Selector* pFirst = new (ctx.mem) Complex_Selector(ParserState("[NODE]"), Complex_Selector::ANCESTOR_OF, NULL, NULL);
Complex_Selector* pCurrent = pFirst;
for (NodeDeque::iterator childIter = childNodes.begin(), childIterEnd = childNodes.end(); childIter != childIterEnd; childIter++) {
Node& child = *childIter;
if (child.isSelector()) {
pCurrent->tail(child.selector()->clone(ctx)); // JMA - need to clone the selector, because they can end up getting shared across Node collections, and can result in an infinite loop during the call to parentSuperselector()
pCurrent = pCurrent->tail();
} else if (child.isCombinator()) {
pCurrent->combinator(child.combinator());
// if the next node is also a combinator, create another Complex_Selector to hold it so it doesn't replace the current combinator
if (childIter+1 != childIterEnd) {
Node& nextNode = *(childIter+1);
if (nextNode.isCombinator()) {
pCurrent->tail(new (ctx.mem) Complex_Selector(ParserState("[NODE]"), Complex_Selector::ANCESTOR_OF, NULL, NULL));
pCurrent = pCurrent->tail();
}
}
} else {
throw "The node to convert's children must be only combinators or selectors.";
}
}
// Put the dummy Compound_Selector in the first position, for consistency with the rest of libsass
Compound_Selector* fakeHead = new (ctx.mem) Compound_Selector(ParserState("[NODE]"), 1);
Selector_Reference* selectorRef = new (ctx.mem) Selector_Reference(ParserState("[NODE]"), NULL);
fakeHead->elements().push_back(selectorRef);
pFirst->head(fakeHead);
pFirst->has_line_feed(pFirst->has_line_feed() || pFirst->tail()->has_line_feed() || toConvert.got_line_feed);
return pFirst;
}
}