Scripts also have their own tab in the web interface, which allows you to create and run the TCL scripts directly on the gateway. As shown on the picture, there is statistics about the heap and the storage used by scripts. as well as helper icons </> and #. The </>, when you hover over it, shows build in language helps. And the # shows all variables currently in heap with their values.
Language syntax
Tcl script is made up of commands separated by semicolons or newline symbols. Commands in their turn are made up of words separated by whitespace. To make whitespace a part of the word one may use double quotes or braces.An important part of the language is command substitution, when the result of a command inside square braces is returned as a part of the outer command, e.g. puts [+ 1 2] performs addition of 1 + 2 and passes the result to puts.
Currently the only data type of the language is a string. Even numbers are stored in string format and converted to numeric types when needed.
- whitespace, tab - used to delimit words
- \r, \n, semicolon or EOF - used to delimit commands
- Braces, square brackets, dollar sign - used for substitution and grouping
Interpreter
Partcl interpreter is a simple structure which keeps the current environment, array of available commands and a last result value. Interpreter logic is wrapped around two functions - evaluation and substitution.Substitution:
- If argument starts with $ - create a temporary command [set name] and evaluate it. In Tcl $foo is just a shortcut to [set foo], which returns the value of "foo" variable in the current environment.
- If argument starts with [ - evaluate what's inside the square brackets and return the result.
- If argument is a quoted string (e.g. {foo bar}) - return it as is, just without braces.
- Otherwise return the argument as is.
- Iterates over each token in a list.
- Appends words into a list.
- If the command end is met (semicolor, or newline, or end-of-file - our lexer has a special token type TCMD for them) - then find a suitable command (the first word in the list) and call it.
Builtin commands
- "set" - assigns value to the variable (if any) and returns the current variable value.
- "subst" - does command substitution in the argument string.
- "puts" - prints argument to the tcl_stdout buffer, followed by a newline
- "proc" - creates a new command appending it to the list of current interpreter commands. That's how user-defined commands are built.
- "if" - does a simple if {cond} {then} {cond2} {then2} {else}.
- "while" - runs a while loop while {cond} {body}. One may use "break", "continue" or "return" inside the loop to contol the flow.
- Various math operations are implemented like: !, +, -, *, /, >, >=, <, <=, ==, !=, &&, ||.
- "string" - performs simple string manipulation, like"compare" and "length".
- "clock" - allows time and date manipulation, like "seconds", "format" and "add".