Giter Club home page Giter Club logo

basic_pcp's Introduction

Precedence Climbing Parsing based on Binding Powers and Insertion of Virtual Operands

1. Introduction

The repository contains several sample implementations of expression parsers based on binding powers, precedence climbing and insertion of virtual operands.

The term precedence climbing is used here in a generic sense; the algorithms can be iterative, recursive, or mixed (with loops and recursion).

The expressions to be parsed can consist of atomic operands, binary infix operators, unary prefix and unary postfix operators. In the following example, & is a prefix operator, ! is a postfix operator, and >, *, + are infix operators:

(1)   & a > 7 * b ! + 2

Parsing of unary operators (prefix, postfix) is traced back to parsing of infix operators. All operators in the expression can have virtually arbitrary binding powers. The left and right binding powers of an infix operator are independent.

Python 3.8 or higher is required. More details can be found in the text PARSING.

1.1 Basics of precedence climbing parsing based on binding powers

1.1.1 Binding powers

An infix operator has a left and a right binding power (lbp and rbp). Prefix operators have an rbp, and postfix operators have an lbp. Binding powers are numbers (often integers); they indicate the strength of binding (the precedence) to the left or to the right. Frequently, lbp and rbp of a specific infix operator are equal or differ only by one. They can, however, differ by any number, as long as they are in an allowed range (here: 6 to 99). Binding powers of unary operators can be smaller than the binding powers of infix operators in the same expression.

Parsing based on lbp and rbp (two numbers) can be more powerful than the approach based on precedence (in the specific sense: one number) and associativity (two values: left or right). Associativity can be expressed in terms of binding powers: An infix operator will be right associative if its rbp is less than its lbp.

1.1.2 Unary operators, insertion of virtual operands

The tokenizers insert a left operand $PRE before a prefix operator, and a right operand $POST after a postfix operator. In a further preparatory step, prefix operators are assigned a fake left binding power of 100, and postfix operators are assigned a fake right binding power of 100. The result is an alternating sequence of operands and infix operators, starting and ending with an operand. This procedure makes it easy to use unary operators with virtually arbitrary binding powers.

In addition, a special $BEGIN token is placed at the beginning, and an $END token is placed at the end of the token sequence. These tokens can act as a kind of operator in the process of parsing, depending on the specific parser: A negative rbp is assigned to $BEGIN and a negative lbp to $END.

The complete token sequence generated by the tokenizer for the example (1) is

 (2)   $BEGIN $PRE & a > 7 * b ! $POST + 2 $END

1.1.3 Parse trees

The parsers return nested Python lists that represent parse trees. These lists can be formatted as Lisp-like S-expressions. For example, parsing 5 + 3 ! * 4 will create the list [+, 5, [*, [!, 3, $POST], 4]], or (+ 5 (* (! 3 $POST) 4)) as S-expression. Without the virtual operand $POST this is (+ 5 (* (! 3) 4)).

1.2 Main goals of the repository

  1. Find and compare sample implementations of precedence climbing algorithms based on binding powers. Encourage experimentation.
  2. Use insertion of virtual operands to facilitate parsing of unary operators.
  3. Separate definition of parsing rules from the implementation of the parsers.
  4. Better understand the meaning of precedence correct parsing.

1.3 Limitations

Exploring the full potential of precedence climbing parsing based on binding powers and token insertion is not the goal of this repository. Pratt parsing (although related), context-free grammars, Backus normal forms and the like are not considered. The software does not contain evaluators for the parse trees.

2. Prerequisites

The Python interpreter (version 3.8 or higher) with the standard library is enough for the parsers. The bash shell is required for a test script.

3. Overview on the parsers

There are ten parsers, in separate modules. Nine of them, which shall be called basic parsers here, share the same high-level interface:

pcp_ir_0 and pcp_ir_0_no_ins are iterative and recursive. Contrary to the general setting, the latter it is not based on token insertion. Instead, special code takes care of prefix and postfix operators.

pcp_it_0_1w, pcp_it_0_1wg and pcp_it_0_2w implement iterative algorithms.

pcp_rec_0_0, pcp_rec_0_1, pcp_rec_0_2 and pcp_rec_03 are recursive (without loops) and more or less functional (in the sense of functional programming).

All these parsers accept the same syntax for operator definitions.

Analysis of the code and test results support this claim:

All basic parsers accept the same set of expressions and create identical results with identical input, provided they use identical operator and binding power definitions. In the parse process, they create subexpressions in the same order.

This should also justify the use of the generic term precedence climbing.

The remaining parser, direct_pcp_ir_0, uses the algorithm of pcp_ir_0 to parse some 'hard coded' examples. It is 'self-contained' (no imports).

The software is contained in ten parser modules, the modules helpers.py and bintree.py, the JSON file binding_powers.json (syntax), the shell script run_tests.sh and the file basic_tests.txt (test data for the shell script).

4. Usage of the parsers

All files should be placed in the same directory. Note that there is only minimal error handling. Run the parsers from the command line.

The parser direct_pcp_ir_0.py is simply run by

python3 direct_pcp_ir_0.py

The rest of this section refers to the nine basic parsers.

The syntax definition is loaded from the file binding_powers.json unless one of the options -r, -d is in effect (see below). Edit the syntax definition if desired.

A parser can be run by

python3 PARSER_MODULE 'CODE'

where PARSER_MODULE is one of the basic parser modules. Example:

python3 pcp_rec_0_0.py '3 + 5! * 6^2'

Use python instead of python3 if required. Enclose the code in single quotes or (on Windows?) double quotes. Tokens are separated by whitespace, or by transition from an alphanumeric to a special character or vice versa. In this regard, underscore, parentheses and semicolon are considered alphanumeric. A minus sign followed by a digit is also considered alphanumeric. Operands should be integers or identifiers.

This above command will parse the code by the specified parser and generate detailed output -- among others, a two-dimensional representation of the parse tree and indications of correctness of the parsing. The output can be more concise or more verbose. Use the option -h (with any basic parser) to find out all ways to run the parsers.

The call syntax ./PARSER_MODULE 'CODE' may work, depending on the operating system and the shell. An example:

./pcp_it_0_1w.py '3 + 5! * 6^2'

The bash shell script run_tests.sh reads test codes from the file basic_tests.txt and processes them with the nine basic parsers. It should work on systems that support bash scripts. Run the script without arguments, or with the option -q (quiet, i.e., less verbose output).

4.1 Randomly generated expressions (option -r)

The command

python3 PARSER_MODULE -r [nop [nbp [lexpr]]]

will parse a generated expression containing lexpr infix operators which are taken randomly from a collection of up to nop operators. The lbp and rbp values of the operators are taken randomly and independently, from the range 6 ... 6+nbp-1. Non-specified values default to 6. An example:

python3 pcp_it_0_2w.py -r 4 3

Results of calls with option -r are not reproducible.

4.2 Expressions with explicitly specified binding powers (option -d)

The command

python3 PARSER_MODULE -d lbp1 rbp1, lbp2 rbp2, ..., lbpn rbpn

will parse an expression with operators (lbp1;rbp1) to (lbpn;rbpn) and operands A0, ..., An, where lbpk, rbpk are the binding powers of the k-th operator. All binding powers should be in range 6 ... 99. For example,

python3 pcp_it_0_1w.py -d 7 8, 9 10

will create and parse the expression

A0 (7;8) A1 (9;10) A2

Unary operators can also be included. Use the help option (-h) for details.

5. License

The repository is licensed under the terms of the MIT License. See LICENSE.

6. Acknowledgements

This repository was inspired by works on precedence climbing and Pratt parsing by Theodore Norvell, Aleksey Kladov (matklad), Andy Chu, Eli Bendersky, Fredrik Lundh (effbot), Annika Aasa and others. See section 5 in the text PARSING. The correctness test and the definitions of operator ranges implemented in helpers.py are adapted from definitions by Annika Aasa in Precedences in Specifications and Implementations of Programming Languages (1995). In the gist op.py by Olivier Breuleux (see https://gist.github.com/breuleux/6147321/) dummy token are used to convert unary to infix operators.

basic_pcp's People

Contributors

joekreu avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.