bell notificationshomepageloginNewPostedit profile

Topic : In a formal syntax notation, how should I indicate many optional elements? We use a BNF style to convey syntax for SQL statements. For a (fictitious) example: CREATE PARSER [schema.]function - selfpublishingguru.com

10.02% popularity

We use a BNF style to convey syntax for SQL statements. For a (fictitious) example:

CREATE PARSER [schema.]function
[WITH [LANGUAGE='language']
[, MODE='[FENCED | UNFENCED]'
[, STUFF='anotherParameter']
];

This means that you must specify a function name (with optional schema), and you may specify zero, one, two, or three other parameters. (Some of our statements have ten or more optional parameters.) This is the style we've been using for a while.

Strictly speaking, though, it's incorrect -- if you omitted LANGUAGE but wanted to specify MODE, this would tell you to write something like:

CREATE PARSER myFunctionName
WITH , MODE='FENCED';

...which isn't correct. That comma is a syntax error. Most readers can figure out what's meant, but it's a bit of s stumbling block for some.

Some of our super-precision-minded users have pointed out this problem, but they (and we) have not found a solution that preserves the overall style. Our users like the notation overall; it's just that we don't know what to do when everything in a clause can be optional. We considered something like this, but it's technically wrong in a different way as well as being ugly:

CREATE PARSER [schema.]function
[WITH [LANGUAGE='language']
[,] [MODE='[FENCED | UNFENCED]'
[,] [STUFF='anotherParameter']
];

After the syntax synopsis we include a table of parameters and arguments (name, description). We're therefore considering reducing the syntax synopsis to something like this:

CREATE PARSER [schema.]function
[WITH parameters];

We haven't tried that idea out on our users yet. Before we do, I'd like to find out about other options for presenting syntax information in an informative and correct way. We're not the first people to use this style of syntax but I haven't found examples of this situation to look at. What do others do?


Load Full (1)

Login to follow topic

More posts by @Turnbaugh521

1 Comments

Sorted by latest first Latest Oldest Best

10% popularity

Postgres tackles a similarish problem and uses ', ...' to indicate an expression is to be repeated separated by commas (e.g. www.postgresql.org/docs/9.5/static/sql-createfunction.html). So in their syntax you would write something like

CREATE PARSER [*schema*.]*function* [WITH
{ LANGUAGE='*language*'
| MODE='[FENCED|UNFENCED]'
| STUFF='*anotherParameter*'
} [, ...]
];

Now if the order of those statements is fixed, this solution does not quite work.


Load Full (0)

Back to top