File: Lexer.swift

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (348 lines) | stat: -rw-r--r-- 11,651 bytes parent folder | download
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
typealias TextRange = Range<String.UnicodeScalarView.Index>

struct Lexer {
    struct Cursor {
        let input: String.UnicodeScalarView
        var nextIndex: String.UnicodeScalarView.Index

        init(input: String) {
            self.input = input.unicodeScalars
            self.nextIndex = self.input.startIndex
        }

        func peek(at offset: Int = 0) -> Unicode.Scalar? {
            precondition(offset >= 0)
            guard self.input.index(self.nextIndex, offsetBy: offset) < self.input.endIndex else {
                return nil
            }
            let index = self.input.index(self.nextIndex, offsetBy: offset)
            return self.input[index]
        }

        mutating func next() -> Unicode.Scalar? {
            guard self.nextIndex < self.input.endIndex else { return nil }
            defer { self.nextIndex = self.input.index(after: self.nextIndex) }
            return self.input[self.nextIndex]
        }

        mutating func eat(_ expected: UnicodeScalar) -> Bool {
            if peek() == expected {
                _ = next()
                return true
            }
            return false
        }
    }

    struct Lexeme: Equatable {
        var kind: TokenKind
        var textRange: TextRange
    }

    struct Diagnostic: CustomStringConvertible {
        let description: String
    }

    var cursor: Cursor

    mutating func advanceToEndOfBlockComment() -> Diagnostic? {
        var depth = 1
        while true {
            switch self.cursor.next() {
            case "*":
                // Check end of block comment
                if cursor.eat("/") {
                    depth -= 1
                    if depth == 0 {
                        break
                    }
                }
            case "/":
                // Check nested "/*"
                if cursor.eat("*") {
                    depth += 1
                }
            case nil:
                return Diagnostic(description: "unterminated block comment")
            case .some:
                continue
            }
        }
    }

    struct LexKindResult {
        var kind: TokenKind
        var diagnostic: Diagnostic?
    }

    mutating func lexKind() -> LexKindResult? {

        func isKeyLikeStart(_ ch: UnicodeScalar) -> Bool {
            // This check allows invalid identifier but we'll diagnose
            // that after we've lexed the full string.
            return ch.properties.isXIDStart || ch == "_" || ch == "-"
        }
        func isKeyLikeContinue(_ ch: UnicodeScalar) -> Bool {
            // XID continue includes '_'
            return ch.properties.isXIDContinue || ch == "-"
        }
        func isASCIIDigit(_ ch: UnicodeScalar) -> Bool {
            return "0" <= ch && ch <= "9"
        }

        let startIndex = cursor.nextIndex
        while let nextChar = cursor.next() {
            switch nextChar {
            case "\n", "\t", " ":
                while cursor.eat("\n") || cursor.eat("\t") || cursor.eat(" ") {}
                return LexKindResult(kind: .whitespace)
            case "/":
                // Eat a line comment if it starts with "//"
                if cursor.eat("/") {
                    while let commentChar = cursor.next(), commentChar != "\n" {}
                    return LexKindResult(kind: .comment)
                }
                // Eat a block comment if it starts with "/*"
                if cursor.eat("*") {
                    let diag = advanceToEndOfBlockComment()
                    return LexKindResult(kind: .comment, diagnostic: diag)
                }
                return LexKindResult(kind: .slash)
            case "=": return LexKindResult(kind: .equals)
            case ",": return LexKindResult(kind: .comma)
            case ":": return LexKindResult(kind: .colon)
            case ".": return LexKindResult(kind: .period)
            case ";": return LexKindResult(kind: .semicolon)
            case "(": return LexKindResult(kind: .leftParen)
            case ")": return LexKindResult(kind: .rightParen)
            case "{": return LexKindResult(kind: .leftBrace)
            case "}": return LexKindResult(kind: .rightBrace)
            case "<": return LexKindResult(kind: .lessThan)
            case ">": return LexKindResult(kind: .greaterThan)
            case "*": return LexKindResult(kind: .star)
            case "@": return LexKindResult(kind: .at)
            case "-":
                if cursor.eat(">") {
                    return LexKindResult(kind: .rArrow)
                } else {
                    return LexKindResult(kind: .minus)
                }
            case "+": return LexKindResult(kind: .plus)
            case "%":
                var tmp = self.cursor
                if let ch = tmp.next(), isKeyLikeStart(ch) {
                    self.cursor = tmp
                    while let ch = tmp.next() {
                        if !isKeyLikeContinue(ch) {
                            break
                        }
                        self.cursor = tmp
                    }
                }
                return LexKindResult(kind: .explicitId)
            case let ch where isKeyLikeStart(ch):
                var tmp = self.cursor
                while let ch = tmp.next() {
                    if !isKeyLikeContinue(ch) {
                        break
                    }
                    self.cursor = tmp
                }

                switch String(self.cursor.input[startIndex..<self.cursor.nextIndex]) {
                case "use": return LexKindResult(kind: .use)
                case "type": return LexKindResult(kind: .type)
                case "func": return LexKindResult(kind: .func)
                case "u8": return LexKindResult(kind: .u8)
                case "u16": return LexKindResult(kind: .u16)
                case "u32": return LexKindResult(kind: .u32)
                case "u64": return LexKindResult(kind: .u64)
                case "s8": return LexKindResult(kind: .s8)
                case "s16": return LexKindResult(kind: .s16)
                case "s32": return LexKindResult(kind: .s32)
                case "s64": return LexKindResult(kind: .s64)
                case "float32": return LexKindResult(kind: .float32)
                case "float64": return LexKindResult(kind: .float64)
                case "char": return LexKindResult(kind: .char)
                case "resource": return LexKindResult(kind: .resource)
                case "own": return LexKindResult(kind: .own)
                case "borrow": return LexKindResult(kind: .borrow)
                case "record": return LexKindResult(kind: .record)
                case "flags": return LexKindResult(kind: .flags)
                case "variant": return LexKindResult(kind: .variant)
                case "enum": return LexKindResult(kind: .enum)
                case "union": return LexKindResult(kind: .union)
                case "bool": return LexKindResult(kind: .bool)
                case "string": return LexKindResult(kind: .string_)
                case "option": return LexKindResult(kind: .option_)
                case "result": return LexKindResult(kind: .result_)
                case "future": return LexKindResult(kind: .future)
                case "stream": return LexKindResult(kind: .stream)
                case "list": return LexKindResult(kind: .list)
                case "_": return LexKindResult(kind: .underscore)
                case "as": return LexKindResult(kind: .as)
                case "from": return LexKindResult(kind: .from_)
                case "static": return LexKindResult(kind: .static)
                case "interface": return LexKindResult(kind: .interface)
                case "tuple": return LexKindResult(kind: .tuple)
                case "world": return LexKindResult(kind: .world)
                case "import": return LexKindResult(kind: .import)
                case "export": return LexKindResult(kind: .export)
                case "package": return LexKindResult(kind: .package)
                case "constructor": return LexKindResult(kind: .constructor)
                case "include": return LexKindResult(kind: .include)
                case "with": return LexKindResult(kind: .with)
                case _: return LexKindResult(kind: .id)
                }
            case let ch where isASCIIDigit(ch):
                var tmp = self.cursor
                while let ch = tmp.next() {
                    if !isASCIIDigit(ch) {
                        break
                    }
                    self.cursor = tmp
                }
                return LexKindResult(kind: .integer)
            default:
                return nil
            }
        }
        return nil
    }

    mutating func rawLex() -> Lexeme? {
        let start = self.cursor.nextIndex
        guard let kind = self.lexKind() else {
            return nil
        }
        let end = self.cursor.nextIndex
        return Lexeme(kind: kind.kind, textRange: start..<end)
    }

    mutating func lex() -> Lexeme? {
        while let token = self.rawLex() {
            switch token.kind {
            case .comment, .whitespace: continue
            default: return token
            }
        }
        return nil
    }

    func peek() -> Lexeme? {
        var copy = self
        return copy.lex()
    }

    @discardableResult
    mutating func expect(_ expected: TokenKind) throws -> Lexer.Lexeme {
        guard let actual = self.lex() else {
            throw ParseError(description: "\(expected) expected but got nothing")
        }
        guard actual.kind == expected else {
            throw ParseError(description: "\(expected) expected but got \(actual.kind)")
        }
        return actual
    }

    @discardableResult
    mutating func eat(_ expected: TokenKind) -> Bool {
        var other = self
        guard let token = other.lex(), token.kind == expected else {
            return false
        }
        self = other
        return true
    }

    var isEOF: Bool { self.peek() == nil }

    func parseText(in range: TextRange) -> String {
        String(self.cursor.input[range])
    }

    func parseExplicitIdentifier(in range: TextRange) -> String {
        let firstIndex = range.lowerBound
        let nextIndex = self.cursor.input.index(after: firstIndex)
        assert(self.cursor.input[firstIndex] == "%")
        return String(self.cursor.input[nextIndex..<range.upperBound])
    }
}

extension Lexer: IteratorProtocol, Sequence {
    mutating func next() -> Lexeme? {
        return self.lex()
    }
}

enum TokenKind: Equatable {
    case whitespace
    case comment

    case equals
    case comma
    case colon
    case period
    case semicolon
    case leftParen
    case rightParen
    case leftBrace
    case rightBrace
    case lessThan
    case greaterThan
    case rArrow
    case star
    case at
    case slash
    case plus
    case minus

    case use
    case type
    case `func`
    case u8
    case u16
    case u32
    case u64
    case s8
    case s16
    case s32
    case s64
    case float32
    case float64
    case char
    case record
    case resource
    case own
    case borrow
    case flags
    case variant
    case `enum`
    case union
    case bool
    case string_
    case option_
    case result_
    case future
    case stream
    case list
    case underscore
    case `as`
    case from_
    case `static`
    case interface
    case tuple
    case `import`
    case export
    case world
    case package
    case constructor

    case id
    case explicitId

    case integer

    case include
    case with
}