Extension:External Data/Tag emulation mode
The tag emulation mode is used to declare a tag for a data source. It is most useful when a data source returns SVG rather than wikitext. The recommended way to use data emulation mode is with web connections to containerised multimedia applications, as described on the page about presets.
Below is a more complicated example using tag emulation mode:
// 'lilypond' will be the name under which this program can be invoked by {{#get_program_data:}}.
$wgExternalDataSources['lilypond'] = [
'name' => 'LilyPond', // (optional) the name of the program for Special:Version.
'program url' => 'http://lilypond.org/', // (optional) program home page for Special:Version.
'version command' => 'lilypond -v', // (optional) Shell comand that will return program version for Special:Version. The results are cached.
'version' => 'GNU LilyPond 2.20.0', // (optional) Explicitly set program version for Special:Version. Use only if $edgExeVersionCommand is not an option.
'limits' => [ 'memory' => 0, 'time' => 0, 'walltime' => 0, 'filesize' => 0 ], // (optional) Limits override for the program. Use with caution.
'env' => [ 'KEY' => 'value' ], // (optional) Environment variables for the program. Parameters will be substitued in the values as well as in the shell command itself.
'command' => 'lilypond -dbackend=svg -dpaper-size="$size$" -dsafe -dcrop -o $tmp$ -', // The shell command that receives user input as stdin and outputs its result as stdout (or into a temporary file). $size$ will be replaced with the value of the size argument to the parser function.
'params' => [ 'size' => 'a4' ], // Parameters to the parser function with their default values. If there is a numeric key, then the value is the name of a required parameter.
'param filters' => [ 'size' => '/^\w+$/' ], // Callables and regular expressions that are used to validate parameter values. Should be as restrictive as possible.
'input' => 'notes', // Name of the parser function parameter that will be sent to program's standard input.
'preprocess' => null, // (optional) A callable used to preprocess the standard input for the program. There are two pre-defined functions: EDConnectorExe::wikilinks4dot() and EDConnectorExe::wikilinks4uml().
'temp' => '$tmp$.cropped.svg', // (optional) Name of the temporary file used instead of standard output (not recommended).
'ignore warnings' => true, // (optional) Ignore warnings that a program may send to stderr.
'postprocess' => null, // (optional) A callable used to postprocess program's standard output. There is one pre-defined function EDConnectorExe::innerXML().
'tag' => 'score' // (optional) Bind the program to this tag to emulate the behaviour of some MediaWiki extensions (tag emulation mode).
];
Usage
editAfter a program is configured, it can be invoked in tag emulation mode: <score size="a5">\paper {
.
indent = 0\mm
line-width = 110\mm
oddHeaderMarkup = ""
evenHeaderMarkup = ""
oddFooterMarkup = ""
evenFooterMarkup = ""
}
\relative c' { f d f a d f e d cis a cis e a g f e e d c}</score>
This mode outputs raw unwikified data and is suitable for embedding SVG.
Parameters
editAll of the parsing-related parameters that #get_web_data supports (|format=
, |delimiter=
, |use xpath=
, etc.) can be used for #get_program_data as well; see Parsing data .
The caching-related parameters (|cache seconds=
and |use stale cache=
) and settings that #get_web_data supports can be used for #get_program_data as well; see Caching data .
So can be throttling configuration settings : 'throttle key'
and 'throttle interval'
.
Limitations
editDue to the way that Shell framework quotes each component of a shell command, piping cannot be used. A shell script should be created to wrap a pipeline.
Caution
editAlthough programs are run in a restricted environment by Shell::command()
, wiki admins should exercise great caution while configuring programs to make them callable with #get_program_data.
A set of tested examples can be found here and (with working output) here.