forked from gap-system/gap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gap.c
1538 lines (1334 loc) · 43.9 KB
/
gap.c
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
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/****************************************************************************
**
** This file is part of GAP, a system for computational discrete algebra.
**
** Copyright of GAP belongs to its developers, whose names are too numerous
** to list here. Please refer to the COPYRIGHT file for details.
**
** SPDX-License-Identifier: GPL-2.0-or-later
**
** This file contains the various read-eval-print loops and related stuff.
*/
#include "gap.h"
#include "ariths.h"
#include "bool.h"
#include "calls.h"
#include "compiler.h"
#include "error.h"
#include "funcs.h"
#include "gapstate.h"
#ifdef USE_GASMAN
#include "gasman_intern.h"
#endif
#include "gaptime.h"
#include "gvars.h"
#include "integer.h"
#include "io.h"
#include "lists.h"
#include "modules.h"
#include "plist.h"
#include "precord.h"
#include "read.h"
#include "records.h"
#include "saveload.h"
#include "streams.h"
#include "stringobj.h"
#include "sysenv.h"
#include "sysfiles.h"
#include "sysopt.h"
#include "sysroots.h"
#include "sysstr.h"
#include "trycatch.h"
#include "vars.h"
#include "version.h"
#ifdef HPCGAP
#include "hpc/cpu.h"
#include "hpc/misc.h"
#include "hpc/thread.h"
#include "hpc/threadapi.h"
#endif
#if defined(USE_GASMAN)
#include "sysmem.h"
#elif defined(USE_JULIA_GC)
#include "julia.h"
#elif defined(USE_BOEHM_GC)
#include "boehm_gc.h"
#endif
#include "config.h"
#include <gmp.h>
static Obj Error;
static UInt SystemErrorCode;
/****************************************************************************
**
*V Last . . . . . . . . . . . . . . . . . . . . . . global variable 'last'
**
** 'Last', 'Last2', and 'Last3' are the global variables 'last', 'last2',
** and 'last3', which are automatically assigned the result values in the
** main read-eval-print loop.
*/
static UInt Last;
/****************************************************************************
**
*V Last2 . . . . . . . . . . . . . . . . . . . . . . global variable 'last2'
*/
static UInt Last2;
/****************************************************************************
**
*V Last3 . . . . . . . . . . . . . . . . . . . . . . global variable 'last3'
*/
static UInt Last3;
/****************************************************************************
**
*V Time . . . . . . . . . . . . . . . . . . . . . . global variable 'time'
**
** 'Time' is the global variable 'time', which is automatically assigned the
** time the last command took.
*/
static UInt Time;
/****************************************************************************
**
*V MemoryAllocated . . . . . . . . . . . global variable 'memory_allocated'
**
** 'MemoryAllocated' is the global variable 'memory_allocated',
** which is automatically assigned the amount of memory allocated while
** executing the last command.
*/
static UInt MemoryAllocated;
#ifndef HPCGAP
GAPState MainGAPState;
#endif
/****************************************************************************
**
*F ViewObjHandler . . . . . . . . . handler to view object and catch errors
**
** This is the function actually called in Read-Eval-View loops.
** We might be in trouble if the library has not (yet) loaded and so ViewObj
** is not yet defined, or the fallback methods not yet installed. To avoid
** this problem, we check, and use PrintObj if there is a problem
**
** This function also supplies the \n after viewing.
*/
UInt ViewObjGVar;
void ViewObjHandler ( Obj obj )
{
// save some values in case view runs into error
volatile Bag currLVars = STATE(CurrLVars);
// if non-zero use this function, otherwise use `PrintObj'
GAP_TRY {
Obj func = ValAutoGVar(ViewObjGVar);
if ( func != 0 && TNUM_OBJ(func) == T_FUNCTION ) {
ViewObj(obj);
}
else {
PrintObj( obj );
}
Pr("\n", 0, 0);
GAP_ASSERT(currLVars == STATE(CurrLVars));
}
GAP_CATCH {
SWITCH_TO_OLD_LVARS(currLVars);
}
}
/****************************************************************************
**
*F main( <argc>, <argv> ) . . . . . . . main program, read-eval-print loop
*/
static UInt QUITTINGGVar;
static Obj FuncSHELL(Obj self,
Obj context,
Obj canReturnVoid,
Obj canReturnObj,
Obj breakLoop,
Obj prompt,
Obj preCommandHook)
{
//
// validate all arguments
//
if (!IS_LVARS_OR_HVARS(context))
RequireArgument(SELF_NAME, context, "must be a local variables bag");
RequireTrueOrFalse(SELF_NAME, canReturnVoid);
RequireTrueOrFalse(SELF_NAME, canReturnObj);
RequireTrueOrFalse(SELF_NAME, breakLoop);
RequireStringRep(SELF_NAME, prompt);
if (GET_LEN_STRING(prompt) > 80)
ErrorMayQuit("SHELL: <prompt> must be a string of length at most 80",
0, 0);
if (preCommandHook == False)
preCommandHook = 0;
else if (!IS_FUNC(preCommandHook))
RequireArgument(SELF_NAME, preCommandHook,
"must be function or false");
//
// open input and output streams
//
const Char * inFile;
const Char * outFile;
if (breakLoop == True) {
inFile = "*errin*";
outFile = "*errout*";
}
#ifdef HPCGAP
else if (ThreadUI) {
inFile = "*defin*";
outFile = "*defout*";
}
#endif
else {
inFile = "*stdin*";
outFile = "*stdout*";
}
TypOutputFile output;
if (!OpenOutput(&output, outFile, FALSE))
ErrorQuit("SHELL: can't open outfile %s", (Int)outFile, 0);
TypInputFile input;
if (!OpenInput(&input, inFile)) {
CloseOutput(&output);
ErrorQuit("SHELL: can't open infile %s", (Int)inFile, 0);
}
//
// save some state
//
Int oldErrorLLevel = STATE(ErrorLLevel);
Int oldRecursionDepth = GetRecursionDepth();
UInt oldPrintObjState = SetPrintObjState(0);
//
// return values of ReadEvalCommand
//
ExecStatus status;
Obj evalResult;
//
// start the REPL (read-eval-print loop)
//
STATE(ErrorLLevel) = 0;
while (1) {
UInt time = 0;
UInt8 mem = 0;
// start the stopwatch
if (breakLoop == False) {
time = SyTime();
mem = SizeAllBags;
}
// read and evaluate one command
SetPrompt(CONST_CSTR_STRING(prompt));
SetPrintObjState(0);
ResetOutputIndent();
SetRecursionDepth(0);
// here is a hook:
if (preCommandHook) {
Call0ArgsInNewReader(preCommandHook);
// Recover from a potential break loop:
SetPrompt(CONST_CSTR_STRING(prompt));
}
// update ErrorLVars based on ErrorLLevel
//
// It is slightly wasteful to do this every time, but that's OK since
// this code is only used for interactive input, and the time it takes
// a user to press the return key is something like a thousand times
// greater than the time it takes to execute this loop.
Int depth = STATE(ErrorLLevel);
Obj errorLVars = context;
STATE(ErrorLLevel) = 0;
while (0 < depth && !IsBottomLVars(errorLVars) &&
!IsBottomLVars(PARENT_LVARS(errorLVars))) {
errorLVars = PARENT_LVARS(errorLVars);
STATE(ErrorLLevel)++;
depth--;
}
STATE(ErrorLVars) = errorLVars;
// read and evaluate one command (statement or expression)
BOOL dualSemicolon;
status =
ReadEvalCommand(errorLVars, &input, &evalResult, &dualSemicolon);
// if the input we just processed *indirectly* executed a `QUIT` statement
// (e.g. by reading a file via `READ`) then bail out
if (STATE(UserHasQUIT))
break;
// if the statement we just processed itself was `QUIT`, also bail out
if (status == STATUS_QQUIT) {
STATE(UserHasQUIT) = TRUE;
break;
}
// handle ordinary command
if (status == STATUS_END && evalResult != 0) {
UpdateLast(evalResult);
if (!dualSemicolon) {
ViewObjHandler(evalResult);
}
}
// handle return-value or return-void command
else if (status == STATUS_RETURN && evalResult != 0) {
if (canReturnObj == True)
break;
Pr("'return <object>' cannot be used in this read-eval-print "
"loop\n",
0, 0);
}
else if (status == STATUS_RETURN && evalResult == 0) {
if (canReturnVoid == True)
break;
Pr("'return' cannot be used in this read-eval-print loop\n", 0,
0);
}
// handle quit command or <end-of-file>
else if (status == STATUS_EOF || status == STATUS_QUIT) {
break;
}
// stop the stopwatch
if (breakLoop == False) {
UpdateTime(time);
AssGVarWithoutReadOnlyCheck(MemoryAllocated,
ObjInt_Int8(SizeAllBags - mem));
}
if (STATE(UserHasQuit)) {
// If we get here, then some code invoked indirectly by the
// command we just processed was aborted via `quit` (most likely:
// `quit` was entered in a break loop). Stop processing any
// further input in the current line of input. Thus if the input
// is `f(); g();` and executing `f()` triggers a break loop that
// the user aborts via `quit`, then we won't try to execute `g()`
// anymore.
//
// So in a sense we are (ab)using `UserHasQuit` to see if an error
// occurred.
FlushRestOfInputLine(&input);
STATE(UserHasQuit) = FALSE;
}
}
//
// cleanup: restore state, close input/output streams
//
SetPrintObjState(oldPrintObjState);
SetRecursionDepth(oldRecursionDepth);
STATE(ErrorLLevel) = oldErrorLLevel;
CloseInput(&input);
CloseOutput(&output);
//
// handle QUIT
//
if (STATE(UserHasQUIT)) {
// If we are in a break loop, throw so that the next higher up
// read&eval loop can process the QUIT
if (breakLoop == True)
GAP_THROW();
// If we are the topmost REPL, then indicating we are QUITing to the
// GAP language level, and simply end the loop. This implicitly
// assumes that the only places using SHELL() are the primary REPL and
// break loops.
STATE(UserHasQuit) = FALSE;
STATE(UserHasQUIT) = FALSE;
AssGVarWithoutReadOnlyCheck(QUITTINGGVar, True);
return Fail;
}
//
// handle the remaining status codes; note that `STATUS_QQUIT` is handled
// above, as part of the `UserHasQUIT` handling
//
if (status == STATUS_EOF || status == STATUS_QUIT) {
return Fail;
}
if (status == STATUS_RETURN) {
return evalResult ? NewPlistFromArgs(evalResult) : NewEmptyPlist();
}
Panic("SHELL: unhandled status %d, this code should never be reached",
(int)status);
return (Obj)0;
}
int realmain( int argc, char * argv[] )
{
UInt type; // result of compile
Obj func; // function (compiler)
Int4 crc; // crc of file to compile
// initialize everything and read init.g which runs the GAP session
InitializeGap( &argc, argv, 1 );
if (!STATE(UserHasQUIT)) { /* maybe the user QUIT from the initial
read of init.g somehow*/
// maybe compile in which case init.g got skipped
if ( SyCompilePlease ) {
TypInputFile input;
if ( ! OpenInput(&input, SyCompileInput) ) {
return 1;
}
func = READ_AS_FUNC(&input);
if (!CloseInput(&input)) {
return 2;
}
crc = SyGAPCRC(SyCompileInput);
type = CompileFunc(
MakeImmString(SyCompileOutput),
func,
MakeImmString(SyCompileName),
crc,
MakeImmString(SyCompileMagic1) );
return ( type == 0 ) ? 1 : 0;
}
}
return SystemErrorCode;
}
/****************************************************************************
**
*F FuncID_FUNC( <self>, <val1> ) . . . . . . . . . . . . . . . return <val1>
*/
static Obj FuncID_FUNC(Obj self, Obj val1)
{
return val1;
}
/****************************************************************************
**
*F FuncRETURN_FIRST( <self>, <args> ) . . . . . . . . Return first argument
*/
static Obj FuncRETURN_FIRST(Obj self, Obj args)
{
if (!IS_PLIST(args) || LEN_PLIST(args) < 1)
ErrorMayQuit("RETURN_FIRST requires one or more arguments",0,0);
return ELM_PLIST(args, 1);
}
/****************************************************************************
**
*F FuncRETURN_NOTHING( <self>, <arg> ) . . . . . . . . . . . Return nothing
*/
static Obj FuncRETURN_NOTHING(Obj self, Obj arg)
{
return 0;
}
/****************************************************************************
**
*F FuncSizeScreen( <self>, <args> ) . . . . internal function 'SizeScreen'
**
** 'FuncSizeScreen' implements the internal function 'SizeScreen' to get
** or set the actual screen size.
**
** 'SizeScreen()'
**
** In this form 'SizeScreen' returns the size of the screen as a list with
** two entries. The first is the length of each line, the second is the
** number of lines.
**
** 'SizeScreen( [ <x>, <y> ] )'
**
** In this form 'SizeScreen' sets the size of the screen. <x> is the length
** of each line, <y> is the number of lines. Either value may be missing,
** to leave this value unaffected. Note that those parameters can also be
** set with the command line options '-x <x>' and '-y <y>'.
*/
static Obj FuncSizeScreen(Obj self, Obj args)
{
Obj size; // argument and result list
Obj elm; // one entry from size
UInt len; // length of lines on the screen
UInt nr; // number of lines on the screen
RequireSmallList(SELF_NAME, args);
if (1 < LEN_LIST(args)) {
ErrorMayQuit("SizeScreen: number of arguments must be 0 or 1 (not %d)",
LEN_LIST(args), 0);
}
// get the arguments
if ( LEN_LIST(args) == 0 ) {
size = NEW_PLIST( T_PLIST, 0 );
}
// otherwise check the argument
else {
size = ELM_LIST( args, 1 );
if (!IS_SMALL_LIST(size) || 2 < LEN_LIST(size)) {
ErrorMayQuit("SizeScreen: <size> must be a list of length at most 2",
0, 0);
}
}
// extract the length
if ( LEN_LIST(size) < 1 || ELM0_LIST(size,1) == 0 ) {
len = 0;
}
else {
elm = ELMW_LIST(size,1);
len = GetSmallIntEx(SELF_NAME, elm, "<x>");
if ( len < 20 ) len = 20;
if ( MAXLENOUTPUTLINE < len ) len = MAXLENOUTPUTLINE;
}
// extract the number
elm = ELM0_LIST(size, 2);
if ( elm == 0 ) {
nr = 0;
}
else {
nr = GetSmallIntEx(SELF_NAME, elm, "<y>");
if ( nr < 10 ) nr = 10;
}
// set length and number
if (len != 0)
{
SyNrCols = len;
SyNrColsLocked = 1;
}
if (nr != 0)
{
SyNrRows = nr;
SyNrRowsLocked = 1;
}
// make and return the size of the screen
size = NEW_PLIST( T_PLIST, 2 );
PushPlist(size, ObjInt_UInt(SyNrCols));
PushPlist(size, ObjInt_UInt(SyNrRows));
return size;
}
/****************************************************************************
**
*F FuncWindowCmd( <self>, <args> ) . . . . . . . . execute a window command
*/
static Obj WindowCmdString;
static Obj FuncWindowCmd(Obj self, Obj args)
{
Obj tmp;
Obj list;
Int len;
Int n, m;
Int i;
Char * ptr;
const Char * inptr;
const Char * qtr;
RequireSmallList(SELF_NAME, args);
tmp = ELM_LIST(args, 1);
if (!IsStringConv(tmp)) {
RequireArgumentEx(SELF_NAME, tmp, "<cmd>", "must be a string");
}
if ( 3 != LEN_LIST(tmp) ) {
ErrorMayQuit("WindowCmd: <cmd> must be a string of length 3", 0, 0);
}
// compute size needed to store argument string
len = 13;
for ( i = 2; i <= LEN_LIST(args); i++ )
{
tmp = ELM_LIST( args, i );
if (!IS_INTOBJ(tmp) && !IsStringConv(tmp)) {
ErrorMayQuit("WindowCmd: the argument in position %d must be a "
"string or integer (not a %s)",
i, (Int)TNAM_OBJ(tmp));
SET_ELM_PLIST(args, i, tmp);
}
if ( IS_INTOBJ(tmp) )
len += 12;
else
len += 12 + LEN_LIST(tmp);
}
if ( SIZE_OBJ(WindowCmdString) <= len ) {
ResizeBag( WindowCmdString, 2*len+1 );
}
// convert <args> into an argument string
ptr = (Char*) CSTR_STRING(WindowCmdString);
// first the command name
memcpy( ptr, CONST_CSTR_STRING( ELM_LIST(args,1) ), 3 + 1 );
ptr += 3;
// and now the arguments
for ( i = 2; i <= LEN_LIST(args); i++ )
{
tmp = ELM_LIST(args,i);
if ( IS_INTOBJ(tmp) ) {
*ptr++ = 'I';
m = INT_INTOBJ(tmp);
for ( m = (m<0)?-m:m; 0 < m; m /= 10 )
*ptr++ = (m%10) + '0';
if ( INT_INTOBJ(tmp) < 0 )
*ptr++ = '-';
else
*ptr++ = '+';
}
else {
*ptr++ = 'S';
m = LEN_LIST(tmp);
for ( ; 0 < m; m/= 10 )
*ptr++ = (m%10) + '0';
*ptr++ = '+';
qtr = CONST_CSTR_STRING(tmp);
for ( m = LEN_LIST(tmp); 0 < m; m-- )
*ptr++ = *qtr++;
}
}
*ptr = 0;
// now call the window front end with the argument string
qtr = CONST_CSTR_STRING(WindowCmdString);
inptr = SyWinCmd( qtr, strlen(qtr) );
len = strlen(inptr);
// now convert result back into a list
list = NEW_PLIST( T_PLIST, 11 );
i = 1;
while ( 0 < len ) {
if ( *inptr == 'I' ) {
inptr++;
for ( n=0,m=1; '0' <= *inptr && *inptr <= '9'; inptr++,m *= 10,len-- )
n += (*inptr-'0') * m;
if ( *inptr++ == '-' )
n *= -1;
len -= 2;
AssPlist( list, i, INTOBJ_INT(n) );
}
else if ( *inptr == 'S' ) {
inptr++;
for ( n=0,m=1; '0' <= *inptr && *inptr <= '9'; inptr++,m *= 10,len-- )
n += (*inptr-'0') * m;
inptr++; // ignore the '+'
tmp = MakeImmStringWithLen(inptr, n);
inptr += n;
len -= n+2;
AssPlist( list, i, tmp );
}
else {
ErrorQuit( "unknown return value '%s'", (Int)inptr, 0 );
}
i++;
}
// if the first entry is one signal an error
if ( ELM_LIST(list,1) == INTOBJ_INT(1) ) {
tmp = MakeString("window system: ");
SET_ELM_PLIST(list, 1, tmp);
SET_LEN_PLIST(list, i - 1);
return CALL_XARGS(Error, list);
}
else {
for ( m = 1; m <= i-2; m++ )
SET_ELM_PLIST( list, m, ELM_PLIST(list,m+1) );
SET_LEN_PLIST( list, i-2 );
return list;
}
}
/****************************************************************************
**
*F * * * * * * * * * * * * * * debug functions * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F FuncGASMAN( <self>, <args> ) . . . . . . . . . expert function 'GASMAN'
**
** 'FuncGASMAN' implements the internal function 'GASMAN'
**
** 'GASMAN( "display" | "clear" | "collect" | "message" | "partial" )'
*/
static Obj FuncGASMAN(Obj self, Obj args)
{
if ( ! IS_SMALL_LIST(args) || LEN_LIST(args) == 0 ) {
ErrorMayQuit(
"usage: GASMAN( \"display\"|\"displayshort\"|\"clear\"|\"collect\"|\"message\"|\"partial\" )",
0, 0);
}
// loop over the arguments
for ( UInt i = 1; i <= LEN_LIST(args); i++ ) {
// evaluate and check the command
Obj cmd = ELM_PLIST( args, i );
RequireStringRep(SELF_NAME, cmd);
// perform full garbage collection
if (streq(CONST_CSTR_STRING(cmd), "collect")) {
CollectBags(0,1);
}
// perform partial garbage collection
else if (streq(CONST_CSTR_STRING(cmd), "partial")) {
CollectBags(0,0);
}
#if !defined(USE_GASMAN)
else {
ErrorMayQuit("GASMAN: <cmd> must be \"collect\" or \"partial\"",
0, 0);
}
#else
// if request display the statistics
else if (streq(CONST_CSTR_STRING(cmd), "display")) {
#ifdef COUNT_BAGS
Pr("%40s ", (Int)"type", 0);
Pr( "%8s %8s ", (Int)"alive", (Int)"kbyte" );
Pr( "%8s %8s\n", (Int)"total", (Int)"kbyte" );
for ( UInt k = 0; k < NUM_TYPES; k++ ) {
if ( TNAM_TNUM(k) != 0 ) {
Char buf[41];
buf[0] = '\0';
gap_strlcat( buf, TNAM_TNUM(k), sizeof(buf) );
Pr("%40s ", (Int)buf, 0);
Pr("%8d %8d ", (Int)InfoBags[k].nrLive,
(Int)(InfoBags[k].sizeLive/1024));
Pr("%8d %8d\n",(Int)InfoBags[k].nrAll,
(Int)(InfoBags[k].sizeAll/1024));
}
}
#endif
}
// if request give a short display of the statistics
else if (streq(CONST_CSTR_STRING(cmd), "displayshort")) {
#ifdef COUNT_BAGS
Pr("%40s ", (Int)"type", 0);
Pr( "%8s %8s ", (Int)"alive", (Int)"kbyte" );
Pr( "%8s %8s\n", (Int)"total", (Int)"kbyte" );
for ( UInt k = 0; k < NUM_TYPES; k++ ) {
if ( TNAM_TNUM(k) != 0 &&
(InfoBags[k].nrLive != 0 ||
InfoBags[k].sizeLive != 0 ||
InfoBags[k].nrAll != 0 ||
InfoBags[k].sizeAll != 0) ) {
Char buf[41];
buf[0] = '\0';
gap_strlcat( buf, TNAM_TNUM(k), sizeof(buf) );
Pr("%40s ", (Int)buf, 0);
Pr("%8d %8d ", (Int)InfoBags[k].nrLive,
(Int)(InfoBags[k].sizeLive/1024));
Pr("%8d %8d\n",(Int)InfoBags[k].nrAll,
(Int)(InfoBags[k].sizeAll/1024));
}
}
#endif
}
// if request display the statistics
else if (streq(CONST_CSTR_STRING(cmd), "clear")) {
#ifdef COUNT_BAGS
for ( UInt k = 0; k < NUM_TYPES; k++ ) {
#ifdef GASMAN_CLEAR_TO_LIVE
InfoBags[k].nrAll = InfoBags[k].nrLive;
InfoBags[k].sizeAll = InfoBags[k].sizeLive;
#else
InfoBags[k].nrAll = 0;
InfoBags[k].sizeAll = 0;
#endif
}
#endif
}
// or display information about global bags
else if (streq(CONST_CSTR_STRING(cmd), "global")) {
for ( i = 0; i < GlobalBags.nr; i++ ) {
Bag bag = *(GlobalBags.addr[i]);
if (bag != 0) {
const UInt sz = ((Int)bag & 3) ? 0 : SIZE_BAG(bag);
Pr("%50s: %12d bytes\n", (Int)GlobalBags.cookie[i], sz);
}
else {
Pr("%50s: not allocated\n", (Int)GlobalBags.cookie[i], 0);
}
}
}
// or finally toggle Gasman messages
else if (streq(CONST_CSTR_STRING(cmd), "message")) {
SyMsgsFlagBags = (SyMsgsFlagBags + 1) % 3;
}
// otherwise complain
else {
ErrorMayQuit("GASMAN: <cmd> must be "
"\"display\" or \"clear\" or \"global\" or "
"\"collect\" or \"partial\" or \"message\"", 0, 0);
}
#endif // USE_GASMAN
}
return 0;
}
#ifdef USE_GASMAN
static Obj FuncGASMAN_STATS(Obj self)
{
Obj res;
Obj row;
UInt i,j;
Int x;
res = NEW_PLIST_IMM(T_PLIST_TAB_RECT, 2);
SET_LEN_PLIST(res, 2);
for (i = 1; i <= 2; i++)
{
row = NEW_PLIST_IMM(T_PLIST_CYC, 9);
SET_ELM_PLIST(res, i, row);
CHANGED_BAG(res);
SET_LEN_PLIST(row, 9);
for (j = 1; j <= 8; j++)
{
x = SyGasmanNumbers[i-1][j];
SET_ELM_PLIST(row, j, ObjInt_Int(x));
}
SET_ELM_PLIST(row, 9, INTOBJ_INT(SyGasmanNumbers[i-1][0]));
}
return res;
}
static Obj FuncGASMAN_MESSAGE_STATUS(Obj self)
{
return ObjInt_UInt(SyMsgsFlagBags);
}
#endif
static Obj FuncGASMAN_LIMITS(Obj self)
{
Obj list;
list = NEW_PLIST_IMM(T_PLIST_CYC, 3);
#ifdef USE_GASMAN
AssPlist(list, 1, ObjInt_Int(SyStorMin));
AssPlist(list, 2, ObjInt_Int(SyStorMax));
#endif
#if defined(USE_GASMAN) || defined(USE_BOEHM_GC)
AssPlist(list, 3, ObjInt_Int(SyStorKill));
#endif
return list;
}
#ifdef GAP_MEM_CHECK
static Obj FuncGASMAN_MEM_CHECK(Obj self, Obj newval)
{
EnableMemCheck = INT_INTOBJ(newval);
return 0;
}
#endif
static Obj FuncTOTAL_GC_TIME(Obj self)
{
return ObjInt_UInt8(TotalGCTime());
}
/****************************************************************************
**
*F FuncTotalMemoryAllocated( <self> ) .expert function 'TotalMemoryAllocated'
*/
static Obj FuncTotalMemoryAllocated(Obj self)
{
return ObjInt_UInt8(SizeAllBags);
}
/****************************************************************************
**
*F FuncSIZE_OBJ( <self>, <obj> ) . . . . expert function 'SIZE_OBJ'
**
** 'SIZE_OBJ( <obj> )' returns 0 for immediate objects, and otherwise
** returns the bag size of the object. This does not include the size of
** sub-objects.
*/
static Obj FuncSIZE_OBJ(Obj self, Obj obj)
{
if (IS_INTOBJ(obj) || IS_FFE(obj))
return INTOBJ_INT(0);
return ObjInt_UInt(SIZE_OBJ(obj));
}
/****************************************************************************
**
*F FuncTNUM_OBJ( <self>, <obj> ) . . . . . . . . expert function 'TNUM_OBJ'
*/
static Obj FuncTNUM_OBJ(Obj self, Obj obj)
{
return INTOBJ_INT(TNUM_OBJ(obj));
}
/****************************************************************************
**
*F FuncTNAM_OBJ( <self>, <obj> ) . . . . . . . . expert function 'TNAM_OBJ'
*/
static Obj FuncTNAM_OBJ(Obj self, Obj obj)
{
return MakeImmString(TNAM_OBJ(obj));
}
/****************************************************************************
**
*F FuncOBJ_HANDLE( <self>, <handle> ) . . . . . expert function 'OBJ_HANDLE'
*/
static Obj FuncOBJ_HANDLE(Obj self, Obj handle)
{
if (handle != INTOBJ_INT(0) && !IS_POS_INT(handle))
RequireArgument(SELF_NAME, handle, "must be a non-negative integer");
return (Obj)UInt_ObjInt(handle);
}
/****************************************************************************
**
*F FuncHANDLE_OBJ( <self>, <obj> ) . . . . . . expert function 'HANDLE_OBJ'
**
** This is a very quick function which returns a unique integer for each
** object non-identical objects will have different handles. The integers
** may be large.
*/
static Obj FuncHANDLE_OBJ(Obj self, Obj obj)
{
return ObjInt_UInt((UInt) obj);
}
/* This function does quite a similar job to HANDLE_OBJ, but (a) returns 0
for all immediate objects (small integers or ffes) and (b) returns reasonably
small results (roughly in the range from 1 to the max number of objects that
have existed in this session. In HPC-GAP it returns almost the same value as
HANDLE_OBJ for non-immediate objects, but divided by sizeof(Obj), which gets
rid of a few zero bits and thus increases the chance of the result value
fitting into an immediate integer. */
static Obj FuncMASTER_POINTER_NUMBER(Obj self, Obj o)
{
if (IS_INTOBJ(o) || IS_FFE(o)) {
return INTOBJ_INT(0);
}
#ifdef USE_GASMAN
return ObjInt_UInt(MASTER_POINTER_NUMBER(o));
#else
return ObjInt_UInt((UInt)o / sizeof(Obj));
#endif
}
// Common code in the next 3 methods.
static int SetExitValue(Obj code)
{
if (code == False || code == Fail)
SystemErrorCode = 1;
else if (code == True)
SystemErrorCode = 0;
else if (IS_INTOBJ(code))
SystemErrorCode = INT_INTOBJ(code);
else
return 0;
return 1;
}
/****************************************************************************
**
*F FuncGapExitCode() . . . . . . . . Set the code with which GAP exits.
**
*/
static Obj FuncGapExitCode(Obj self, Obj args)
{
if (LEN_LIST(args) > 1) {
ErrorQuit("usage: GapExitCode( [ <return value> ] )", 0, 0);
}
Obj prev_exit_value = ObjInt_Int(SystemErrorCode);
if (LEN_LIST(args) == 1) {
Obj code = ELM_PLIST(args, 1);
RequireArgumentCondition("GapExitCode", code, SetExitValue(code),
"Argument must be boolean or integer");
}
return (Obj)prev_exit_value;
}
/****************************************************************************
**
*F FuncQuitGap()