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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
<Chapter Label="Console User Interface">
<Heading>Console User Interface</Heading>
HPC-GAP has a multi-threaded user interface to assist with the development and debugging of concurrent programs. This
user interface is enabled by default; to disable it, and use the single-threaded interface, GAP has to be started with
the <C>-S</C> option.
<Section Label="Console UI commands">
<Heading>Console UI commands</Heading>
The console user interface provides the user with the option to control threads by commands prefixed with an exclamation
mark ("!"). Those commands are listed below.
<P/>
For ease of use, users only need to type as many letters of each commands so that it can be unambiguously selected.
Thus, the shell will recognize <C>!l</C> as an abbreviation for <C>!list</C>.
<Subsection Label="shell">
<Heading>!shell [name]</Heading>
Starts a new shell thread and switches to it. Optionally, a name for the thread can be provided.
<Example><![CDATA[
gap> !shell
--- Switching to thread 4
[4] gap>
]]></Example>
</Subsection>
<Subsection Label="fork">
<Heading>!fork [name]</Heading>
Starts a new background shell thread. Optionally, a name for the thread can be provided.
<Example><![CDATA[
gap> !fork
--- Created new thread 5
]]></Example>
</Subsection>
<Subsection Label="!list">
<Heading>!list</Heading>
List all current threads that are interacting with the user. This does not list threads created with
<C>CreateThread()</C> that have not entered a break loop.
<Example><![CDATA[
gap> !list
--- Thread 0 [0]
--- Thread 4 [4]
--- Thread 5 [5] (pending output)
]]></Example>
</Subsection>
<Subsection Label="kill"><Heading>!kill id</Heading>
Terminates the specified thread.
</Subsection>
<Subsection Label="break"><Heading>!break id</Heading>
Makes the specified thread enter a break loop.
</Subsection>
<Subsection Label="name"><Heading>!name [id] name</Heading>
Give the thread with the numerical identifier or name <C>id</C> the name <C>name</C>.
<Example><![CDATA[
gap> !name 5 test
gap> !list
--- Thread 0 [0]
--- Thread 4 [4]
--- Thread test [5] (pending output)
]]></Example>
</Subsection>
<Subsection Label="info">
<Heading>!info id</Heading>
Provide information about the thread with the numerical identifier or name <C>id</C>. <E>Not yet implemented</E>.
</Subsection>
<Subsection Label="hide">
<Heading>!hide [id|*]</Heading>
Hide output from the thread with the numerical identifier or name <C>id</C> when it is not the foreground thread. If
no thread is specified, make this the default behavior for future threads.
</Subsection>
<Subsection Label="watch">
<Heading>!watch [id|*]</Heading>
Show output from the thread with the numerical identifier or name <C>id</C> even when it is not the foreground thread.
If no thread is specified, make this the default behavior for future threads.
</Subsection>
<Subsection Label="keep">
<Heading>!keep num</Heading>
Keep <C>num</C> lines of output from each thread.
</Subsection>
<Subsection Label="prompt">
<Heading>!prompt (id|*) string</Heading>
Set the prompt for the specified thread (or for all newly created threads if <C>*</C> was specified) to be
<C>string</C>. If the string contains the pattern <C>id</C>, it is replaced with the numerical id of the thread; if
it contains the pattern <C>name</C>, it is replaced with the name of the thread; if the thread has no name, the
numerical id is displayed instead.
</Subsection>
<Subsection Label="prefix">
<Heading>!prefix (id|*) string</Heading>
Prefix the output from the specified thread (or for all newly created threads if <C>*</C> was specified) with
<C>string</C>. The same substitution rules as for the <C>!prompt</C> command apply.
</Subsection>
<Subsection Label="select">
<Heading>!select id</Heading>
Make the specified thread the foreground thread.
<Example><![CDATA[
gap> !select 4
gap> !select 4
--- Switching to thread 4
[4] gap>
]]></Example>
</Subsection>
<Subsection Label="next">
<Heading>!next</Heading>
Make the next thread in numerical order the foreground thread.
</Subsection>
<Subsection Label="previous">
<Heading>!previous</Heading>
Make the previous thread in numerical order the foreground thread.
</Subsection>
<Subsection Label="replay">
<Heading>!replay num [id]</Heading>
Display the last <C>num</C> lines of output of the specified thread. If no thread was specified, display the last
<C>num</C> lines of the current foreground thread.
</Subsection>
<Subsection Label="id">
<Heading>!id</Heading>
<C>!id</C> is a shortcut for <C>!select id</C>.
</Subsection>
<Subsection Label="source">
<Heading>!source file</Heading>
Read commands from file <C>file</C>.
</Subsection>
<Subsection Label="alias">
<Heading>!alias shortcut expansion</Heading>
Create an alias. After defining the alias, <C>!shortcut 'rest of line'</C> will be replaced with <C>!expansion 'rest of line'</C>.
</Subsection>
<Subsection Label="unalias">
<Heading>!unalias shortcut</Heading>
Removes the specified alias.
</Subsection>
<Subsection Label="eval"><Heading>!eval expr</Heading>
Evaluates <C>expr</C> as a command.
</Subsection>
<Subsection Label="run">
<Heading>!run function string</Heading>
Calls the function with name <C>function</C>, passing it the single argument <C>string</C> as a GAP string.
</Subsection>
</Section>
<Section Label="GAP functions to access the Shell UI">
<Heading>GAP functions to access the Shell UI</Heading>
There are several functions to access the basic functionality of the shell user interface. Other than <Ref
Func="TextUIRegisterCommand"/>, they can only be called from within a registered command.
<P/>
Threads can be specified either by their numerical identifier or by their name (as a string). The empty string can be
used to specify the current foreground thread.
<ManSection>
<Func Name="TextUIRegisterCommand"
Arg='name, func'/>
<Description>
Registers the command <C>!name</C> with the shell UI. It will call <func> with the rest of the command line passed
as a string argument when typed.
</Description>
</ManSection>
<ManSection>
<Func Name="TextUIForegroundThread"
Arg=''/>
<Description>
Returns the numerical identifier of the current foreground thread.
</Description>
</ManSection>
<ManSection>
<Func Name="TextUIForegroundThreadName"
Arg=''/>
<Description>
Returns the name of the current foreground thread or <K>fail</K> if the current foreground thread has no name.
</Description>
</ManSection>
<ManSection>
<Func Name="TextUISelectThread"
Arg='id'/>
<Description>
Makes <A>id</A> the current foreground thread. Returns <K>true</K> or <K>false</K> to indicate success.
</Description>
</ManSection>
<ManSection>
<Func Name="TextUIOutputHistory" Arg='id, count'/>
<Description>
Returns the last <A>count</A> lines of the thread specified by <A>id</A> (which can be a numerical identifier or a
name). Returns <K>fail</K> if there is no such thread.
</Description>
</ManSection>
<ManSection>
<Func Name="TextUISetOutputHistoryLength"
Arg='length'/>
<Description>
By default, retain <A>length</A> lines of output history from each thread.
</Description>
</ManSection>
<ManSection>
<Func Name="TextUINewSession"
Arg='foreground, name'/>
<Description>
Creates a new shell thread. Here, <A>foreground</A> is a boolean variable specifying whether it should be made the new
foreground thread and <A>name</A> is the name of the thread. The empty string can be used to leave the thread without a
name.
</Description>
</ManSection>
<ManSection>
<Func Name="TextUIRunCommand"
Arg='command'/>
<Description>
Run the command denoted by <A>command</A> as though a user had typed it. The command must not contain a newline
character.
</Description>
</ManSection>
<ManSection>
<Func Name="TextUIWritePrompt" Arg=''/>
<Description>
Display a prompt for the current thread.
</Description>
</ManSection>
</Section>
</Chapter>
|