- Extended Backus–Naur Form
In
computer science , Extended Backus–Naur Form (EBNF) is ametasyntax notation used to expresscontext-free grammar s: that is, a formal way to describe computerprogramming language s and otherformal language s. It is an extension of the basicBackus–Naur Form (BNF) metasyntax notation.Originally developed by
Niklaus Wirth , the most commonly used variants of EBNF are defined by standards bodies, most notably in the International Organization for Standardization’s [http://standards.iso.org/ittf/PubliclyAvailableStandards/s026153_ISO_IEC_14977_1996(E).zip ISO-14977] .Basics
A
code , e.g.source code of acomputer program consisting ofterminal symbol s—that is, visible characters, digits, punctuation marks, white space characters etc.The EBNF defines
production rule s where sequences of symbols are respectively assigned to a nonterminal:digit excluding zero ::= "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ; digit ::= "0" | digit excluding zero ;
This production rule defines the nonterminal "digit" which is on the left side of the assignment. The vertical bar represents an alternative and the terminal symbols are enclosed with quotation marks followed by a semicolon as terminating character. Hence a "Digit" is a "0" or a "digit excluding zero" that can be "1" or "2" or "3" and so forth until "9".
A production rule can also include a sequence of terminals or nonterminals, each separated by a comma:
twelve ::= "1" , "2" ; two hundred one ::= "2" , "0" , "1" ; three hundred twelve ::= "3" , twelve ; twelve thousand two hundred one ::= twelve , two hundred one ;
Expressions that may be omitted or repeated can be represented through curly braces { ... }:
natural number ::= digit excluding zero , { digit } ;
In this case, the strings "1", "2", ...,"10",...,"12345",... are correct expressions. To represent this, everything that is set within the curly braces may be repeated arbitrarily often, including not at all.
An option can be represented through squared brackets [ ... ] :
integer ::= "0" | [ "-" ] , natural number ;
Therefore an integer is a zero ("0") or a natural number that can be preceded by an optional minus sign.
EBNF also provides, among other things the syntax to describe repetitions of a specified number of time, to exclude some part of a production or to insert comments in an EBNF grammar.
Extensions according to ISO
According to the ISO 14977 standard EBNF is meant to be extensible, and two facilities are mentioned. The first is part of EBNF grammar, the special sequence, which is arbitrary text inside question marks, whose interpretation is beyond the scope of the EBNF standard. For example, the space character could be defined by the following rule:
space ::= ? US-ASCII character 32 ?;
The second is using the fact that parentheses cannot in EBNF be placed next to an identifier. The following is not valid EBNF:
something ::= foo ( bar );
So an extension of EBNF could use that notation. For example, in a Lisp grammar, function application could be defined by the following rule:
function application ::= list( symbol , [ { expression } ] );
Motivation to extend the BNF
The BNF had the problem that options and repetitions could not be directly expressed. Instead, they needed the use of an intermediate rule or alternative production defined to be either nothing or the optional production for option, or either the repeated production or itself, recursively, for repetition. The same constructs can still be used in EBNF.
Option:
signed number ::= [ sign , ] number ;
can be defined in BNF style as:
signed number ::= sign , number | number ;
or
signed number ::= optional sign , number ; optional sign ::= ε | sign ; (* epsilon is used to denote more clearly an empty production *)
Repetition:
number ::= { digit } ;
can be defined in BNF style as:
number ::= digit | number digit;
Other additions and modifications
The EBNF eliminates some of the BNF's flaws:
* The BNF uses the symbols (<, >, |, ::=) for itself. When these appear in the language that is to be defined, the BNF can not be used without modifications and explanation.
* A BNF syntax can only represent a rule in one line.The EBNF solves these problems:
* Terminals are strictly enclosed within quotation marks ("..." or '...'). The angle brackets ("<...>") for nonterminals can be omitted.
* A terminating character, usually a semicolon marks the end of a rule.Furthermore there are mechanisms for enhancements, defining the number of repetitions, excluding alternatives (e.g. all characters excluding quotation marks), comments etc. provided.
Despite all enhancements, the EBNF is not "more powerful" than the BNF in the sense of the language it can define. As a matter of principle any
grammar defined in EBNF can also be represented in BNF. However this often leads to a considerably larger representation.The EBNF has been standardized by the ISO under the code "ISO/IEC 14977:1996(E)".
Under some circumstances any extended BNF is referred to as EBNF. For example, the
W3C uses [http://www.w3c.org/TR/REC-xml#sec-notation "one" EBNF] to specifyXML .Another example
A simple programming language that allows only assignments can be defined in EBNF as follows:
(* a simple program in EBNF − Wikipedia *) program ::= 'PROGRAM' , white space , identifier , white space , 'BEGIN' , white space , { assignment , ";" , white space } , 'END.' ; identifier ::= alphabetic character , { alphabetic character | digit } ; number ::= [ "-" ] , digit , { digit } ; string ::= '"' , { all characters − '"' } , '"' ; assignment ::= identifier , ":=" , ( number | identifier | string ) ; alphabetic character ::= "A" | "B" | "C" | "D" | "E" | "F" | "G"
"H" | "I" | "J" | "K" | "L" | "M" | "N"
"O" | "P" | "Q" | "R" | "S" | "T" | "U"
"V" | "W" | "X" | "Y" | "Z" ; digit ::= "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ; white space ::= ? white space characters ? ; all characters ::= ? all visible characters ? ;A syntactically correct program then would be:
PROGRAM DEMO1 BEGIN A0:=3; B:=45; H:=-100023; C:=A; D123:=B34A; BABOON:=GIRAFFE; TEXT:="Hello world!"; END.
The language can easily be extended with
control flow s, arithmetical expressions and Input/Output instructions. Then a small, usable programming language would be developed.The following characters that are proposed in the standard as normal representation have been used:
Conventions
1. The following conventions are used:
*Each meta-identifier of Extended BNF is written as one or more words joined together byhyphen s;
*A meta-identifier ending with “-symbol” is the name of a terminal symbol of Extended BNF.2. The normal character representing each operator of Extended BNF and its implied precedence is (highest precedence at the top): * repetition-symbol - except-symbol , concatenate-symbol
definition-separator-symbol = defining-symbol ; terminator-symbol3. The normal precedence is overridden by the following bracket pairs: ´ first-quote-symbol first-quote-symbol ´ " second-quote-symbol second-quote-symbol " (* start-comment-symbol end-comment-symbol *) ( start-group-symbol end-group-symbol ) [ start-option-symbol end-option-symbol ] { start-repeat-symbol end-repeat-symbol } ? special-sequence-symbol special-sequence-symbol ?As examples, the following syntax rules illustrate thefacilities for expressing repetition: aa = "A"; bb = 3 * aa, "B"; cc = 3 * [aa] , "C"; dd = {aa}, "D"; ee = aa, {aa}, "E"; ff = 3 * aa, 3 * [aa] , "F"; gg = {3 * aa}, "D";Terminal strings defined by these rules are as follows: aa: A bb: AAAB cc: C AC AAC AAAC dd: D AD AAD AAAD AAAAD etc. ee: AE AAE AAAE AAAAE AAAAAE etc. ff: AAAF AAAAF AAAAAF AAAAAAF gg: D AAAD AAAAAAD etc.
Related work
*The
W3C used [http://www.w3c.org/TR/REC-xml/#sec-notation a different EBNF] to specify theXML syntax.
*TheBritish Standards Institute published a standard for an EBNF:BS 6154 in1981 .
*TheIETF uses Augmented BNF (ABNF), specified in RFC 5234.ee also
*
Augmented Backus–Naur Form
*Backus–Naur Form
*Regular expression
*Spirit Parser Framework
*Wirth syntax notation References
* Niklaus Wirth: [http://doi.acm.org/10.1145/359863.359883 What can we do about the unnecessary diversity of notation for syntactic definitions?] CACM, Vol. 20, Issue 11, November 1977, pp. 822–823.
* Roger S. Scowen: Extended BNF — A generic base standard. Software Engineering Standards Symposium 1993.
* The
International standard ( [http://www.iso.org/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=26153 ISO 14977] ) that defines the EBNF is now freely available as [http://standards.iso.org/ittf/PubliclyAvailableStandards/s026153_ISO_IEC_14977_1996(E).zip Zip-compressed PDF file] .External links
* Article " [http://www.cs.cmu.edu/~pattis/misc/ebnf.pdf EBNF: A Notation to Describe Syntax (PDF)] " by
Richard E. Pattis describing the functions and syntax of EBNF
* Article " [http://www.garshol.priv.no/download/text/bnf.html BNF and EBNF: What are they and how do they work?] " byLars Marius Garshol
* Article " [http://xml.com/pub/a/2001/07/25/namingparts.html The Naming of Parts] " byJohn E. Simpson
* [http://www.cl.cam.ac.uk/~mgk25/iso-14977.pdf ISO/IEC 14977 : 1996(E)]
* RFC 4234 – Augmented BNF for Syntax Specifications: ABNF
* [http://www.cs.man.ac.uk/~pjj/bnf/ebnf.html BNF/EBNF variants] – a table by Pete Jinks comparing several syntaxes.
* [http://dotnet.jku.at/applications/Visualizer Create syntax diagrams from EBNF]
Wikimedia Foundation. 2010.