X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/2c1d569a0ed9ddd14d3d1d73ee8be776e0889d35..2fad14e52c8cde8c45003a2ebb6907a57ca380e4:/Driver.hpp diff --git a/Driver.hpp b/Driver.hpp index 88956fb..9625ed8 100644 --- a/Driver.hpp +++ b/Driver.hpp @@ -29,12 +29,18 @@ #include #include "Location.hpp" -#include "Parser.hpp" - -enum CYState { - CYClear, - CYRestricted, - CYNewLine +#include "Options.hpp" +#include "Pooling.hpp" +#include "Standard.hpp" + +struct CYClassTail; +struct CYExpression; +struct CYScript; +struct CYWord; + +enum CYMark { + CYMarkScript, + CYMarkModule, }; class _visible CYDriver { @@ -42,23 +48,29 @@ class _visible CYDriver { CYPool &pool_; void *scanner_; - CYState state_; + std::vector buffer_; + bool tail_; + std::stack in_; + std::stack return_; + std::stack super_; + std::stack template_; + std::stack yield_; + + std::stack class_; - struct { - bool AtImplementation; - bool Function; - bool OpenBrace; - } no_; + CYMark mark_; + int hold_; + bool newline_; + bool last_; - std::istream &data_; + std::streambuf &data_; int debug_; bool strict_; - bool commented_; + bool highlight_; enum Condition { - RegExpCondition, XMLContentCondition, XMLTagCondition, }; @@ -73,7 +85,7 @@ class _visible CYDriver { typedef std::vector Errors; - CYProgram *program_; + CYScript *script_; Errors errors_; bool auto_; @@ -100,7 +112,8 @@ class _visible CYDriver { AutoPrimary, AutoDirect, AutoIndirect, - AutoMessage + AutoMessage, + AutoResolve, } mode_; private: @@ -108,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);