//////////////////////////////////////////////////////////////////////////////// // // Copyright 2006 - 2017, Paul Beckingham, Federico Hernandez. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // // http://www.opensource.org/licenses/mit-license.php // //////////////////////////////////////////////////////////////////////////////// #ifndef INCLUDED_NIBBLER #define INCLUDED_NIBBLER #include #include #include #include class Nibbler { public: Nibbler (); // Default constructor Nibbler (const std::string&); // Constructor Nibbler (const Nibbler&); // Copy constructor Nibbler& operator= (const Nibbler&); // Assignment operator ~Nibbler (); // Destructor bool getUntil (char, std::string&); bool getUntil (const std::string&, std::string&); bool getUntilOneOf (const std::string&, std::string&); bool getUntilWS (std::string&); bool getUntilEOS (std::string&); bool getN (const int, std::string&); bool getQuoted (char, std::string&); bool getDigit (int&); bool getDigit4 (int&); bool getDigit3 (int&); bool getDigit2 (int&); bool getInt (int&); bool getUnsignedInt (int&); bool getNumber (std::string&); bool getNumber (double&); bool getLiteral (const std::string&); bool getPartialUUID (std::string&); bool getOneOf (const std::vector &, std::string&); bool skipN (const int quantity = 1); bool skip (char); bool skipAllOneOf (const std::string&); bool skipWS (); char next (); std::string next (const int quantity); std::string::size_type cursor (); std::string::size_type save (); std::string::size_type restore (); const std::string& str () const; bool depleted (); std::string dump (); private: std::shared_ptr _input; std::string::size_type _length; std::string::size_type _cursor; std::string::size_type _saved; }; #endif ////////////////////////////////////////////////////////////////////////////////