summaryrefslogtreecommitdiffstats
path: root/source/core/slang-token-reader.h
blob: 41affb1d02e6d04cbe4aa53e0ba7c02945fa50a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
#ifndef SLANG_CORE_TOKEN_READER_H
#define SLANG_CORE_TOKEN_READER_H

#include "slang-basic.h"

namespace Slang
{
namespace Misc
{

/* NOTE! This TokenReader is NOT used by the main slang compiler !*/

enum class TokenType
{
    EndOfFile = -1,
    // illegal
    Unknown,
    // identifier
    Identifier,
    // constant
    IntLiteral,
    DoubleLiteral,
    StringLiteral,
    CharLiteral,
    // operators
    Semicolon,
    Comma,
    Dot,
    LBrace,
    RBrace,
    LBracket,
    RBracket,
    LParent,
    RParent,
    OpAssign,
    OpAdd,
    OpSub,
    OpMul,
    OpDiv,
    OpMod,
    OpNot,
    OpBitNot,
    OpLsh,
    OpRsh,
    OpEql,
    OpNeq,
    OpGreater,
    OpLess,
    OpGeq,
    OpLeq,
    OpAnd,
    OpOr,
    OpBitXor,
    OpBitAnd,
    OpBitOr,
    OpInc,
    OpDec,
    OpAddAssign,
    OpSubAssign,
    OpMulAssign,
    OpDivAssign,
    OpModAssign,
    OpShlAssign,
    OpShrAssign,
    OpOrAssign,
    OpAndAssign,
    OpXorAssign,

    QuestionMark,
    Colon,
    RightArrow,
    At,
    Pound,
    PoundPound,
    Scope,
};

class CodePosition
{
public:
    int Line = -1, Col = -1, Pos = -1;
    String FileName;
    String ToString()
    {
        StringBuilder sb(100);
        sb << FileName;
        if (Line != -1)
            sb << "(" << Line << ")";
        return sb.produceString();
    }
    CodePosition() = default;
    CodePosition(int line, int col, int pos, String fileName)
    {
        Line = line;
        Col = col;
        Pos = pos;
        this->FileName = fileName;
    }
    bool operator<(const CodePosition& pos) const
    {
        return FileName < pos.FileName || (FileName == pos.FileName && Line < pos.Line) ||
               (FileName == pos.FileName && Line == pos.Line && Col < pos.Col);
    }
    bool operator==(const CodePosition& pos) const
    {
        return FileName == pos.FileName && Line == pos.Line && Col == pos.Col;
    }
};

enum TokenFlag : unsigned int
{
    AtStartOfLine = 1 << 0,
    AfterWhitespace = 1 << 1,
};
typedef unsigned int TokenFlags;

class Token
{
public:
    TokenType Type = TokenType::Unknown;
    String Content;
    CodePosition Position;
    TokenFlags flags = 0;
    Token() = default;
    Token(
        TokenType type,
        const String& content,
        int line,
        int col,
        int pos,
        String fileName,
        TokenFlags flags = 0)
        : flags(flags)
    {
        Type = type;
        Content = content;
        Position = CodePosition(line, col, pos, fileName);
    }
};

class TextFormatException : public Exception
{
public:
    TextFormatException(String message)
        : Exception(message)
    {
    }
};

class TokenReader
{
private:
    bool legal;
    List<Token> tokens;
    int tokenPtr;

public:
    TokenReader(String text);
    int ReadInt()
    {
        auto token = ReadToken();
        bool neg = false;
        if (token.Content.getUnownedSlice().isChar('-'))
        {
            neg = true;
            token = ReadToken();
        }
        if (token.Type == TokenType::IntLiteral)
        {
            if (neg)
                return -stringToInt(token.Content);
            else
                return stringToInt(token.Content);
        }
        throw TextFormatException("Text parsing error: int expected.");
    }
    unsigned int ReadUInt()
    {
        auto token = ReadToken();
        if (token.Type == TokenType::IntLiteral)
        {
            return stringToUInt(token.Content);
        }
        throw TextFormatException("Text parsing error: int expected.");
    }
    double ReadDouble()
    {
        auto token = ReadToken();
        bool neg = false;
        if (token.Content.getUnownedSlice().isChar('-'))
        {
            neg = true;
            token = ReadToken();
        }
        if (token.Type == TokenType::DoubleLiteral || token.Type == TokenType::IntLiteral)
        {
            if (neg)
                return -stringToDouble(token.Content);
            else
                return stringToDouble(token.Content);
        }
        throw TextFormatException("Text parsing error: floating point value expected.");
    }
    float ReadFloat() { return (float)ReadDouble(); }
    String ReadWord()
    {
        auto token = ReadToken();
        if (token.Type == TokenType::Identifier)
        {
            return token.Content;
        }
        throw TextFormatException("Text parsing error: identifier expected.");
    }
    String Read(const char* expectedStr)
    {
        auto token = ReadToken();
        if (token.Content == expectedStr)
        {
            return token.Content;
        }
        throw TextFormatException("Text parsing error: \'" + String(expectedStr) + "\' expected.");
    }
    String Read(String expectedStr)
    {
        auto token = ReadToken();
        if (token.Content == expectedStr)
        {
            return token.Content;
        }
        throw TextFormatException("Text parsing error: \'" + expectedStr + "\' expected.");
    }
    bool Read(TokenType tokenType)
    {
        if (NextToken().Type == tokenType)
        {
            ReadToken();
            return true;
        }
        throw TextFormatException("Text parsing error: unexpected '" + NextToken().Content + "'.");
    }

    String ReadStringLiteral()
    {
        auto token = ReadToken();
        if (token.Type == TokenType::StringLiteral)
        {
            return token.Content;
        }
        throw TextFormatException("Text parsing error: string literal expected.");
    }
    void Back(int count) { tokenPtr -= count; }
    Token ReadMatchingToken(TokenType type)
    {
        auto token = ReadToken();
        if (token.Type != type)
        {
            throw TextFormatException("Text parsing error: unexpected token.");
        }
        return token;
    }
    Token ReadToken()
    {
        if (tokenPtr < (int)tokens.getCount())
        {
            auto& rs = tokens[tokenPtr];
            tokenPtr++;
            return rs;
        }
        throw TextFormatException("Unexpected ending.");
    }
    Token NextToken(int offset = 0)
    {
        if (tokenPtr + offset < (int)tokens.getCount())
            return tokens[tokenPtr + offset];
        else
        {
            Token rs;
            rs.Type = TokenType::Unknown;
            return rs;
        }
    }
    bool LookAhead(String token)
    {
        if (tokenPtr < (int)tokens.getCount())
        {
            auto next = NextToken();
            return next.Content == token;
        }
        else
        {
            return false;
        }
    }
    bool LookAhead(TokenType tokenType)
    {
        if (tokenPtr < (int)tokens.getCount())
        {
            auto next = NextToken();
            return next.Type == tokenType;
        }
        else
        {
            return false;
        }
    }
    bool AdvanceIf(String token)
    {
        if (LookAhead(token))
        {
            ReadToken();
            return true;
        }
        return false;
    }
    bool AdvanceIf(TokenType token)
    {
        if (LookAhead(token))
        {
            ReadToken();
            return true;
        }
        return false;
    }
    bool IsEnd() { return tokenPtr == (int)tokens.getCount(); }

public:
    bool IsLegalText() { return legal; }
};

inline List<String> Split(String text, char c)
{
    List<String> result;
    StringBuilder sb;
    for (Index i = 0; i < text.getLength(); i++)
    {
        if (text[i] == c)
        {
            auto str = sb.toString();
            if (str.getLength() != 0)
                result.add(str);
            sb.clear();
        }
        else
            sb << text[i];
    }
    auto lastStr = sb.toString();
    if (lastStr.getLength())
        result.add(lastStr);
    return result;
}

} // namespace Misc
} // namespace Slang


#endif