AUI Framework  master
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
ATokenizer.h
    1/*
    2 * AUI Framework - Declarative UI toolkit for modern C++20
    3 * Copyright (C) 2020-2025 Alex2772 and Contributors
    4 *
    5 * SPDX-License-Identifier: MPL-2.0
    6 *
    7 * This Source Code Form is subject to the terms of the Mozilla Public
    8 * License, v. 2.0. If a copy of the MPL was not distributed with this
    9 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
   10 */
   11
   12#pragma once
   13
   14#include <utility>
   15#include "AUI/Common/SharedPtr.h"
   16#include "AUI/IO/IInputStream.h"
   17#include "AUI/Common/AString.h"
   18#include "AUI/Common/AColor.h"
   19#include "AUI/Common/ASet.h"
   20
   21class API_AUI_CORE ATokenizer
   22{
   23
   24public:
   25    ATokenizer(_<IInputStream> inputStream)
   26        : mInput(std::move(inputStream))
   27    {
   28    }
   29
   30    bool isEof() const {
   31        return mEof;
   32    }
   33
   34    explicit ATokenizer(const AString& fromString);
   35
   40    const std::string& readString();
   41
   46    template<aui::predicate<char> Callable>
   47    const std::string& readStringWhile(Callable pred) {
   48        mTemporaryStringBuffer.clear();
   49        char c;
   50
   51        try
   52        {
   53            for (;;) {
   54                c = readChar();
   55                if (pred(c))
   56                {
   57                    mTemporaryStringBuffer.push_back(c);
   58                }
   59                else
   60                {
   61                    reverseByte();
   62                    return mTemporaryStringBuffer;
   63                }
   64            }
   65        } catch (...)
   66        {
   67
   68        }
   69        return mTemporaryStringBuffer;
   70    }
   71
   76    const std::string& readString(size_t n);
   77
   82    const std::string& readString(const ASet<char>& applicableChars);
   83
   84
   89    char readChar() {
   90        if (mReverse) {
   91            mReverse = false;
   92            return mLastByte;
   93        }
   94
   95        if (mBufferRead >= mBufferEnd) {
   96            // read next blob
   97            mBufferEnd = mBuffer + mInput->read(mBuffer, sizeof(mBuffer));
   98            mBufferRead = mBuffer;
   99            if (mBufferEnd == mBufferRead) {
  100                throw AEOFException();
  101            }
  102        }
  103
  104        mLastByte = *(mBufferRead++);
  105
  106        if (mLastByte == '\n')
  107        {
  108            mRow += 1;
  109            mColumn = 1;
  110        } else
  111        {
  112            mColumn += 1;
  113        }
  114        return mLastByte;
  115    }
  116
  120    void reverseByte();
  121
  126    float readFloat();
  127
  128
  132    int64_t readLongInt();
  133
  134
  138    int readInt();
  139
  143    unsigned readUInt();
  144
  148    template<typename underlying_t>
  149    struct Hexable {
  150        underlying_t value;
  151        bool isHex;
  152    };
  153    Hexable<unsigned> readUIntX();
  154
  159    {
  160        return mLastByte;
  161    }
  162
  167    int getRow() const
  168    {
  169        return mRow;
  170    }
  171
  176    int getColumn() const
  177    {
  178        return mColumn;
  179    }
  180
  185    void skipUntilUnescaped(char c);
  186
  191    void skipUntil(char c);
  192
  193
  199    const std::string& readStringUntilUnescaped(char c);
  200
  206    const std::string& readStringUntilUnescaped(const ASet<char>& characters);
  207
  213    void readStringUntilUnescaped(std::string& out, char c);
  214
  220    void readStringUntilUnescaped(std::string& out, const ASet<char>& characters);
  221
  226    glm::vec2 readVec2();
  227
  228
  229private:
  230    _<IInputStream> mInput;
  231    AString mTemporaryAStringBuffer;
  232    std::string mTemporaryStringBuffer;
  233
  234    char mBuffer[4096];
  235    char* mBufferRead = nullptr;
  236    char* mBufferEnd = nullptr;
  237
  238    char mLastByte;
  239    bool mReverse = false;
  240    bool mEof = false;
  241
  242    int mRow = 1;
  243    int mColumn = 1;
  244
  245    template<typename T>
  246    T readIntImpl();
  247};
Thrown when stream has reached end (end of file).
Definition AEOFException.h:20
A std::set with AUI extensions.
Definition ASet.h:25
Represents a Unicode character string.
Definition AString.h:38
unsigned readUInt()
Reads unsigned integer number.
const std::string & readStringWhile(Callable pred)
Reads string while pred(char) == true.
Definition ATokenizer.h:47
const std::string & readString()
Reads string while isalnum == true.
float readFloat()
Reads float point number.
char getLastCharacter()
Definition ATokenizer.h:158
int getColumn() const
Get column counter value. Applicable for error reporting.
Definition ATokenizer.h:176
const std::string & readString(const ASet< char > &applicableChars)
Reads string while isalnum == true and characters contain in applicableChars.
void skipUntil(char c)
Skips character until c.
glm::vec2 readVec2()
reads 2 floats divided by any symbol.
void skipUntilUnescaped(char c)
Skips character until unescaped c.
char readChar()
Reads character.
Definition ATokenizer.h:89
const std::string & readStringUntilUnescaped(char c)
Reads string until unescaped c.
int getRow() const
Get row counter value. Applicable for error reporting.
Definition ATokenizer.h:167
void reverseByte()
Rejects the last read byte and return it into the "stream". Applicable for parsing algorithms.
const std::string & readStringUntilUnescaped(const ASet< char > &characters)
Reads string until unescaped c.
void readStringUntilUnescaped(std::string &out, const ASet< char > &characters)
Reads string until unescaped c.
const std::string & readString(size_t n)
Reads n symbols.
void readStringUntilUnescaped(std::string &out, char c)
Reads string until unescaped c.
int readInt()
Reads integer number.
int64_t readLongInt()
Reads integer number.
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179
Reads unsigned integer number + flag the read value is marked as hex (prefixed with 0x)
Definition ATokenizer.h:149