grammar::fa::dexec(n) | Finite automaton operations and usage | grammar::fa::dexec(n) |
grammar::fa::dexec - Execute deterministic finite automatons
package require Tcl 8.4
package require snit
package require grammar::fa::dexec ?0.2?
::grammar::fa::dexec daName fa ?-any any? ?-command cmdprefix?
daName option ?arg arg ...?
daName destroy
daName put symbol
daName reset
daName state
cmdprefix error code message
cmdprefix final stateid
cmdprefix reset
cmdprefix state stateid
This package provides a class for executors constructed from deterministic finite automatons (DFA). Executors are objects which are given a string of symbols in a piecemal fashion, perform state transitions and report back when they enter a final state, or find an error in the input. For the actual creation of the DFAs the executors are based on we have the packages grammar::fa and grammar::fa::op.
The objects follow a push model. Symbols are pushed into the executor, and when something important happens, i.e. error occurs, a state transition, or a final state is entered this will be reported via the callback specified via the option -command. Note that conversion of this into a pull model where the environment retrieves messages from the object and the object uses a callback to ask for more symbols is a trivial thing.
Side note: The acceptor objects provided by grammar::fa::dacceptor could have been implemented on top of the executors provided here, but were not, to get a bit more performance (we avoid a number of method calls and the time required for their dispatch).
The package exports the API described here.
The executor will be based on the deterministic finite automaton stored in the object fa. It will keep a copy of the relevant data of the FA in its own storage, in a form easy to use for its purposes. This also means that changes made to the fa after the construction of the executor will not influence the executor.
If any has been specified, then the executor will convert all symbols in the input which are unknown to the base FA to that symbol before proceeding with the processing.
All executors provide the following methods for their manipulation:
When an error is reported all further invokations of put will do nothing, until the error condition has been cleared via an invokation of method reset.
The callback command cmdprefix given to an executor via the option -command will be executed by the object at the global level, using the syntax described below. Note that cmdprefix is not simply the name of a command, but a full command prefix. In other words it may contain additional fixed argument words beyond the command word.
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category grammar_fa of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation.
automaton, execution, finite automaton, grammar, parsing, regular expression, regular grammar, regular languages, running, state, transducer
Grammars and finite automata
Copyright (c) 2004 Andreas Kupries <andreas_kupries@users.sourceforge.net> Copyright (c) 2007 Bogdan <rftghost@users.sourceforge.net>
0.2 | grammar_fa |