wsh = cUnit ? ( '$#' name '#' kind cUnit )* ( ( '$#end' | '$#out' ) litText )
nl = (* newLine character(s) or record switch *)
noNl = (* one character not nl *)
sp = (* one space character ' ', tab etc., but not nl *)
noDo = (* one character neither '$' nor nl *)
noSla = (* one character neither '/' nor nl *)
noBr = (* one character neither in '{}=' nor nl *)
word = (* one or more characters of noBr but not space *)
textB = ( noBr+ | '{' textB '}' )*
textLns = spCom* (nl noNl* )*
comment = '$**' noNl* | '$*+' noNl* nl | '$*(' (comment | sConst | noNl | nl )* '$*)'
spNlCom = sp | nl | comment
litText = (* any number of any characters, newlines, etc. *)
wsh input consists of a compilation unit possibly followed by named compilation units, that are put into the variable pool. This allows to combine the arguments to the interpreter and several fragments of the source file.
cUnit = unit ? ( '$#' kind unit )*
a compilationUnit consists possibly of an unit of implicit kind, possibly followed by units of explicit kind.
unit = data | shell | assAtt | assTab | litText
A unit with implicit kind, which is determined by the environment
data = ( spCom* | expr) (nl (expr | sp* comment spCom* )* (nl spCom* )? (stmt data )*
Defines line oriented data and consists of expressions and statements.
shell = pipe ? ('$;' pipe? )*
- All expressions are of the same kind or constant
- Partial lines (i.e. at begin, end or beside a stmt) are ignored, if they consist only of spaces and comments.
- Empty lines with comments are also ignored
A pipe is a statement or language code with optional IO redirections. Caution: Semicolons without $ do not terminate a pipe but are part of the underlying language.
expr = (( noDo+ | primary ) comment* )+
expressions consists text (without dollars or newLines) and primaries, comments are ignored (i.e. substitued by 0 or 1 space depending on the context). The kind of the expression determines how text is interpreted.
exprS = spCom* expr spCom*
an expression with leading and trailing spaces stripped
exprB = spCom* (( noBr+ | primary ) comment* )+ spCom*
a type of expressions with texts without {}=, leading and trailing spaces stripped
exprW = (( word | primary ) comment* )+
an type of expressions with texts without (free) spaces or {}=
kind = '.' | '-' | '=' | ':' | '!' | '#' | '@'
there are 7 kinds with the following meaning
op = '.' | '-' | '<' | '@' | '!' | '?'
three flavours of stringData
- = string: text is (part of) a rexx expression that yields a String
= = skeleton: text is literal data, expression yields a string
# = literal text: text without rexx or wsh interpretation
three flavours of object(s)
. = object: text is (part of) a rexx expression that yields an Object
: = object(s) in assAtt (attribute assignment syntax}
! = object(s) in assTab {tabular assignment syntax)
and finally code yielding an ORun
@ = shell: text is (part of) rexx statements
there are 6 object operators:
primary = varCo | ('$.' | '$-') ( op* ('<' file | varCo | 'compile' kind) ) | (op* kind)? block )
- = a2string: objectString to its value, conacatenates the contents of a File or Run (with one space between lines, files any line is no
string), otherwise fails
< = a2file: String to file with that specification, an ORun to OBuf with the output of running the ORun, otherwise fails
A primary is an object or a string from a
varCo = '$' name | '${' ( '?' | '>' )? exprB '}' | '$' sConst
- variable expansion,string constant
or an operator chain to a
- file,variable expansian or string constantblock which yields an instance of string, object, Run or File, depending on the operator chain and kind,
a variable expansion or a string constant. The variable expansion yields a string or an object depending on context. The form with braces allows options, nested variables and variable names that are not a name.
file = exprBlo
? yields 1 if variable is defined, 0 otherwise
> reads stdIn into variable, yields 1 if not at end
otherwise does a normal expansion
exprB yields an arbitrary variableName, possibly with nested variable expansions
if exprBlo (default kind =) is a block without preceeding operators, its lines become the content of the file (JBuf), otherwise the value is casted to file e.g. String yields a fileSpec.
exprBlo = (op* kind)? ( block | exprS )
allows a block or an expression of a possibly specified kind possible transformed by an operator chain
block = '{' unit '}' | '[' ( unit ) '$]' | '/' noSla* '/' ( unit ) '$/' noSla* '/'
A block combines several expressions or statements in a single syntactical entitiy. The content of a block is evaluated according to a kind. This kind is implîed or explicitley given, immedidiatly before the block. For clarity, {} blocks do not allow nls. The slashes give label a block with the same label at the begin and end
pipe = ioRedir stmts ( '$|' stmts )*
this is execution order, syntax order is more flexible
ioRedir = (('$<' | '$>' | '$>>') file spNlCom* )+
$< designates an input file, several input files are concatenated. An Output with $> replaces an existing file, $>> appends to it. Several Outputs are an error.
stmts = ( ( stmt | expr ) spNlCom* )+
expr yields rexx statements with trailing comma handling for rexx line continuations
stmt = '$=' ass
$@for readloop on stdIn, the read object is assigned to the variabe named exprB
ass = ( exprB '=')? exprBlo
$@ct executes the statement at compile time
$@proc declares the variable named exprB as a procedure (an instance of run) at compile time
$@do: rexx do logic, control variable assigned
$@name() run the procedure (oRun of the object in variable pool) of the given name
$@name?{exprB} run the procedure (object in variable pool) of the given name with exprB as arguments, the kind of exprB is given between name and {, default -
$@obj run the object
assigns variable named exprB the contents of exprBlo.
assAtt = ( ass | stmt | ( '$'? (':' class | ':.' exprB)? ';' ) | spNlCom )*
- If exprB is missing, the expr must be a named block, and its name is used as the name of the variable, e.g. $=/lines/ ... $/lines/
- an assignment can address object in the variable pool, or an attritute at the end of an attribute chain of an object from the variable pool.
- If the block is of kind attribute or tabular assignment then the addressed variable or attribute defines the environment for that block
the ass (without $) are confined to the latest with, typically from an assignment of the form .... =:... The semicolon (with or without $) create the next element of collection. This only works after =<: (replacment of old collection) or =<<: (append to old collection). Currently it only works for stems. The dollar before the block terminator (] or /../) can be omitted on the beginning of a new line or anywhere, the scanner can recognise it.
assTab = spNlCom? ( name spCom )* nl (spNlCom | stmt | (exprW spCom)+ nl )*
Multiple assignments in the form of a table. The list of names are the headers with the fieldName to be assigned to. Each line of exprWs assigns the fields of one element of a collection. Each expression must overlap with exactly on name from the header. All expression are of kind = and cannot contain free spaces - however $-string constants with spaces are ok (e.g. $" "). The rest is similar to assAtt.
Lexicals
sConst = '$''' ((* noNl not '''' *) | '''''')* '''' | '$"' ((* noNl not '”' *) | '””')* '”'' '''' a string enclosed in single or double quotes, prefixed by a dollar. Inside, two quotes stand for a single one.
name = (* starting with a letter followed by any number of digits or letters, case sensitive! *) nl = (* newLine character(s) or record switch *)
noNl = (* one character not nl *)
sp = (* one space character ' ', tab etc., but not nl *)
noDo = (* one character neither '$' nor nl *)
noSla = (* one character neither '/' nor nl *)
noBr = (* one character neither in '{}=' nor nl *)
word = (* one or more characters of noBr but not space *)
textB = ( noBr+ | '{' textB '}' )*
textLns = spCom* (nl noNl* )*
comment = '$**' noNl* | '$*+' noNl* nl | '$*(' (comment | sConst | noNl | nl )* '$*)'
$** starts a comment until the last character before next nl,
spCom = sp | comment $*+ includes also the next nl (joins lines)
spNlCom = sp | nl | comment
litText = (* any number of any characters, newlines, etc. *)
uninterpreted text, with or without stopper, depending on the context
Uebersicht Spezialzeichen
name | symbol | Linux | wsh | rexx |
---|---|---|---|---|
escape to wsh | $ | Escape to wsh, variableMarker $var, output $$ | ||
comment | * | $**, $*+ or $*(....$*) | ||
piping | ||||
pipe | ! | | | stmt1 $| stmt2 | ... call pipe ... |
redirectOutput | > | output redirection $>... | call pipeLast '> fileName' | |
redirectInput | < | input redirection $<... | call pipeBegin '< fileName' | |
semicolon | ; | Statement separator in $; | call pipeBegin ... call pipeEnd | |
accessPath Ops | ||||
Subfeld | % | ${a%f1} | m.a.f1 | |
Referenz | ! | ${a!r1} über die Referenz im a%r1 | xx = m.a.r1; m.xx | |
Ref or Sub | . | ${a.x1} je nach DatenTyp a%x1 oder a!x1 | ||
expressions | ||||
value | - | expression in $(, $-[, $-{, $-comp..., | o2string | |
obj | . | expression in $(, $-[, $-{, $-comp..., | s2o, file, etc. | |
singleton | ! | ! $@[ $$ a ] | ||
isDefined | ? | in ${?a}: is variable defined? | envHasKey | |
StringDelimiter | " | $"..." | ||
StringDelimiter | ' | $'...' | ||
statements | ||||
assignment | = | $=var= ... | envPut, envPutO | |
run | @ | run block, call procedure, run object, $@for etc. | call ... | |
blocks | ||||
braceBlock | {...} | for variables ${a} or short blocks $-{1+1} | ||
bracketBlock | [...$] | |||
slashBlock | /name/ .... $/name/ | |||
fileSpecs | ||||
external spec | . | |||
user | ~ | ~.work.~ | dsn2jcl | |
attributes if new | : |