-
Notifications
You must be signed in to change notification settings - Fork 9
Manual
Citron is an LALR parser generator for Swift. For a given input grammar, Citron creates a reentrant type-safe parser in Swift.
-
Swifty
Citron encapsulates parsing-related data and functions into a parser class, and uses protocols and generics to provide a Swifty interface for parsing and lexing.
-
Reentrant
You can have different instances of a Citron-generated parser class in the same program, and the different instances can be used concurrently. You can also have different Citron-generated parser classes in the same program, and instances of those classes can be used concurrently.
However, you should not access the same instance of a parser class from multiple threads at the same time (i.e. Citron-generated parsers are not thread-safe).
-
Type-safe
The Citron-generated code enforces type checking on the inputs and outputs of every code block in the grammar file, ensuring that bugs are caught at build time rather than at runtime.
Citron is adapted from the Lemon parser generator by Richard Hipp, the creator of SQLite. Lemon is used to generate the parser that parses SQL statements in SQLite.
To make use of Citron, you should:
-
Create a grammar file
The grammar file contains the input grammar for which we'd like Citron to create a parser. It contains grammar rules, code blocks associated with the rules and Citron directives.
See The Citron Grammar File for information on how to write a grammar file.
-
Generate the parser
To generate a parser, you should compile Citron and then run Citron on the grammar file.
See Generating the parser for the commands that can accomplish this.
-
Use the parser
You can then use the parser class in your code, and provide it with inputs. You can optionally use Citron's lexer to generate the inputs for the parser.
See The Parsing Interface for information on how your code should use the parser.