FIDL语法
经修改的BNF规则
下文描述的是FIDL源文件的语法,语法使用经修改的BNF格式表示。
非终结符号由逗号分隔的其他符号序列来表示。
nonterminal = list , of , symbols ;
有些符号是终止符号,它们要么是全部大写,要么是用双引号括起来。
another-nonterminal = THESE , ARE , TERMINALS , AND , SO , IS , "this" ;
或者由管道的形式来表示。
choice = this | that | the-other ;
用括号表示选项(0或1)。
optional = ( maybe , these ) , but , definitely , these ;
重复(0或多个)可用括号和星号表示。
zero-or-more = ( list-part )* ;
另外,重复(1或多个)还可用括号和加号表示。
one-or-more = ( list-part )+ ;
符号
在lex处理期间将忽略空格和注释,因此不会出现在后续的语法中,其中注释采用的是C++样式——//直到行尾。
TODO(US-238):最终注释将作为文档生成系统的一部分,使其变得可读。
语法
file是FIDL文档入口符号。
file = library-header , using-list , declaration-list ;library-header = ( attribute-list ) , "library" , compound-identifier , ";" ;using-list = ( using | using-declaration )* ;using-declaration = "using" , IDENTIFIER , "=" , primitive-type , ";" ;declaration-list = ( declaration , ";" )* ;compound-identifier = IDENTIFIER ( "." , IDENTIFIER )* ;using = "using" , compound-identifier , ( "as" , IDENTIFIER ) , ";" ;declaration = const-declaration | enum-declaration | interface-declaration |struct-declaration | union-declaration ;const-declaration = ( attribute-list ) , "const" , type , IDENTIFIER , "=" , constant ;enum-declaration = ( attribute-list ) , "enum" , IDENTIFIER , ( ":" , integer-type ) ,"{" , ( enum-member , ";" )+ , "}" ;enum-member = IDENTIFIER , ( "=" , enum-member-value ) ;enum-member-value = IDENTIFIER | NUMERIC-LITERAL ;interface-declaration = ( attribute-list ) , "interface" , IDENTIFIER ,( ":" , super-interface-list ) , "{" , ( interface-method , ";" )* , "}" ;super-interface-list = compound-identifier| compound-identifier , "," , super-interface-listinterface-method = ordinal , ":" , interface-parametersinterface-parameters = IDENTIFIER , parameter-list , ( "->" , parameter-list )| "->" , IDENTIFIER , parameter-listparameter-list = "(" , parameters , ")" ;parameters = parameter | parameter , "," , parameter-list ;parameter = type , IDENTIFIER ;struct-declaration = ( attribute-list ) , "struct" , IDENTIFIER , "{" , ( struct-field , ";" )* , "}" ;struct-field = type , IDENTIFIER , ( "=" , constant ) ;union-declaration = ( attribute-list ) , "union" , IDENTIFIER , "{" , ( union-field , ";" )+ , "}" ;union-field = type , IDENTIFIER ;attribute-list = "[" , attributes, "]" ;attributes = attribute | attribute , "," , attribute ;attribute = IDENTIFIER , ( "=", STRING-LITERAL ) ;type = identifier-type | array-type | vector-type | string-type | handle-type| request-type | primitive-type ;identifier-type = compound-identifier , ( "?" ) ;array-type = "array" , "<" , type , ">" , ":" , constant ;vector-type = "vector" , "<" , type , ">" , ( ":" , constant ) , ( "?" ) ;string-type = "string" , ( ":" , constant ) , ( "?" ) ;handle-type = "handle" , ( "<" , handle-subtype , ">" ) , ( "?" ) ;handle-subtype = "process" | "thread" | "vmo" | "channel" | "event" | "port" |"interrupt" | "log" | "socket" | "resource" | "eventpair" |"job" | "vmar" | "fifo" | "guest" | "timer" ;request-type = "request" , "<" , compound-identifier , ">" , ( "?" ) ;primitive-type = integer-type | "bool" | "float32" | "float64" ;integer-type = "int8" | "int16" | "int32" | "int64" |"uint8" | "uint16" | "uint32" | "uint64" ;constant = compound-identifier | literal ;ordinal = NUMERIC-LITERAL ;literal = STRING-LITERAL | NUMERIC-LITERAL | TRUE | FALSE ;
