Antlr Online Tutorials

In computer-based language recognition, ANTLR (pronounced antler), or ANother Tool for Language Recognition, is a parser generator that uses a LL(*) algorithm for parsing. ANTLR is the successor to the Purdue Compiler Construction Tool Set (PCCTS), first developed in 1989, and is under active development. Its maintainer is Professor Terence Parr of the University of San Francisco.

ANTLR
Original author(s)Terence Parr and others
Initial releaseApril 10, 1992; 31 years ago (1992-04-10)
Stable release
4.13.1 / 4 September 2023; 6 months ago (2023-09-04)
Repository
  • github.com/antlr/antlr4 Edit this at Wikidata
Written inJava
PlatformCross-platform
LicenseBSD License
Websitewww.antlr.org

PCCTS 1.00 was announced April 10, 1992.

Usage edit

ANTLR takes as input a grammar that specifies a language and generates as output source code for a recognizer of that language. While Version 3 supported generating code in the programming languages Ada95, ActionScript, C, C#, Java, JavaScript, Objective-C, Perl, Python, Ruby, and Standard ML, Version 4 at present targets C#, C++, Dart, Java, JavaScript, Go, PHP, Python (2 and 3), and Swift.

A language is specified using a context-free grammar expressed using Extended Backus–Naur Form (EBNF). ANTLR can generate lexers, parsers, tree parsers, and combined lexer-parsers. Parsers can automatically generate parse trees or abstract syntax trees, which can be further processed with tree parsers. ANTLR provides a single consistent notation for specifying lexers, parsers, and tree parsers.

By default, ANTLR reads a grammar and generates a recognizer for the language defined by the grammar (i.e., a program that reads an input stream and generates an error if the input stream does not conform to the syntax specified by the grammar). If there are no syntax errors, the default action is to simply exit without printing any message. In order to do something useful with the language, actions can be attached to grammar elements in the grammar. These actions are written in the programming language in which the recognizer is being generated. When the recognizer is being generated, the actions are embedded in the source code of the recognizer at the appropriate points. Actions can be used to build and check symbol tables and to emit instructions in a target language, in the case of a compiler.

Other than lexers and parsers, ANTLR can be used to generate tree parsers. These are recognizers that process abstract syntax trees, which can be automatically generated by parsers. These tree parsers are unique to ANTLR and help processing abstract syntax trees.

Licensing edit

ANTLR 3 and ANTLR 4 are free software, published under a three-clause BSD License. Prior versions were released as public domain software. Documentation, derived from Parr's book The Definitive ANTLR 4 Reference, is included with the BSD-licensed ANTLR 4 source.

Various plugins have been developed for the Eclipse development environment to support the ANTLR grammar, including ANTLR Studio, a proprietary product, as well as the "ANTLR 2" and "ANTLR 3"[11] plugins for Eclipse hosted on SourceForge.[citation needed]

ANTLR 4 edit

ANTLR 4 deals with direct left recursion correctly, but not with left recursion in general, i.e., grammar rules x that refer to y that refer to x.[12]

Development edit

As reported on the tools[13] page of the ANTLR project, plug-ins that enable features like syntax highlighting, syntax error checking and code completion are freely available for the most common IDEs (Intellij IDEA, NetBeans, Eclipse, Visual Studio[14] and Visual Studio Code).

Projects edit

Software built using ANTLR includes:

  • Groovy.[15]
  • Jython.[16]
  • Hibernate[17]
  • OpenJDK Compiler Grammar project experimental version of the javac compiler based upon a grammar written in ANTLR.[18]
  • Apex, Salesforce.com's programming language.[citation needed]
  • The expression evaluator in Numbers, Apple's spreadsheet.[citation needed]
  • Twitter's search query language.[citation needed]
  • Weblogic server.[citation needed]
  • Apache Cassandra.[citation needed]
  • Processing.[citation needed]
  • JabRef.[citation needed]
  • Trino (SQL query engine)
  • Presto (SQL query engine)
  • MySQL Workbench

Over 200 grammars implemented in ANTLR 4 are available on GitHub.[19] They range from grammars for a URL to grammars for entire languages like C, Java and Go.

Example edit

In the following example, a parser in ANTLR describes the sum of expressions can be seen in the form of "1 + 2 + 3":

 // Common options, for example, the target language
 options
 {
  language = "CSharp";
 }
 // Followed by the parser 
 class SumParser extends Parser;
 options
 {
   k = 1; // Parser Lookahead: 1 Token
 }
 // Definition of an expression
 statement: INTEGER (PLUS^ INTEGER)*;
 // Here is the Lexer
 class SumLexer extends Lexer;
 options
 {
   k = 1; // Lexer Lookahead: 1 characters
 }
 PLUS: '+';
 DIGIT: ('0'..'9');
 INTEGER: (DIGIT)+;

The following listing demonstrates the call of the parser in a program:

 TextReader reader;
 // (...) Fill TextReader with character
 SumLexer lexer = new SumLexer(reader);
 SumParser parser = new SumParser(lexer);

 parser.statement();

See also edit

  • Coco/R
  • DMS Software Reengineering Toolkit
  • JavaCC
  • Modular Syntax Definition Formalism
  • Parboiled (Java)
  • Parsing expression grammar
  • SableCC

Antlr Tutorials: ANTLR, ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages.

Latest online Antlr Tutorials with example so this page for both freshers and experienced candidate who want to get job in Antlr company

Latest online Antlr Tutorials for both freshers and experienced

advertisements

View Tutorials on Antlr View all questions

Ask your interview questions on Antlr

Write Your comment or Questions if you want the answers on Antlr from Antlr Experts
Name* :
Email Id* :
Mob no* :
Question
Or
Comment* :
 





Disclimer: PCDS.CO.IN not responsible for any content, information, data or any feature of website. If you are using this website then its your own responsibility to understand the content of the website

--------- Tutorials ---