ext/libsass/node.hpp in sassc-0.0.9 vs ext/libsass/node.hpp in sassc-0.0.10
- old
+ new
@@ -1,24 +1,22 @@
-#define SASS_NODE
+#ifndef SASS_NODE_H
+#define SASS_NODE_H
-
#include <deque>
#include <iostream>
#include <memory>
-#ifndef SASS_AST
#include "ast.hpp"
-#endif
namespace Sass {
-
+
using namespace std;
- struct Context;
+ class Context;
/*
There are a lot of stumbling blocks when trying to port the ruby extend code to C++. The biggest is the choice of
data type. The ruby code will pretty seamlessly switch types between an Array<SimpleSequence or Op> (libsass'
equivalent is the Complex_Selector) to a Sequence, which contains more metadata about the sequence than just the
@@ -27,15 +25,15 @@
in the arrays, like [1, nil, 3], which has potential semantic differences than an empty array [1, [], 3]. To be
able to represent all of these as unique cases, we need to create a tree of variant objects. The tree nature allows
the inconsistent nesting levels. The variant nature (while making some of the C++ code uglier) allows the code to
more closely match the ruby code, which is a huge benefit when attempting to implement an complex algorithm like
the Extend operator.
-
+
Note that the current libsass data model also pairs the combinator with the Complex_Selector that follows it, but
ruby sass has no such restriction, so we attempt to create a data structure that can handle them split apart.
*/
-
+
class Node;
typedef deque<Node> NodeDeque;
typedef shared_ptr<NodeDeque> NodeDequePtr;
class Node {
@@ -50,73 +48,74 @@
TYPE type() const { return mType; }
bool isCombinator() const { return mType == COMBINATOR; }
bool isSelector() const { return mType == SELECTOR; }
bool isCollection() const { return mType == COLLECTION; }
bool isNil() const { return mType == NIL; }
-
+ bool got_line_feed;
+
Complex_Selector::Combinator combinator() const { return mCombinator; }
-
+
Complex_Selector* selector() { return mpSelector; }
const Complex_Selector* selector() const { return mpSelector; }
-
+
NodeDequePtr collection() { return mpCollection; }
const NodeDequePtr collection() const { return mpCollection; }
-
+
static Node createCombinator(const Complex_Selector::Combinator& combinator);
// This method will clone the selector, stripping off the tail and combinator
static Node createSelector(Complex_Selector* pSelector, Context& ctx);
-
+
static Node createCollection();
static Node createCollection(const NodeDeque& values);
static Node createNil();
-
+
Node clone(Context& ctx) const;
-
+
bool operator==(const Node& rhs) const;
inline bool operator!=(const Node& rhs) const { return !(*this == rhs); }
-
-
+
+
/*
COLLECTION FUNCTIONS
-
+
Most types don't need any helper methods (nil and combinator due to their simplicity and
selector due to the fact that we leverage the non-node selector code on the Complex_Selector
whereever possible). The following methods are intended to be called on Node objects whose
type is COLLECTION only.
*/
-
+
// rhs and this must be node collections. Shallow copy the nodes from rhs to the end of this.
// This function DOES NOT remove the nodes from rhs.
void plus(Node& rhs);
-
+
// potentialChild must be a node collection of selectors/combinators. this must be a collection
// of collections of nodes/combinators. This method checks if potentialChild is a child of this
// Node.
bool contains(const Node& potentialChild, bool simpleSelectorOrderDependent) const;
-
+
private:
// Private constructor; Use the static methods (like createCombinator and createSelector)
// to instantiate this object. This is more expressive, and it allows us to break apart each
// case into separate functions.
Node(const TYPE& type, Complex_Selector::Combinator combinator, Complex_Selector* pSelector, NodeDequePtr& pCollection);
TYPE mType;
-
+
// TODO: can we union these to save on memory?
Complex_Selector::Combinator mCombinator;
Complex_Selector* mpSelector; // this is an AST_Node, so it will be handled by the Memory_Manager
NodeDequePtr mpCollection;
};
-
-
- ostream& operator<<(ostream& os, const Node& node);
-
+#ifdef DEBUG
+ ostream& operator<<(ostream& os, const Node& node);
+#endif
Node complexSelectorToNode(Complex_Selector* pToConvert, Context& ctx);
Complex_Selector* nodeToComplexSelector(const Node& toConvert, Context& ctx);
-
bool nodesEqual(const Node& one, const Node& two, bool simpleSelectorOrderDependent);
}
+
+#endif