/usr/include/gap/sysfiles.h is in gap-dev 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 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 | /****************************************************************************
**
*W sysfiles.h GAP source Frank Celler
*W & Martin Schönert
*W & Burkhard Höfling (MAC)
**
**
*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
**
** The file 'system.c' declares all operating system dependent functions
** except file/stream handling which is done in "sysfiles.h".
*/
#ifndef GAP_SYSFILES_H
#define GAP_SYSFILES_H
#ifndef SYS_STDIO_H /* standard input/output functions */
# include <stdio.h>
# define SYS_STDIO_H
#endif
/****************************************************************************
**
*F * * * * * * * * * * * * * * dynamic loading * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F SyFindOrLinkGapRootFile( <filename>, <crc>, <res> ) . . . . load or link
**
** 'SyFindOrLinkGapRootFile' tries to find a GAP file in the root area and
** check if there is a corresponding statically or dynamically linked
** module. If the CRC matches this module is loaded otherwise the filename
** is returned.
**
** The function returns:
**
** 0: no file or module was found
** 1: if a dynamically linked module was found
** 2: if a statically linked module was found
** 3: a GAP file was found
** 4: a GAP file was found and the CRC value didn't match
*/
typedef union {
Char pathname[256];
StructInitInfo * module_info;
} TypGRF_Data;
extern Int SyFindOrLinkGapRootFile (
const Char * filename,
Int4 crc_gap,
TypGRF_Data * result );
/****************************************************************************
**
*F SyGAPCRC( <name> ) . . . . . . . . . . . . . . . . . . crc of a GAP file
**
** This function should be clever and handle white spaces and comments but
** one has to certain that such characters are not ignored in strings.
*/
extern Int4 SyGAPCRC(
const Char * name );
/****************************************************************************
**
*F SyLoadModule( <name> ) . . . . . . . . . . . . . load a compiled module
*/
extern InitInfoFunc SyLoadModule(
const Char * name );
/****************************************************************************
**
*F * * * * * * * * * * * * * * * window handler * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F syWinPut( <fid>, <cmd>, <str> ) . . . . send a line to the window handler
**
** 'syWinPut' send the command <cmd> and the string <str> to the window
** handler associated with the file identifier <fid>. In the string <str>
** '@' characters are duplicated, and control characters are converted to
** '@<chr>', e.g., <newline> is converted to '@J'.
*/
extern void syWinPut (
Int fid,
const Char * cmd,
const Char * str );
/****************************************************************************
**
*F SyWinCmd( <str>, <len> ) . . . . . . . . . . . . . execute a window cmd
**
** 'SyWinCmd' send the command <str> to the window handler (<len> is
** ignored). In the string <str> '@' characters are duplicated, and control
** characters are converted to '@<chr>', e.g., <newline> is converted to
** '@J'. Then 'SyWinCmd' waits for the window handlers answer and returns
** that string.
*/
extern Char * SyWinCmd (
const Char * str,
UInt len );
/****************************************************************************
**
*F * * * * * * * * * * * * * * * * open/close * * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*V syBuf . . . . . . . . . . . . . . buffer and other info for files, local
**
** 'syBuf' is a array used as buffers for file I/O to prevent the C I/O
** routines from allocating their buffers using 'malloc', which would
** otherwise confuse Gasman.
*/
typedef struct {
int fp; /* file descriptor for this file */
int echo; /* file descriptor for the echo */
UInt pipe; /* file is really a pipe */
FILE *pipehandle; /* for pipes we need to remember the file handle */
UInt ateof; /* set to 1 by any read operation that hits eof
reset to 0 by a subsequent successful read */
UInt crlast; /* records that last character read was \r for
cygwin and othger systems that need end-of-line
hackery */
Int bufno; /* if non-negative then this file has a buffer in
syBuffers[bufno]; If negative, this file may not
be buffered */
UInt isTTY; /* set in Fopen when this fid is a *stdin* or *errin*
and really is a tty*/
} SYS_SY_BUF;
#define SYS_FILE_BUF_SIZE 20000
typedef struct {
Char buf[SYS_FILE_BUF_SIZE];
UInt inuse;
UInt bufstart;
UInt buflen;
} SYS_SY_BUFFER;
extern SYS_SY_BUF syBuf [256];
extern SYS_SY_BUFFER syBuffers[32];
extern UInt SySetBuffering( UInt fid );
/****************************************************************************
**
*F SyFileno( <fid> ) . . . . . . . . . . . . . . get operating system fileno
*/
#define SyFileno(fid) (fid==-1?-1:syBuf[fid].fp)
/****************************************************************************
**
*F SyFopen( <name>, <mode> ) . . . . . . . . open the file with name <name>
**
** The function 'SyFopen' is called to open the file with the name <name>.
** If <mode> is "r" it is opened for reading, in this case it must exist.
** If <mode> is "w" it is opened for writing, it is created if neccessary.
** If <mode> is "a" it is opened for appending, i.e., it is not truncated.
**
** 'SyFopen' returns an integer used by the scanner to identify the file.
** 'SyFopen' returns -1 if it cannot open the file.
**
** The following standard files names and file identifiers are guaranteed:
** 'SyFopen( "*stdin*", "r")' returns 0 identifying the standard input file.
** 'SyFopen( "*stdout*","w")' returns 1 identifying the standard outpt file.
** 'SyFopen( "*errin*", "r")' returns 2 identifying the brk loop input file.
** 'SyFopen( "*errout*","w")' returns 3 identifying the error messages file.
**
** If it is necessary to adjust the filename this should be done here.
** Right now GAP does not read nonascii files, but if this changes sometimes
** 'SyFopen' must adjust the mode argument to open the file in binary mode.
*/
extern Int SyFopen (
const Char * name,
const Char * mode );
/****************************************************************************
**
*F SyFclose( <fid> ) . . . . . . . . . . . . . . . . . close the file <fid>
**
** 'SyFclose' closes the file with the identifier <fid> which is obtained
** from 'SyFopen'.
*/
extern Int SyFclose (
Int fid );
/****************************************************************************
**
*F SyIsEndOfFile( <fid> ) . . . . . . . . . . . . . . . end of file reached
*/
extern Int SyIsEndOfFile (
Int fid );
/****************************************************************************
**
*F SyFgets( <line>, <lenght>, <fid> ) . . . . . get a line from file <fid>
**
** 'SyFgets' is called to read a line from the file with identifier <fid>.
** 'SyFgets' (like 'fgets') reads characters until either <length>-1 chars
** have been read or until a <newline> or an <eof> character is encoutered.
** It retains the '\n' (unlike 'gets'), if any, and appends '\0' to <line>.
** 'SyFgets' returns <line> if any char has been read, otherwise '(char*)0'.
**
** 'SyFgets' allows to edit the input line if the file <fid> refers to a
** terminal with the following commands:
**
** <ctr>-A move the cursor to the beginning of the line.
** <esc>-B move the cursor to the beginning of the previous word.
** <ctr>-B move the cursor backward one character.
** <ctr>-F move the cursor forward one character.
** <esc>-F move the cursor to the end of the next word.
** <ctr>-E move the cursor to the end of the line.
**
** <ctr>-H, <del> delete the character left of the cursor.
** <ctr>-D delete the character under the cursor.
** <ctr>-K delete up to the end of the line.
** <esc>-D delete forward to the end of the next word.
** <esc>-<del> delete backward to the beginning of the last word.
** <ctr>-X delete entire input line, and discard all pending input.
** <ctr>-Y insert (yank) a just killed text.
**
** <ctr>-T exchange (twiddle) current and previous character.
** <esc>-U uppercase next word.
** <esc>-L lowercase next word.
** <esc>-C capitalize next word.
**
** <tab> complete the identifier before the cursor.
** <ctr>-L insert last input line before current character.
** <ctr>-P redisplay the last input line, another <ctr>-P will redisplay
** the line before that, etc. If the cursor is not in the first
** column only the lines starting with the string to the left of
** the cursor are taken. The history is limitied to ~8000 chars.
** <ctr>-N Like <ctr>-P but goes the other way round through the history
** <esc>-< goes to the beginning of the history.
** <esc>-> goes to the end of the history.
** <ctr>-O accept this line and perform a <ctr>-N.
**
** <ctr>-V enter next character literally.
** <ctr>-U execute the next command 4 times.
** <esc>-<num> execute the next command <num> times.
** <esc>-<ctr>-L repaint input line.
**
** Not yet implemented commands:
**
** <ctr>-S search interactive for a string forward.
** <ctr>-R search interactive for a string backward.
** <esc>-Y replace yanked string with previously killed text.
** <ctr>-_ undo a command.
** <esc>-T exchange two words.
*/
#if HAVE_SELECT
extern Obj OnCharReadHookActive; /* if bound the hook is active */
extern Obj OnCharReadHookInFds; /* a list of UNIX file descriptors */
extern Obj OnCharReadHookInFuncs; /* a list of GAP functions */
extern Obj OnCharReadHookOutFds; /* a list of UNIX file descriptors */
extern Obj OnCharReadHookOutFuncs;/* a list of GAP functions with 0 args */
extern Obj OnCharReadHookExcFds; /* a list of UNIX file descriptors */
extern Obj OnCharReadHookExcFuncs;/* a list of GAP functions with 0 args */
#endif
extern Char * SyFgets (
Char * line,
UInt length,
Int fid );
/****************************************************************************
**
*F SyFputs( <line>, <fid> ) . . . . . . . . write a line to the file <fid>
**
** 'SyFputs' is called to put the <line> to the file identified by <fid>.
*/
extern void SyFputs (
const Char * line,
Int fid );
/****************************************************************************
**
*F SyIsIntr() . . . . . . . . . . . . . . . . check wether user hit <ctr>-C
**
** 'SyIsIntr' is called from the evaluator at regular intervals to check
** wether the user hit '<ctr>-C' to interrupt a computation.
**
** 'SyIsIntr' returns 1 if the user typed '<ctr>-C' and 0 otherwise.
*/
extern void SyInstallAnswerIntr ( void );
extern UInt SyIsIntr ( void );
/****************************************************************************
**
*F * * * * * * * * * * * * * * * * * output * * * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F SyEchoch( <ch>, <fid> ) . . . . . . . . . . . echo a char to <fid>, local
*/
extern Int SyEchoch (
Int ch,
Int fid );
/****************************************************************************
**
*F * * * * * * * * * * * * * * * * * input * * * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F SyFtell( <fid> ) . . . . . . . . . . . . . . . . . . position of stream
*/
extern Int SyFtell (
Int fid );
/****************************************************************************
**
*F SyFseek( <fid>, <pos> ) . . . . . . . . . . . seek a position of stream
*/
extern Int SyFseek (
Int fid,
Int pos );
/****************************************************************************
**
*F SyGetch( <fid> ) . . . . . . . . . . . . . . . . . get a char from <fid>
**
** 'SyGetch' reads a character from <fid>, which is switch to raw mode if it
** is *stdin* or *errin*.
*/
extern Int SyGetch (
Int fid );
/****************************************************************************
**
*F SyGetc( <fid> ). . . . . . . . . . . . . . . . . . get a char from <fid>
**
** 'SyGetc' reads a character from <fid>, without any translation or
** interference
*/
extern Int SyGetc
(
Int fid );
/****************************************************************************
**
*F SyPutc( <fid>, <char> ).. . . . . . . . . . . . . . . put a char to <fid>
**
** 'SyPutc' writes a character to <fid>, without any translation or
** interference
*/
extern Int SyPutc
(
Int fid,
Char c );
/****************************************************************************
**
*F * * * * * * * * * * * * system error messages * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*V SyLastMacErrorNo . . . . . . . . . . . . . .last error number, Macintosh
*/
/****************************************************************************
**
*V SyLastErrorNo . . . . . . . . . . . . . . . . . . . . . last error number
*/
extern Int SyLastErrorNo;
/****************************************************************************
**
*V SyLastErrorMessage . . . . . . . . . . . . . . . . . last error message
*/
extern Char SyLastErrorMessage [ 1024 ];
/****************************************************************************
**
*F SyClearErrorNo() . . . . . . . . . . . . . . . . . clear error messages
*/
extern void SyClearErrorNo ( void );
/****************************************************************************
**
*F SySetErrorNo() . . . . . . . . . . . . . . . . . . . . set error message
*/
extern void SySetErrorNo ( void );
/****************************************************************************
**
*F * * * * * * * * * * * * * file and execution * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F SyExecuteProcess( <dir>, <prg>, <in>, <out>, <args> ) . . . . new process
**
** Start <prg> in directory <dir> with standard input connected to <in>,
** standard output connected to <out> and arguments. No path search is
** performed, the return value of the process is returned if the operation
** system supports such a concept.
*/
extern UInt SyExecuteProcess (
Char * dir,
Char * prg,
Int in,
Int out,
Char * args[] );
/****************************************************************************
**
*F SyIsExistingFile( <name> ) . . . . . . . . . . . does file <name> exists
**
** 'SyIsExistingFile' returns 1 if the file <name> exists and 0 otherwise.
** It does not check if the file is readable, writable or excuteable. <name>
** is a system dependent description of the file.
*/
extern Int SyIsExistingFile(
const Char * name );
/****************************************************************************
**
*F SyIsReadableFile( <name> ) . . . . . . . . . . . is file <name> readable
**
** 'SyIsReadableFile' returns 1 if the file <name> is readable and 0
** otherwise. <name> is a system dependent description of the file.
*/
extern Int SyIsReadableFile(
const Char * name );
/****************************************************************************
**
*F SyIsWritable( <name> ) . . . . . . . . . . . is the file <name> writable
**
** 'SyIsWriteableFile' returns 1 if the file <name> is writable and 0
** otherwise. <name> is a system dependent description of the file.
*/
extern Int SyIsWritableFile(
const Char * name );
/****************************************************************************
**
*F SyIsExecutableFile( <name> ) . . . . . . . . . is file <name> executable
**
** 'SyIsExecutableFile' returns 1 if the file <name> is executable and 0
** otherwise. <name> is a system dependent description of the file.
*/
extern Int SyIsExecutableFile(
const Char * name );
/****************************************************************************
**
*F SyIsDirectoryPath( <name> ) . . . . . . . . . is file <name> a directory
**
** 'SyIsDirectoryPath' returns 1 if the file <name> is a directory and 0
** otherwise. <name> is a system dependent description of the file.
*/
extern Int SyIsDirectoryPath (
const Char * name );
/****************************************************************************
**
*F SyRemoveFile( <name> ) . . . . . . . . . . . . . . . remove file <name>
*/
extern Int SyRemoveFile (
const Char * name );
/****************************************************************************
**
*F SyMkDir( <name> ) . . . . . . . . . . . . . . . remove file <name>
*/
extern Int SyMkdir (
const Char * name );
/****************************************************************************
**
*F SyRmdir( <name> ) . . . . . . . . . . . . . . . remove directory <name>
*/
extern Int SyRmdir (
const Char * name );
/****************************************************************************
**
*F SyIsDir( <name> ) . . . . . . . . . . . . . test if something is a dir
**
** Returns 'F' for a regular file, 'L' for a symbolic link and 'D'
** for a real directory, 'C' for a character device, 'B' for a block
** device 'P' for a FIFO (named pipe) and 'S' for a socket.
*/
extern Obj SyIsDir (
const Char * name );
/****************************************************************************
**
*F SyFindGapRootFile( <filename> ) . . . . . . . . find file in system area
*/
extern Char * SyFindGapRootFile (
const Char * filename );
/****************************************************************************
**
*F * * * * * * * * * * * * * * * directories * * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F SyTmpname() . . . . . . . . . . . . . . . . . return a temporary filename
**
** 'SyTmpname' creates and returns a new temporary name.
*/
extern Char * SyTmpname ( void );
/****************************************************************************
**
*F SyTmpdir( <hint> ) . . . . . . . . . . . . return a temporary directory
**
** 'SyTmpdir' returns the directory for a temporary directory. This is
** guaranteed to be newly created and empty immediately after the call to
** 'SyTmpdir'. <hint> should be used by 'SyTmpdir' to construct the name of
** the directory (but 'SyTmpdir' is free to use only a part of <hint>), and
** must be a string of at most 8 alphanumerical characters. Under UNIX this
** would usually represent '/usr/tmp/<hint>_<proc_id>_<cnt>/', e.g.,
** '/usr/tmp/guava_17188_1/'.
*/
extern Char * SyTmpdir ( const Char * hint );
/****************************************************************************
**
*F void getwindowsize( void ) . probe the OS for the window size and
** set SyNrRows and SyNrCols accordingly
*/
extern void getwindowsize( void );
extern void InterruptExecStat ( void );
/***************************************************************************
**
*F HasAvailableBytes( <fid> ) returns positive if a subsequent read to <fid>
** will read at least one byte without blocking
*/
extern Int HasAvailableBytes( UInt fid );
extern Char *SyFgetsSemiBlock (
Char * line,
UInt length,
Int fid);
/***************************************************************************
**
*F SyWinPut( <fid>, <cmd>, <str> ) . . . . send a line to the window handler
**
** 'syWinPut' send the command <cmd> and the string <str> to the window
** handler associated with the file identifier <fid>. In the string <str>
** '@' characters are duplicated, and control characters are converted to
** '@<chr>', e.g., <newline> is converted to '@J'.
*/
extern void syWinPut (
Int fid,
const Char * cmd,
const Char * str );
/****************************************************************************
**
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F InitInfoSysFiles() . . . . . . . . . . . . . . . table of init functions
*/
StructInitInfo * InitInfoSysFiles ( void );
#endif // GAP_SYSFILES_H
/****************************************************************************
**
*E sysfiles.h . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
*/
|