forked from gap-system/gap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprecord.c
990 lines (849 loc) · 32.1 KB
/
precord.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
/****************************************************************************
**
*W precord.c GAP source Martin Schönert
**
**
*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 functions for plain records.
**
** A plain record with <n> components is stored as a bag with 2*<n>+2
** entries. The odd entries are the record names of the components and the
** even entries are the corresponding values.
** The first pointer in the bag is reserved for the pointer to the type
** object if the record becomes a component object. The second slot
** in the bag is the number <n> of components as a C int.
** Normally, the rnams are sorted such that we can do a binary lookup.
** However, we allow for lazy sorting. This is done as follows: New
** components are always appended (record bags grow by a factor of 5/4
** if needed as plists do), already sorted rnams are stored by storing
** their negative value to indicate sortedness. The new entries will have
** positive rnams and can thus be distinguished. Every read access will
** clean up the mess by sorting the new part and then merging the two
** sorted areas. After that, all rnams are negative indicating sortedness.
**
*/
#include <stdlib.h> /* for qsort */
#include <sys/time.h> /* for gettimeofday() */
#include <src/system.h> /* system dependent part */
#include <src/gapstate.h>
#include <src/gasman.h> /* garbage collector */
#include <src/objects.h> /* objects */
#include <src/scanner.h> /* scanner */
#include <src/gap.h> /* error handling, initialisation */
#include <src/funcs.h>
#include <src/gvars.h> /* global variables */
#include <src/calls.h> /* generic call mechanism */
#include <src/opers.h> /* generic operations */
#include <src/ariths.h> /* basic arithmetic */
#include <src/records.h> /* generic records */
#include <src/lists.h> /* generic lists */
#include <src/bool.h> /* booleans */
#include <src/precord.h> /* plain records */
#include <src/plist.h> /* plain lists */
#include <src/stringobj.h> /* strings */
#include <src/saveload.h> /* saving and loading */
#include <src/hpc/guards.h>
#include <src/hpc/aobjects.h> /* thread-local storage */
#include <src/gaputils.h>
/****************************************************************************
**
*F * * * * * * * * * standard functions for plain records * * * * * * * * * *
*/
/****************************************************************************
**
*F TypePRec( <rec> ) . . . . . . . . . . . . . . . . type of a plain record
**
** 'TypePRec' returns the type of the plain record <rec>.
**
** 'TypePRec' is the function in 'TypeObjFuncs' for plain records.
*/
Obj TYPE_PREC_MUTABLE;
Obj TypePRecMut (
Obj prec )
{
return TYPE_PREC_MUTABLE;
}
Obj TYPE_PREC_IMMUTABLE;
Obj TypePRecImm (
Obj prec )
{
return TYPE_PREC_IMMUTABLE;
}
/****************************************************************************
**
*F SetTypePRecToComObj( <rec>, <kind> ) convert record to component object
**
*/
void SetTypePRecToComObj( Obj rec, Obj kind )
{
TYPE_COMOBJ(rec) = kind;
RetypeBag(rec, T_COMOBJ);
CHANGED_BAG(rec);
}
/****************************************************************************
**
*F NEW_PREC( <len> ) . . . . . . . . . . . . . . . . make a new plain record
**
** 'NEW_PREC' returns a new plain record with room for <len> components,
** already set to length len.
*/
Obj NEW_PREC(UInt len)
{
Obj o = NewBag( T_PREC, (len) * 2*sizeof(Obj) + 2*sizeof(Obj) );
SET_LEN_PREC(o,0);
return o;
}
/****************************************************************************
**
*F GrowPRec( <rec>, <len> ) . . . . make sure <rec> can hold <len> components
**
** Returns 0 if nothing changed and 1 if enlarged.
*/
Int GrowPRec (
Obj rec,
UInt need )
{
UInt newsize, want, good;
/* check if big enough */
want = (2*need+2)*sizeof(Obj);
if (SIZE_OBJ(rec) >= want) return 0L;
/* find out how large the bag should become at least */
good = ((5 * LEN_PREC(rec) + 3)/4 + 1) * 2 * sizeof(Obj) + 2;
/* but maybe we need more */
newsize = (want < good) ? good : want;
/* resize the plain list */
ResizeBag( rec, newsize );
return 1L;
}
#if !defined(USE_THREADSAFE_COPYING)
/****************************************************************************
**
*F CopyPRec( <rec> ) . . . . . . . . . . . . . . . . . . copy a plain record
*F CleanPRec( <rec> ) . . . . . . . . . . . . . . . clean up a plain record
**
** 'CopyPRec' returns a structural (deep) copy of the record <rec>, i.e., a
** recursive copy that preserves the structure.
**
** If <rec> has not yet been copied, it makes a copy, leaves a forward
** pointer to the copy in the first entry of the record, where the first
** record name usually resides, and copies all the entries. If the record
** has alread been copied, it returns the value of the forwarding pointer.
**
** 'CopyPRec' is the function in 'TabCopyObj' for records.
**
** 'CleanPRec' removes the mark and the forwarding pointer from the record
** <rec>.
**
** 'CleanPRec' is the function in 'TabCleanObj' for records.
*/
Obj CopyPRec (
Obj rec,
Int mut )
{
Obj copy; /* copy, result */
Obj tmp; /* temporary variable */
UInt i; /* loop variable */
/* don't change immutable objects */
if ( ! IS_MUTABLE_OBJ(rec) ) {
return rec;
}
/* make a copy */
if ( mut ) {
copy = NewBag( TNUM_OBJ(rec), SIZE_OBJ(rec) );
}
else {
copy = NewBag( IMMUTABLE_TNUM(TNUM_OBJ(rec)), SIZE_OBJ(rec) );
}
ADDR_OBJ(copy)[0] = CONST_ADDR_OBJ(rec)[0];
// leave a forwarding pointer
ADDR_OBJ(rec)[0] = copy;
CHANGED_BAG( rec );
// now it is copied
RetypeBag( rec, TNUM_OBJ(rec) + COPYING );
// copy the subvalues
SET_LEN_PREC( copy, LEN_PREC(rec) );
for ( i = 1; i <= LEN_PREC(copy); i++ ) {
SET_RNAM_PREC( copy, i, GET_RNAM_PREC( rec, i ) );
tmp = COPY_OBJ( GET_ELM_PREC( rec, i ), mut );
SET_ELM_PREC( copy, i, tmp );
CHANGED_BAG( copy );
}
/* return the copy */
return copy;
}
Obj CopyPRecCopy (
Obj rec,
Int mut )
{
return ADDR_OBJ(rec)[0];
}
void CleanPRec (
Obj rec )
{
}
void CleanPRecCopy (
Obj rec )
{
UInt i; /* loop variable */
/* remove the forwarding pointer */
ADDR_OBJ(rec)[0] = CONST_ADDR_OBJ( CONST_ADDR_OBJ(rec)[0] )[0];
/* now it is cleaned */
RetypeBag( rec, TNUM_OBJ(rec) - COPYING );
/* clean the subvalues */
for ( i = 1; i <= LEN_PREC(rec); i++ ) {
CLEAN_OBJ( GET_ELM_PREC( rec, i ) );
}
}
#endif //!defined(USE_THREADSAFE_COPYING)
/****************************************************************************
**
*F MakeImmutablePRec( <rec> )
*/
void MakeImmutablePRec( Obj rec)
{
UInt len;
UInt i;
len = LEN_PREC( rec );
for ( i = 1; i <= len; i++ )
MakeImmutable(GET_ELM_PREC(rec,i));
/* Sort the record at this point.
This can never hurt, unless the record will never be accessed again anyway
for HPCGAP it's essential so that immutable records are actually binary unchanging */
SortPRecRNam(rec, 1);
RetypeBag(rec, IMMUTABLE_TNUM(TNUM_OBJ(rec)));
}
/****************************************************************************
* FindPRec( <rec>, <rnam>, <pos>, <cleanup> )
* . . . . . . . . . . . . . . . . . find a component name by binary search
*
* Searches rnam in rec, sets pos to the position where it is found (return
* value 1) or where it should be inserted if it is not found (return val 0).
* If cleanup is nonzero, a dirty record is automatically cleaned up.
* If cleanup is 0, this does not happen.
*/
UInt FindPRec( Obj rec, UInt rnam, UInt *pos, int cleanup )
{
/* This only assumes that the rnam values in the record are sorted! */
UInt i;
Int rnam2;
UInt low = 1;
UInt high;
high = LEN_PREC(rec);
if (high > 0 && (Int) (GET_RNAM_PREC(rec,high)) > 0) {
/* DIRTY! Not everything sorted! */
if (cleanup) {
SortPRecRNam(rec,0);
/* Note that this does not change the length and it cannot
* trigger a garbage collection if cleanup is 1!
* We do not want record accesses to trigger garbage
* collections! */
} else {
/* We are not allowed to cleanup, so we live with it, we
* first try to find rnam in the mess at the end, then
* fall back to binary search: */
i = high;
while (i >= 1) {
rnam2 = (Int) (GET_RNAM_PREC(rec,i));
if (rnam == rnam2) {
*pos = i;
return 1;
}
if (rnam2 < 0) { /* reached the sorted area! */
high = i; /* will be incremented by 1 */
break;
}
i--;
}
if (i == 0) return 0;
/* Here, high is the number of the sorted entries. */
}
}
high++;
while (low < high) {
i = (low + high) >> 1; /* we always have low <= i < high */
rnam2 = -(Int)(GET_RNAM_PREC( rec, i ));
if (rnam2 < rnam) low = i+1;
else if (rnam2 > rnam) high = i;
else {
/* found! */
*pos = i;
return 1;
}
}
/* Now low == high and we did not find it. */
*pos = low;
return 0;
}
/****************************************************************************
**
*F IsbPRec( <rec>, <rnam> ) . . . . test for an element from a plain record
**
** 'IsbPRec' returns 1 if the record <rec> has a component with the record
** name <rnam>, and 0 otherwise.
*/
Int IsbPRec (
Obj rec,
UInt rnam )
{
UInt i; /* loop variable */
return FindPRec(rec,rnam,&i,1);
}
/****************************************************************************
**
*F ElmPRec( <rec>, <rnam> ) . . . . . select an element from a plain record
**
** 'ElmPRec' returns the element, i.e., the value of the component, with the
** record name <rnam> in the plain record <rec>. An error is signalled if
** <rec> has no component with record name <rnam>.
*/
Obj ElmPRec (
Obj rec,
UInt rnam )
{
UInt i; /* loop variable */
if (FindPRec(rec,rnam,&i,1))
return GET_ELM_PREC( rec, i );
else {
ErrorReturnVoid(
"Record: '<rec>.%s' must have an assigned value",
(Int)NAME_RNAM(rnam), 0L,
"you can 'return;' after assigning a value" );
return ELM_REC( rec, rnam );
}
}
/****************************************************************************
**
*F UnbPRec( <rec>, <rnam> ) . unbind a record component from a plain record
**
** 'UnbPRec' removes the record component with the record name <rnam> from
** the record <rec>.
*/
void UnbPRec (
Obj rec,
UInt rnam )
{
UInt len; /* length of <rec> */
UInt i; /* loop variable */
if (FindPRec( rec, rnam, &i, 1 )) {
/* otherwise move everything forward */
len = LEN_PREC( rec );
for ( ; i < len; i++ ) {
SET_RNAM_PREC( rec, i, GET_RNAM_PREC( rec, i+1 ) );
SET_ELM_PREC( rec, i, GET_ELM_PREC( rec, i+1 ) );
}
SET_RNAM_PREC( rec, len, 0 );
SET_ELM_PREC( rec, len, 0L );
/* resize the record */
SET_LEN_PREC(rec,LEN_PREC(rec)-1);
} else
/* do nothing if no such component exists */
return;
}
void UnbPRecImm (
Obj rec,
UInt rnam )
{
ErrorReturnVoid(
"Record Unbind: <rec> must be a mutable record",
0L, 0L,
"you can 'return;' and ignore the unbind" );
}
/****************************************************************************
**
*F AssPRec( <rec>, <rnam>, <val> ) . . . . . . . . assign to a plain record
**
** 'AssPRec' assigns the value <val> to the record component with the record
** name <rnam> in the plain record <rec>.
*/
void AssPRec (
Obj rec,
UInt rnam,
Obj val )
{
UInt len; /* length of <rec> */
UInt i; /* loop variable */
/* get the length of the record */
len = LEN_PREC( rec );
if (len % 1000 == 0) { /* A hack to occasionally do some cleanup! */
SortPRecRNam(rec,0);
}
if (!FindPRec( rec, rnam, &i, 0 )) {
/* No cleanup allowed here to allow for multiple assignments! */
/* extend the record if no such component exists */
len++;
GrowPRec(rec, len);
i = len;
SET_RNAM_PREC( rec, i, rnam );
SET_LEN_PREC(rec,len);
}
/* assign the value to the component */
SET_ELM_PREC( rec, i, val );
CHANGED_BAG( rec );
}
void AssPRecImm (
Obj rec,
UInt rnam,
Obj val )
{
ErrorReturnVoid(
"Records Assignment: <rec> must be a mutable record",
0L, 0L,
"you can 'return;' and ignore the assignment" );
}
/****************************************************************************
**
*F PrintPRec( <rec> ) . . . . . . . . . . . . . . . . . . . print a record
**
** 'PrintRec' prints the plain record <rec>.
*/
extern Obj PrintObjOper;
void PrintPRec (
Obj rec )
{
DoOperation1Args( PrintObjOper, rec );
}
/****************************************************************************
**
*F SortPRecRNam(<rec>, <inplace>) . . . . . . . sort the Rnams of the record
**
** This is needed after the components of a record have been assigned
** in not necessarily sorted order in the kernel. It is automatically
** called on the first read access if necessary. See the top of "precord.c"
** for a comment on lazy sorting.
** If inplace is 1 then a slightly slower algorithm is used of
** which we know that it does not produce garbage collections.
** If inplace is 0 a garbage collection may be triggered.
**
*/
static int PrecComparer(const void *a, const void *b)
{
const UInt *aa = (const UInt *) a;
const UInt *bb = (const UInt *) b;
if (*aa < *bb) return -1;
else if (*aa == *bb) return 0;
else return 1;
}
void SortPRecRNam (
Obj rec, int inplace )
{
UInt len = LEN_PREC(rec);
UInt i,j,k,save;
int issorted = 1;
Obj space;
Obj tmp;
/* Nothing has to be done if it is already sorted: */
if ( len == 0 || (Int) (GET_RNAM_PREC(rec,len)) < 0) return;
/* First find the "unsorted part" and check whether it is sorted! */
for (i = len-1;i >= 1 && (Int)(GET_RNAM_PREC(rec,i)) > 0;i--) {
if (issorted && GET_RNAM_PREC(rec,i) > GET_RNAM_PREC(rec,i+1)) {
issorted = 0;
}
}
i++;
/* Now i points to the last positive (and thus still unsorted)
* component and issorted is 1 iff positions i to len are sorted! */
if (!issorted && len - i + 1 > 1) {
qsort( ADDR_OBJ(rec)+2*i, len-i+1, 2*sizeof(Obj), &PrecComparer );
}
/* Now i points to the first positive component and the rest is
* sorted. */
save = i;
if (save == 1 ||
-(Int)(GET_RNAM_PREC(rec,save-1)) < GET_RNAM_PREC(rec,save)) {
/* Otherwise, nothing has to be done since it is already
* sorted, we only have to negate the RNams! */
for (j = save;j <= len;j++)
SET_RNAM_PREC(rec,j,-(Int)(GET_RNAM_PREC(rec,j)));
return;
}
/* Next we perform a merge sort on the two presorted areas. */
/* For optimal performance, we need some space to mess around: */
if (!inplace) {
space = NEW_PREC(len);
j = 1;
k = 1;
while (j < save && i <= len) {
if (-(Int)(GET_RNAM_PREC(rec,j)) < GET_RNAM_PREC(rec,i)) {
SET_RNAM_PREC(space,k,GET_RNAM_PREC(rec,j));
SET_ELM_PREC(space,k,GET_ELM_PREC(rec,j));
j++; k++;
} else {
SET_RNAM_PREC(space,k,-(Int)(GET_RNAM_PREC(rec,i)));
SET_ELM_PREC(space,k,GET_ELM_PREC(rec,i));
i++; k++;
}
}
/* Copy the rest of the part still missing: */
while (j < save) {
SET_RNAM_PREC(space,k,GET_RNAM_PREC(rec,j));
SET_ELM_PREC(space,k,GET_ELM_PREC(rec,j));
j++; k++;
}
while (i <= len) {
SET_RNAM_PREC(space,k,-(Int)(GET_RNAM_PREC(rec,i)));
SET_ELM_PREC(space,k,GET_ELM_PREC(rec,i));
i++; k++;
}
/* Finally, copy everything back to where it came from: */
memcpy(ADDR_OBJ(rec)+2,CONST_ADDR_OBJ(space)+2,sizeof(Obj)*2*len);
} else { /* We have to work in place to avoid a garbage collection. */
/* i == save is the cut point */
j = 1;
for (j = 1; j < save; j++) {
if (-(Int)(GET_RNAM_PREC(rec,j)) > GET_RNAM_PREC(rec,i)) {
/* we have to move something to position j! */
tmp = (Obj) (-(Int)(GET_RNAM_PREC(rec,j)));
SET_RNAM_PREC(rec,j,-(Int)(GET_RNAM_PREC(rec,i)));
SET_RNAM_PREC(rec,i,(UInt) tmp);
tmp = GET_ELM_PREC(rec,j);
SET_ELM_PREC(rec,j,GET_ELM_PREC(rec,i));
SET_ELM_PREC(rec,i,tmp);
/* Now we have to "bubble pos i up" until it is in the
* right position: */
for (k = i;k < len;k++) {
if (GET_RNAM_PREC(rec,k) > GET_RNAM_PREC(rec,k+1)) {
tmp = (Obj) GET_RNAM_PREC(rec,k);
SET_RNAM_PREC(rec,k,GET_RNAM_PREC(rec,k+1));
SET_RNAM_PREC(rec,k+1,(UInt) tmp);
tmp = GET_ELM_PREC(rec,k);
SET_ELM_PREC(rec,k,GET_ELM_PREC(rec,k+1));
SET_ELM_PREC(rec,k+1,tmp);
} else break;
}
}
}
/* Finally, we have to negate everything in the end: */
for (j = save;j <= len;j++)
SET_RNAM_PREC(rec,j,-(Int)(GET_RNAM_PREC(rec,j)));
}
}
/****************************************************************************
**
*F * * * * * * * * * * * default functions for records * * * * * * * * * * *
*/
void PrintPathPRec (
Obj rec,
Int indx )
{
Pr( ".%I", (Int)NAME_RNAM( labs((Int)(GET_RNAM_PREC(rec,indx))) ), 0L );
}
/****************************************************************************
**
*F FuncREC_NAMES( <self>, <rec> ) . . . . . . . . record names of a record
**
** 'FuncREC_NAMES' implements a method for the operations 'RecNames'.
**
** 'RecNames( <rec> )'
**
** 'RecNames' returns a list containing the names of the components of the
** record <rec> as strings.
*/
Obj InnerRecNames( Obj rec )
{
Obj list; /* list of record names, result */
UInt rnam; /* one name of record */
Obj string; /* one name as string */
UInt i;
Obj name;
SortPRecRNam(rec,0); /* Make sure rnams are sorted and thus negative */
/* allocate the list */
list = NEW_PLIST( T_PLIST, LEN_PREC(rec) );
SET_LEN_PLIST( list, LEN_PREC(rec) );
/* loop over the components */
for ( i = 1; i <= LEN_PREC(rec); i++ ) {
rnam = -(Int)(GET_RNAM_PREC( rec, i ));
/* could have been moved by garbage collection */
name = NAME_OBJ_RNAM( rnam );
string = CopyToStringRep( name );
SET_ELM_PLIST( list, i, string );
CHANGED_BAG( list );
}
/* return the list */
return list;
}
Obj FuncREC_NAMES (
Obj self,
Obj rec )
{
/* check the argument */
switch (TNUM_OBJ(rec)) {
case T_PREC:
case T_PREC+IMMUTABLE:
return InnerRecNames(rec);
#ifdef HPCGAP
case T_AREC:
return InnerRecNames(FromAtomicRecord(rec));
#endif
}
ErrorMayQuit("RecNames: <rec> must be a record (not a %s)",
(Int)TNAM_OBJ(rec), 0L);
return Fail;
}
/****************************************************************************
**
*F FuncREC_NAMES_COMOBJ( <self>, <rec> ) . . . record names of a record object
*/
/* same as FuncREC_NAMES except for different argument check */
Obj FuncREC_NAMES_COMOBJ (
Obj self,
Obj rec )
{
/* check the argument */
switch (TNUM_OBJ(rec)) {
case T_COMOBJ:
return InnerRecNames(rec);
#ifdef HPCGAP
case T_ACOMOBJ:
return InnerRecNames(FromAtomicRecord(rec));
#endif
}
ErrorMayQuit("RecNames: <rec> must be a component object (not a %s)",
(Int)TNAM_OBJ(rec), 0L);
return Fail;
}
/****************************************************************************
**
*F FuncEQ_PREC( <self>, <left>, <right> ) . . . . comparison of two records
**
** 'EqRec' returns '1L' if the two operands <left> and <right> are equal
** and '0L' otherwise. At least one operand must be a plain record.
*/
Obj FuncEQ_PREC (
Obj self,
Obj left,
Obj right )
{
UInt i; /* loop variable */
/* quick first checks */
if ( ! IS_PREC(left) )
return False;
if ( ! IS_PREC(right) )
return False;
if ( LEN_PREC(left) != LEN_PREC(right) )
return False;
/* ensure records are sorted by their RNam */
SortPRecRNam(left,0);
SortPRecRNam(right,0);
CheckRecursionBefore();
/* compare componentwise */
for ( i = 1; i <= LEN_PREC(right); i++ ) {
/* compare the names */
if ( GET_RNAM_PREC(left,i) != GET_RNAM_PREC(right,i) ) {
DecRecursionDepth();
return False;
}
/* compare the values */
if ( ! EQ(GET_ELM_PREC(left,i),GET_ELM_PREC(right,i)) ) {
DecRecursionDepth();
return False;
}
}
/* the records are equal */
DecRecursionDepth();
return True;
}
/****************************************************************************
**
*F FuncLT_PREC( <self>, <left>, <right> ) . . . comparison of two records
**
** 'LtRec' returns '1L' if the operand <left> is less than the operand
** <right>, and '0L' otherwise. At least one operand must be a plain
** record.
*/
Obj FuncLT_PREC (
Obj self,
Obj left,
Obj right )
{
UInt i; /* loop variable */
Int res; /* result of comparison */
/* quick first checks */
if ( ! IS_PREC(left) || ! IS_PREC(right) ) {
if ( TNUM_OBJ(left ) < TNUM_OBJ(right) ) return True;
if ( TNUM_OBJ(left ) > TNUM_OBJ(right) ) return False;
}
/* ensure records are sorted by their RNam */
SortPRecRNam(left,0);
SortPRecRNam(right,0);
CheckRecursionBefore();
res = 0;
/* compare componentwise */
for ( i = 1; i <= LEN_PREC(right); i++ ) {
/* if the left is a proper prefix of the right one */
if ( LEN_PREC(left) < i ) {
res = 1;
break;
}
/* compare the names */
/* The sense of this comparison is determined by the rule that
unbound entries compare less than bound ones */
if ( GET_RNAM_PREC(left,i) != GET_RNAM_PREC(right,i) ) {
res = ( strcmp( NAME_RNAM( labs((Int)(GET_RNAM_PREC(left,i))) ),
NAME_RNAM( labs((Int)(GET_RNAM_PREC(right,i))) ) ) > 0 );
break;
}
/* compare the values */
if ( ! EQ(GET_ELM_PREC(left,i),GET_ELM_PREC(right,i)) ) {
res = LT( GET_ELM_PREC(left,i), GET_ELM_PREC(right,i) );
break;
}
}
/* the records are equal or the right is a prefix of the left */
DecRecursionDepth();
return res ? True : False;
}
/****************************************************************************
**
*F SavePRec( <prec> )
**
*/
void SavePRec( Obj prec )
{
UInt len,i;
len = LEN_PREC(prec);
SaveUInt(len);
for (i = 1; i <= len; i++)
{
SaveUInt(GET_RNAM_PREC(prec, i));
SaveSubObj(GET_ELM_PREC(prec, i));
}
}
/****************************************************************************
**
*F LoadPRec( <prec> )
**
*/
void LoadPRec( Obj prec )
{
UInt len,i;
len = LoadUInt();
SET_LEN_PREC(prec,len);
for (i = 1; i <= len; i++)
{
SET_RNAM_PREC(prec, i, LoadUInt());
SET_ELM_PREC(prec, i, LoadSubObj());
}
}
/****************************************************************************
**
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*V BagNames . . . . . . . . . . . . . . . . . . . . . . . list of bag names
*/
static StructBagNames BagNames[] = {
{ T_PREC, "record (plain)" },
{ T_PREC +IMMUTABLE, "record (plain,imm)" },
#if !defined(USE_THREADSAFE_COPYING)
{ T_PREC +COPYING, "record (plain,copied)" },
{ T_PREC +IMMUTABLE +COPYING, "record (plain,imm,copied)" },
#endif
{ -1, "" }
};
/****************************************************************************
**
*V GVarFuncs . . . . . . . . . . . . . . . . . . list of functions to export
*/
static StructGVarFunc GVarFuncs [] = {
GVAR_FUNC(REC_NAMES, 1, "rec"),
GVAR_FUNC(REC_NAMES_COMOBJ, 1, "rec"),
GVAR_FUNC(EQ_PREC, 2, "left, right"),
GVAR_FUNC(LT_PREC, 2, "left, right"),
{ 0, 0, 0, 0, 0 }
};
/****************************************************************************
**
*F InitKernel( <module> ) . . . . . . . . initialise kernel data structures
*/
static Int InitKernel (
StructInitInfo * module )
{
/* GASMAN marking functions and GASMAN names */
InitBagNamesFromTable( BagNames );
InitMarkFuncBags( T_PREC , MarkAllSubBags );
InitMarkFuncBags( T_PREC +IMMUTABLE , MarkAllSubBags );
#if !defined(USE_THREADSAFE_COPYING)
InitMarkFuncBags( T_PREC +COPYING , MarkAllSubBags );
InitMarkFuncBags( T_PREC +IMMUTABLE +COPYING , MarkAllSubBags );
#endif
/* Immutable records are public */
MakeBagTypePublic( T_PREC +IMMUTABLE );
/* init filters and functions */
InitHdlrFuncsFromTable( GVarFuncs );
/* Install saving functions */
SaveObjFuncs[ T_PREC ] = SavePRec;
SaveObjFuncs[ T_PREC +IMMUTABLE ] = SavePRec;
LoadObjFuncs[ T_PREC ] = LoadPRec;
LoadObjFuncs[ T_PREC +IMMUTABLE ] = LoadPRec;
/* install into record function tables */
ElmRecFuncs[ T_PREC ] = ElmPRec;
ElmRecFuncs[ T_PREC +IMMUTABLE ] = ElmPRec;
IsbRecFuncs[ T_PREC ] = IsbPRec;
IsbRecFuncs[ T_PREC +IMMUTABLE ] = IsbPRec;
AssRecFuncs[ T_PREC ] = AssPRec;
AssRecFuncs[ T_PREC +IMMUTABLE ] = AssPRecImm;
UnbRecFuncs[ T_PREC ] = UnbPRec;
UnbRecFuncs[ T_PREC +IMMUTABLE ] = UnbPRecImm;
/* install mutability test */
IsMutableObjFuncs[ T_PREC ] = AlwaysYes;
IsMutableObjFuncs[ T_PREC +IMMUTABLE ] = AlwaysNo;
IsCopyableObjFuncs[ T_PREC ] = AlwaysYes;
IsCopyableObjFuncs[ T_PREC +IMMUTABLE ] = AlwaysYes;
#if !defined(USE_THREADSAFE_COPYING)
/* install into copy function tables */
CopyObjFuncs [ T_PREC ] = CopyPRec;
CopyObjFuncs [ T_PREC +IMMUTABLE ] = CopyPRec;
CopyObjFuncs [ T_PREC +COPYING ] = CopyPRecCopy;
CopyObjFuncs [ T_PREC +IMMUTABLE +COPYING ] = CopyPRecCopy;
CleanObjFuncs[ T_PREC ] = CleanPRec;
CleanObjFuncs[ T_PREC +IMMUTABLE ] = CleanPRec;
CleanObjFuncs[ T_PREC +COPYING ] = CleanPRecCopy;
CleanObjFuncs[ T_PREC +IMMUTABLE +COPYING ] = CleanPRecCopy;
#endif // !defined(USE_THREADSAFE_COPYING)
/* install printer */
PrintObjFuncs[ T_PREC ] = PrintPRec;
PrintObjFuncs[ T_PREC +IMMUTABLE ] = PrintPRec;
PrintPathFuncs[ T_PREC ] = PrintPathPRec;
PrintPathFuncs[ T_PREC +IMMUTABLE ] = PrintPathPRec;
/* install the type functions */
ImportGVarFromLibrary( "TYPE_PREC_MUTABLE", &TYPE_PREC_MUTABLE );
ImportGVarFromLibrary( "TYPE_PREC_IMMUTABLE", &TYPE_PREC_IMMUTABLE );
TypeObjFuncs[ T_PREC ] = TypePRecMut;
TypeObjFuncs[ T_PREC +IMMUTABLE ] = TypePRecImm;
SetTypeObjFuncs[ T_PREC ] = SetTypePRecToComObj;
MakeImmutableObjFuncs[ T_PREC ] = MakeImmutablePRec;
/* return success */
return 0;
}
/****************************************************************************
**
*F InitLibrary( <module> ) . . . . . . . initialise library data structures
*/
static Int InitLibrary (
StructInitInfo * module )
{
/* init filters and functions */
InitGVarFuncsFromTable( GVarFuncs );
/* return success */
return 0;
}
/****************************************************************************
**
*F InitInfoPRecord() . . . . . . . . . . . . . . . . table of init functions
*/
static StructInitInfo module = {
// init struct using C99 designated initializers; for a full list of
// fields, please refer to the definition of StructInitInfo
.type = MODULE_BUILTIN,
.name = "precord",
.initKernel = InitKernel,
.initLibrary = InitLibrary,
};
StructInitInfo * InitInfoPRecord ( void )
{
return &module;
}