/usr/share/gap/lib/process.gi is in gap-libs 4r6p5-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 | #############################################################################
##
#W process.gi GAP Library Frank Celler
##
#Y Copyright (C) 1996, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
#Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
#Y Copyright (C) 2002 The GAP Group
##
## This file contains the methods for process.
##
#############################################################################
##
#M Process( <dir>, <prg>, <in-none>, <out-none>, <args> ) . . . . none/none
##
InstallMethod( Process,
[ IsDirectory and IsDirectoryRep,
IsString,
IsInputTextNone,
IsOutputTextNone,
IsList ],
function( dir, prg, input, output, args )
# get the directory path
dir := dir![1];
# convert the args
args := List( args, String );
# check path and program
if not IsDirectoryPath(dir) then
Error( "directory <dir> does not exist" );
fi;
if not IsExecutableFile(prg) then
Error( "program <prg> does not exist" );
fi;
# execute the process
return ExecuteProcess( dir, prg, -1, -1, args );
end );
#############################################################################
##
#M Process( <dir>, <prg>, <in-text>, <out-none>, <args> ) . . . . file/none
##
InstallMethod( Process,
[ IsDirectory and IsDirectoryRep,
IsString,
IsInputTextStream and IsInputTextFileRep,
IsOutputTextNone,
IsList ],
function( dir, prg, input, output, args )
# get the directory path
dir := dir![1];
# convert the args
args := List( args, String );
# check path and program
if not IsDirectoryPath(dir) then
Error( "directory <dir> does not exist" );
fi;
if not IsExecutableFile(prg) then
Error( "program <prg> does not exist" );
fi;
# execute the process
return ExecuteProcess( dir, prg, input![1], -1, args );
end );
#############################################################################
##
#M Process( <dir>, <prg>, <in-none>, <out-text>, <args> ) . . . . none/file
##
InstallMethod( Process,
[ IsDirectory and IsDirectoryRep,
IsString,
IsInputTextNone,
IsOutputTextStream and IsOutputTextFileRep,
IsList ],
function( dir, prg, input, output, args )
# get the directory path
dir := dir![1];
# convert the args
args := List( args, String );
# check path and program
if not IsDirectoryPath(dir) then
Error( "directory <dir> does not exist" );
fi;
if not IsExecutableFile(prg) then
Error( "program <prg> does not exist" );
fi;
# execute the process
return ExecuteProcess( dir, prg, -1, output![1], args );
end );
#############################################################################
##
#M Process( <dir>, <prg>, <in-text>, <out-text>, <args> ) . . . . file/file
##
EXECUTE_PROCESS_FILE_STREAM := function( dir, prg, input, output, args )
# get the directory path
dir := dir![1];
# convert the args
args := List( args, String );
# check path and program
if not IsDirectoryPath(dir) then
Error( "directory <dir> does not exist" );
fi;
if IsExecutableFile(prg) <> true then
Error( "program <prg> does not exist or is not executable" );
fi;
# execute the process
return ExecuteProcess( dir, prg, input![1], output![1], args );
end;
InstallMethod( Process,
[ IsDirectory and IsDirectoryRep,
IsString,
IsInputTextStream and IsInputTextFileRep,
IsOutputTextStream and IsOutputTextFileRep,
IsList ],
EXECUTE_PROCESS_FILE_STREAM );
#############################################################################
##
#M Process( <dir>, <prg>, <input>, <output>, <args> ) . . . . stream/stream
##
PROCESS_INPUT_TEMPORARY := fail;
PROCESS_OUTPUT_TEMPORARY := fail;
InstallMethod( Process,
[ IsDirectory and IsDirectoryRep,
IsString,
IsInputTextStream,
IsOutputTextStream,
IsList ],
function( dir, prg, input, output, args )
local name_input, new, name_output, res, new_output, alloutput,allinput;
# convert input into a file
if not IsInputTextFileRep(input) then
if (IsString(PROCESS_INPUT_TEMPORARY) and
(IsReadableFile(PROCESS_INPUT_TEMPORARY) or
IsWritableFile(PROCESS_INPUT_TEMPORARY))) then
PROCESS_INPUT_TEMPORARY:=fail;
fi;
while PROCESS_INPUT_TEMPORARY = fail do
PROCESS_INPUT_TEMPORARY := TmpNameAllArchs();
od;
name_input := PROCESS_INPUT_TEMPORARY;
new := OutputTextFile( name_input, true );
allinput := ReadAll(input);
if allinput= fail then
allinput := "";
fi;
WriteAll( new, allinput );
CloseStream(new);
input := InputTextFile( name_input );
fi;
# convert output into a file
if not IsOutputTextFileRep(output) then
if (IsString(PROCESS_OUTPUT_TEMPORARY) and
(IsReadableFile(PROCESS_OUTPUT_TEMPORARY) or
IsWritableFile(PROCESS_OUTPUT_TEMPORARY))) then
PROCESS_OUTPUT_TEMPORARY:=fail;
fi;
while PROCESS_OUTPUT_TEMPORARY = fail do
PROCESS_OUTPUT_TEMPORARY := TmpNameAllArchs();
od;
name_output := PROCESS_OUTPUT_TEMPORARY;
new_output := OutputTextFile( name_output, true );
else
new_output := output;
fi;
# call the process
res := EXECUTE_PROCESS_FILE_STREAM( dir, prg, input, new_output, args );
# remove temporary file
if IsBound(name_input) then
CloseStream(input);
RemoveFile(name_input);
fi;
if IsBound(name_output) then
CloseStream(new_output);
new := InputTextFile(name_output);
alloutput := ReadAll(new);
CloseStream(new);
RemoveFile(name_output);
if alloutput <> fail then
WriteAll( output, alloutput );
fi;
fi;
# return result of process
return res;
end );
#############################################################################
##
#F TmpNameAllArchs( )
##
InstallGlobalFunction( TmpNameAllArchs, function( )
local filename, a;
filename := TmpName( );
if ARCH_IS_WINDOWS( ) then
# replace leading /tmp/ by C:/WINDOWS/Temp/
a := SplitString(filename, "/");
a := a[Length(a)]; # is "/tmp/gaptempfile.kS4uyj", get rid of /tmp/ bit
filename := Concatenation("C:/WINDOWS/Temp/", a);
fi;
return filename;
end);
#############################################################################
##
#F ShortFileNameWindows( <name> )
##
InstallGlobalFunction( ShortFileNameWindows, function( name )
local new, a, s, suff, change, p, ns, i, j;
new:="";
# take care of heading drive letter
if Length(name)>2 and name[2]=':' and (name[1] in CHARS_UALPHA or name[1]
in CHARS_LALPHA) then
new:=name{[1..2]};
name:=name{[3..Length(name)]};
fi;
a:=0;
for i in [1..Length(name)+1] do
if i>Length(name) or name[i] in "\\/" then
s:=UppercaseString(name{[a+1..i-1]});
a:=i;
suff:="";
change:=false;
if i>Length(name) then
# last `.' in file name
p:=First([Length(s),Length(s)-1..1],x->s[x]='.');
if p<>fail then
if p+3<Length(s) then
change:=true;
fi;
suff:=Concatenation(".",s{[p+1..Minimum(p+3,Length(s))]});
s:=s{[1..p-1]};
fi;
fi;
# strip s of illegal characters and convert
ns:="";
for j in s do
if j in " ." then
change:=true;
elif j in "\"*:<>?|" then
change:=true;
Add(ns,'_');
else
Add(ns,j);
fi;
od;
s:=ns;
if change or Length(s)>8 then
#T The ~1 is not completely correct, it could be another number. A
#T problem however is unlikely in practice
s:=Concatenation(s{[1..Minimum(6,Length(s))]},"~1");
fi;
Append(new,s);
Append(new,suff);
# keep \/
if i<=Length(name) then
Add(new,name[i]);
fi;
fi;
od;
return new;
end);
#############################################################################
##
#F Exec( <str_1>, <str_2>, ..., <str_n> ) . . . . . . . . execute a command
##
InstallGlobalFunction( Exec, function( arg )
local cmd, i, shell, cs, dir;
# simply concatenate the arguments
cmd := ShallowCopy( arg[1] );
if not IsString(cmd) then
Error("the command ",cmd," is not a name.\n",
"possibly a binary is missing or has not been compiled.");
fi;
for i in [ 2 .. Length(arg) ] do
Append( cmd, " " );
Append( cmd, arg[i] );
od;
# select the shell, bourne shell is the default: sh -c cmd
if ARCH_IS_WINDOWS() then
# on Windows, we use the native shell such that behaviour does
# not depend on whether cygwin is installed or not.
# cmd.exe is preferrable to old-style `command.com'
shell := Filename( DirectoriesSystemPrograms(), "cmd.exe" );
cs := "/C";
else
shell := Filename( DirectoriesSystemPrograms(), "sh" );
cs := "-c";
fi;
# execute in the current directory
dir := DirectoryCurrent();
# execute the command
Process( dir, shell, InputTextUser(), OutputTextUser(), [ cs, cmd ] );
end );
#############################################################################
##
#F LoadWorkspace(<fnmam>)
##
InstallGlobalFunction(LoadWorkspace,function(fnam)
local stream, line, p, q;
# test whether `fnam' is a loadable workspace
if IsString(fnam) then
if fnam[1]='~' then
Error(
"Tilde expansion to denote home directories is not supported for workspaces");
fi;
stream:=InputTextFile(fnam);
if stream<>fail then
line:=ReadLine(stream);
if line<>fail and Length(line)>=13 and line{[1..13]}="GAP workspace" then
# it seems to be a bona fide workspace
CloseStream(stream);
line:=ShallowCopy(GAPInfo.CommandLineArguments);
# remove previous `-L' argument
p:=PositionSublist(line,"-L ");
if p<>fail then
q:=p+3;
while q<=Length(line) and line[q]=' ' do
q:=q+1;
od;
while q<=Length(line) and line[q]<>' ' do
q:=q+1;
od;
if q<=Length(line) then
line:=Concatenation(line{[1..p-1]},line{[q..Length(line)]});
else
line:=line{[1..p-1]};
fi;
fi;
line:=Concatenation(line," -L ",fnam," ");
Print("... Loading workspace ...\n");
#Print("calling : RESTART_GAP(\"",line,"\")\n");
RESTART_GAP(line);
fi;
CloseStream(stream);
fi;
fi;
Error("<fnam> must be the name of an existing workspace file");
end);
#############################################################################
##
#F Restart([<cmd>])
##
InstallGlobalFunction(Restart,function(arg)
local cmd, line, p, q;
if Length(arg)>0 then
cmd:=arg[1];
else
cmd:="";
fi;
line:=ShallowCopy(GAPInfo.CommandLineArguments);
# remove previous `-L' argument
p:=PositionSublist(line,"-L ");
if p<>fail then
q:=p+3;
while q<=Length(line) and line[q]=' ' do
q:=q+1;
od;
while q<=Length(line) and line[q]<>' ' do
q:=q+1;
od;
if q<=Length(line) then
line:=Concatenation(line{[1..p-1]},line{[q..Length(line)]});
else
line:=line{[1..p-1]};
fi;
fi;
line:=Concatenation(line," ",cmd);
Print("... Restarting GAP ...\n");
Print(">gap4 ",line,"\n");
RESTART_GAP(line);
end);
#############################################################################
##
#E
|