]> git.saurik.com Git - cycript.git/blobdiff - Driver.hpp
Use variadic templates to better organize Classes.
[cycript.git] / Driver.hpp
index a4458a237a4bca49f5dba063df0007af1fe90ca1..9625ed852948e882b3969ac170433a92bd308b8d 100644 (file)
 #include <vector>
 
 #include "Location.hpp"
-#include "Parser.hpp"
+#include "Options.hpp"
+#include "Pooling.hpp"
+#include "Standard.hpp"
+
+struct CYClassTail;
+struct CYExpression;
+struct CYScript;
+struct CYWord;
+
+enum CYMark {
+    CYMarkScript,
+    CYMarkModule,
+};
 
 class _visible CYDriver {
   public:
     CYPool &pool_;
     void *scanner_;
 
+    std::vector<char> buffer_;
+    bool tail_;
+
     std::stack<bool> in_;
+    std::stack<bool> return_;
+    std::stack<bool> super_;
+    std::stack<bool> template_;
+    std::stack<bool> yield_;
 
+    std::stack<CYClassTail *> class_;
+
+    CYMark mark_;
+    int hold_;
     bool newline_;
     bool last_;
 
-    struct {
-        bool AtImplementation;
-        bool Class;
-        bool Function;
-        bool OpenBrace;
-        bool NewLine;
-    } no_;
-
-    std::istream &data_;
+    std::streambuf &data_;
 
     int debug_;
     bool strict_;
-    bool commented_;
+    bool highlight_;
 
     enum Condition {
-        RegExpCondition,
         XMLContentCondition,
         XMLTagCondition,
     };
@@ -98,7 +112,8 @@ class _visible CYDriver {
         AutoPrimary,
         AutoDirect,
         AutoIndirect,
-        AutoMessage
+        AutoMessage,
+        AutoResolve,
     } mode_;
 
   private:
@@ -106,13 +121,13 @@ class _visible CYDriver {
     void ScannerDestroy();
 
   public:
-    CYDriver(CYPool &pool, std::istream &data, const std::string &filename = "");
+    CYDriver(CYPool &pool, std::streambuf &data, const std::string &filename = "");
     ~CYDriver();
 
-    bool Parse();
+    bool Parse(CYMark mark = CYMarkModule);
     void Replace(CYOptions &options);
 
-    Condition GetCondition();
+    void SetRegEx(bool equal);
     void SetCondition(Condition condition);
 
     void PushCondition(Condition condition);