-
Notifications
You must be signed in to change notification settings - Fork 5
/
syntax.php
243 lines (225 loc) · 8.94 KB
/
syntax.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?php
/**
* Command Line Interface (CLI) Plugin
* Typeset transcripts of interactive sessions with mimumum effort.
* Syntax:
* <cli prompt="$ " continue="> " comment="#">
* user@host:~/somedir $ ls \
* > # List directory
* file1 file2
* </cli>
* prompt --- [optional] prompt character used. '$ ' is default - note the space.
* comment --- [optional] comment character used. '#' is default - note no space.
* continue --- [optional] regex of shell continuation '/^> /' is the default.
* The defaults above match Bourne shell ${PS1} and ${PS2} prompts and comment
*
* Acknowledgements:
* Borrows heavily from the boxes plugin!
* Support for continuation added by Andy Webber
* Improved parsing added by Stephane Chazelas
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Chris P. Jobling <[email protected]>
*/
if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'syntax.php');
/**
* All DokuWiki plugins to extend the parser/rendering mechanism
* need to inherit from this class
*/
class syntax_plugin_cli extends DokuWiki_Syntax_Plugin {
var $prompt_str = '$ ';
var $prompt_cont = '/^> /'; // this is a regex
var $prompt_continues = false;
var $comment_str = '#';
/**
* return some info
*/
function getInfo(){
return array(
'author' => 'Chris P. Jobling; Stephan Chazelas; Andy Webber',
'email' => '[email protected]',
'date' => '2008-13-02',
'name' => 'Command Line Interface (CLI) Plugin',
'desc' => 'Renders transcripts of command line interactions, e.g. for shell and dynamic language interpretor tutorials',
'url' => 'http://eehope.swan.ac.uk/dokuwiki/plugins:cli',
);
}
/**
* What kind of syntax are we?
*/
function getType(){
return 'protected';
}
/**
* What kind of syntax do we allow (optional)
*/
// function getAllowedTypes() {
// return array();
// }
// override default accepts() method to allow nesting
// - ie, to get the plugin accepts its own entry syntax
function accepts($mode) {
if ($mode == substr(get_class($this), 7)) return true;
return parent::accepts($mode);
}
/**
* What about paragraphs? (optional)
*/
function getPType(){
return 'block';
}
/**
* Where to sort in?
*/
function getSort(){
return 601;
}
/**
* Connect pattern to lexer
*/
function connectTo($mode) {
$this->Lexer->addEntryPattern('<cli(?:[)]?' .
'"(?:\\\\.|[^\\\\"])*"' . /* double-quoted string */
'|\'(?:\\\\.|[^\'\\\\])*\'' . /* single-quoted string */
'|\\\\.' . /* escaped character */
'|[^\'"\\\\>]|[(?:])*>\r?\n?(?=.*?</cli>)',$mode,'plugin_cli');
/*
* The [)]? and |[(?:] is to work around a bug in lexer.php
* wrt nested (...)
*/
}
function postConnect() {
$this->Lexer->addExitPattern('\r?\n?</cli>','plugin_cli');
}
/**
* Handle the match
*/
function handle($match, $state, $pos, &$handler){
switch ($state) {
case DOKU_LEXER_ENTER :
$args = substr($match, 4, -1);
return array($state, $args);
case DOKU_LEXER_MATCHED :
break;
case DOKU_LEXER_UNMATCHED :
return array($state, $match);
case DOKU_LEXER_EXIT :
return array($state, '');
case DOKU_LEXER_SPECIAL :
break;
}
return array();
}
/**
* Create output
*/
function render($mode, &$renderer, $data) {
if($mode == 'xhtml'){
list($state, $match) = $data;
switch ($state) {
case DOKU_LEXER_ENTER :
$args = $match;
$this->_process_args($args);
$renderer->doc .= '<pre class="cli">';
break;
case DOKU_LEXER_UNMATCHED :
$this->_render_conversation($match, $renderer);
break;
case DOKU_LEXER_EXIT :
$renderer->doc .= "</pre>";
break;
}
return true;
}
return false;
}
function _extract($args, $param) {
/*
* extracts value from $args for $param
* xxx = "foo\"bar" -> foo"bar
* xxx = a\ b -> a b
* xxx = 'a\' b' -> a' b
*
* returns null if value is empty.
*/
if (preg_match("/$param" . '\s*=\s*(' .
'"(?:\\\\.|[^\\\\"])*"' . /* double-quoted string */
'|\'(?:\\\\.|[^\'\\\\])*\'' . /* single-quoted string */
'|(?:\\\\.|[^\\\\\s])*' . /* escaped characters */
')/', $args, $matches)) {
switch (substr($matches[1], 0, 1)) {
case "'":
$result = substr($matches[1], 1, -1);
$result = preg_replace('/\\\\([\'\\\\])/', '$1', $result);
break;
case '"':
$result = substr($matches[1], 1, -1);
$result = preg_replace('/\\\\(["\\\\])/', '$1', $result);
break;
default:
$result = preg_replace('/\\\\(.)/', '$1', $matches[1]);
}
if ($result != "")
return $result;
}
}
function _process_args($args) {
// process args to CLI tag: sets $comment_str and $prompt_str
if (!is_null($prompt = $this->_extract($args, 'prompt')))
$this->prompt_str = $prompt;
if (!is_null($comment = $this->_extract($args, 'comment')))
$this->comment_str = $comment;
}
function _render_conversation($match, &$renderer) {
$prompt_continues = false;
$lines = preg_split('/\n\r|\n|\r/',$match);
if ( trim($lines[0]) == "" ) unset( $lines[0] );
if ( trim($lines[count($lines)]) == "" ) unset( $lines[count($lines)] );
foreach ($lines as $line) {
$index = strpos($line, $this->prompt_str);
if ($index === false) {
if ($this->prompt_continues) {
if (preg_match($this->prompt_cont, $line, $promptc) === 0) $this->prompt_continues = false;
}
if ($this->prompt_continues) {
// format prompt
$renderer->doc .= '<span class="cli_prompt">' . $renderer->_xmlEntities($promptc[0]) . "</span>";
// Split line into command + optional comment (only end-of-line comments supported)
$command = preg_split($this->prompt_cont, $line);
$commands = explode($this->comment_str, $command[1]);
// Render command
$renderer->doc .= '<span class="cli_command">' . $renderer->_xmlEntities($commands[0]) . "</span>";
// Render comment if there is one
if ($commands[1]) {
$renderer->doc .= '<span class="cli_comment">' .
$renderer->_xmlEntities($this->comment_str . $commands[1]) . "</span>";
}
$renderer->doc .= DOKU_LF;
} else {
// render as output
$renderer->doc .= '<span class="cli_output">' . $renderer->_xmlEntities($line) . "</span>" . DOKU_LF;
$this->prompt_continues=false;
}
} else {
$this->prompt_continues = true;
// format prompt
$prompt = substr($line, 0, $index) . $this->prompt_str;
$renderer->doc .= '<span class="cli_prompt">' . $renderer->_xmlEntities($prompt) . "</span>";
// Split line into command + optional comment (only end-of-line comments supported)
$commands = explode($this->comment_str, substr($line, $index + strlen($this->prompt_str)));
// Render command
$renderer->doc .= '<span class="cli_command">' . $renderer->_xmlEntities($commands[0]) . "</span>";
// Render comment if there is one
if ($commands[1]) {
$renderer->doc .= '<span class="cli_comment">' .
$renderer->_xmlEntities($this->comment_str . $commands[1]) . "</span>";
}
$renderer->doc .= DOKU_LF;
}
}
}
}
//Setup VIM: ex: et ts=4 enc=utf-8 sw=4 :
?>