-
Notifications
You must be signed in to change notification settings - Fork 0
/
rint.c
2773 lines (2308 loc) · 60.5 KB
/
rint.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
/*
*
* File: rint.c
*
* Description: Functions to interpret an R-code object file
* (virtual machine running R-codes).
*
* Version: 1.0, by
* <a href=ihttps://github.com/Eidonko>Eidon@tutanota.com</a>
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "rcode.h"
#include "dirnet.h"
#include "rl.h"
#include "ObjAlloc.h"
#include "BACKBONE_db.h"
#include <sys/time.h>
int kbwait (void);
#ifdef STATIC
typedef
struct {entity_t *oa_satisfy[RCODE_MAX_NEST];
} RInt_static_object_t;
RInt_static_object_t RInt;
#endif
extern BACKBONE_recovery_t *ra;
#define PRESENT 1 /* the return value of the database routines when an entry is found */
#define ESTACK_SIZE 512
typedef int estack_t;
static estack_t estack[ESTACK_SIZE];
static int esp;
#define MAX_WARN_ARGC 32
static FILE *f; /* rcode file pointer */
/* oa_satisfy is a vector of pointers to ObjAlloc objects. They represent
lists of ident_t objects. If not-NULL, oa_satisfy[i] is the list of
entities (threads, groups, or nodes) that satisfy the i-th condition
of the current Ariel IF statement.
oa_satisfy objects are ``OA_opened'' as conditions are encountered
during their run-time evaluation, and (possibly) filled in with the
identities of those entities who satisfy the condition.
A special rcode, R_OANEW, performs all OA_close's that are needed
to re-initialise the state for the new IF to be managed.
*/
typedef struct { int role; int id; } entity_t;
ObjAlloc_t *oa_satistack[RCODE_MAX_NEST][BOOLE_ATOMS];
ObjAlloc_t **oa_satisfy;
int oa_satisp;
extern rcode_t *rcode;
#define R_INI_ASIZE 5 /* parameters used in OA_open() */
#define R_INC_ASIZE 5
/****** test main
main(int argc, char *argv[])
{
int i;
for (i=1; i<argc; i++)
{
rcode(argv[i]);
}
}
****************/
/**************************************************/
int R_NestIn(int dummy1, int dummy2, int dummy3)
/**************************************************/
{
oa_satisfy = oa_satistack[oa_satisp++];
if (oa_satisp < RCODE_MAX_NEST)
return(1);
return(0);
}
/**************************************************/
int R_NestOut(int dummy1, int dummy2, int dummy3)
/**************************************************/
{
oa_satisfy = oa_satistack[--oa_satisp];
if (oa_satisp < RCODE_MAX_NEST)
return(1);
return(0);
}
/**************************************************/
int R_Goto(int displacement, int dummy1, int dummy2)
/**************************************************/
{
/* RCODE: R_GOTO
Ariel: part of the IF statement */
return fseek(f, displacement * sizeof(rcode_t), SEEK_CUR);
}
/***************************************************/
int R_False(int displacement, int dummy1, int dummy2)
/***************************************************/
{
/* RCODE: R_FALSE
Ariel: part of the IF statement */
if (R_Pop() == FALSE)
return fseek(f, displacement * sizeof(rcode_t), SEEK_CUR);
return -1;
}
/***************************************/
int R_Not(int op, int dummy1, int dummy2)
/***************************************/
{
/* RCODE: R_NOT
Ariel: part of the expressions within IF statements */
int t = R_Pop();
R_Push( ! t );
return t;
}
/***************************************/
int R_Or(int op1, int dummy1, int dummy2)
/***************************************/
{
/* RCODE: R_OR
Ariel: part of the expressions within IF statements */
int t = R_Pop();
int s = R_Pop();
R_Push( t || s );
return t || s;
}
/****************************************/
int R_And(int op1, int dummy1, int dummy2)
/****************************************/
{
/* RCODE: R_AND
Ariel: part of the expressions within IF statements */
int t = R_Pop();
int s = R_Pop();
R_Push( t && s );
return t && s;
}
/********************************************/
int R_Stop(int dummy1, int dummy2, int dummy3)
/********************************************/
{
/* RCODE: R_STOP
Ariel: end of file */
/* cleans things up if necessary, then returns */
/* close all OA objects */
R_OArenew(BOOLE_ATOMS, 0, 0);
return ra->recovering = 0;
}
/***************************************/
int R_Killed(int role, int id, int dummy)
/***************************************/
{
/* RCODE: R_KILLED
Ariel: expression '-k', IF statements */
/* Checks whether entity `role', id `id' has been killed or not */
/* There are seven cases: role may be '*', 'T*', 'G*', 'N*', 'T', 'G', 'N' */
BACKBONE_ident_t *ident;
BACKBONE_group_t *gptr;
BACKBONE_node_t *nptr;
int i, index, result;
char FName[]="R_Killed";
/* the top of the evaluation stack represents the position of this
'-k' condition within the list of boolean atoms in the current
IF statement. */
int ord = R_Pop();
ObjAlloc_t *oa;
int index2, index3;
entity_t e;
oa = oa_satisfy[ord] = OA_open(sizeof(entity_t), R_INI_ASIZE,
#ifndef STATIC
R_INC_ASIZE);
#else
R_INC_ASIZE, RInt.oa_satisfy[ord]);
#endif
if (isstar(role)) /* case '*' */
{
/* check whether anything has been killed;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->identifier_sem);
ident = (BACKBONE_ident_t *) OA_array(ra->db->oa_identifier);
e.role = ID_IDENTIFIER;
index = 0;
for (i=0; i<OA_cardinality(ra->db->oa_identifier); i++, ident++)
if (ident->status == BACKBONE_KILLED)
{
e.id = ident->identifier;
OA_insert(oa, index++, &e);
}
Signal(ra->db->identifier_sem);
if (index > 0)
R_Push(1);
else
R_Push(0);
Wait(ra->db->group_sem);
gptr = (BACKBONE_group_t *) OA_array(ra->db->oa_group);
e.role = ID_GROUP;
index2 = index;
for (i=0; i<OA_cardinality(ra->db->oa_group); i++, gptr++)
if (gptr->status == BACKBONE_KILLED)
{
e.id = gptr->ID;
OA_insert(oa, index2++, &e);
}
Signal(ra->db->group_sem);
nptr = ra->db->node;
e.role = ID_NODE;
index3 = index2;
for (i=0; i<ra->db->node_count; i++, nptr++)
{
Wait(nptr->sem);
if (nptr->status == BACKBONE_KILLED)
{
e.id = i;
OA_insert(oa, index3++, &e);
}
Signal(nptr->sem);
}
if (index3 > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isthreadstar(role)) /* case 'T*' */
{
/* check whether any thread has been killed;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->identifier_sem);
ident = (BACKBONE_ident_t *) OA_array(ra->db->oa_identifier);
e.role = ID_IDENTIFIER;
index = 0;
for (i=0; i<OA_cardinality(ra->db->oa_identifier); i++, ident++)
if (ident->status == BACKBONE_KILLED)
{
e.id = ident->identifier;
OA_insert(oa, index++, &e);
}
Signal(ra->db->identifier_sem);
if (index > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isgroupstar(role)) /* case 'G*' */
{
/* check whether any group has been killed;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->group_sem);
gptr = (BACKBONE_group_t *) OA_array(ra->db->oa_group);
e.role = ID_GROUP;
index = 0;
for (i=0; i<OA_cardinality(ra->db->oa_group); i++, gptr++)
if (gptr->status == BACKBONE_KILLED)
{
e.id = gptr->ID;
OA_insert(oa, index++, &e);
}
Signal(ra->db->group_sem);
if (index > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isnodestar(role)) /* case 'N*' */
{
/* check whether any node has been killed;
if so, R_Push (1) otherwise R_Push (0) */
nptr = ra->db->node;
e.role = ID_NODE;
index = 0;
for (i=0; i<ra->db->node_count; i++, nptr++)
{
Wait(nptr->sem);
if (nptr->status == BACKBONE_KILLED)
{
e.id = i;
OA_insert(oa, index++, &e);
}
Signal(nptr->sem);
}
if (index > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isnormalthread(role)) /* case 'T<id>' */
{
/* check whether thread <id> has been killed;
if so, R_Push (1) otherwise R_Push (0) */
result = BACKBONE_Search_Identifier(ra->db, id, &ident, &index, 0);
if (result != PRESENT)
{
Signal(ra->db->identifier_sem);
LogError(EC_ERROR, FName, "Thread %d not present.", id);
R_Push(0);
return(-1);
}
if (ident->status == BACKBONE_KILLED)
{
Signal(ra->db->identifier_sem);
e.role = ID_IDENTIFIER;
e.id = id;
OA_insert(oa, 0, &e);
R_Push(1);
return(1);
}
Signal(ra->db->identifier_sem);
R_Push(0);
return(0);
}
else if (isnormalgroup(role)) /* case 'G<id>' */
{
/* check whether group <id> has been killed;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->group_sem);
result = BACKBONE_Search_Group(ra->db, id, &gptr, &index, 0);
if (result != PRESENT)
{
Signal(ra->db->group_sem);
LogError(EC_ERROR, FName, "Group %d not present.", id);
R_Push(0);
return(-1);
}
if (gptr->status == BACKBONE_KILLED)
{
Signal(ra->db->group_sem);
e.role = ID_GROUP;
e.id = id;
OA_insert(oa, 0, &e);
R_Push(1);
return(1);
}
Signal(ra->db->group_sem);
R_Push(0);
return(0);
}
else if (isnormalnode(role)) /* case 'N<id>' */
{
/* check whether node <id> has been killed;
if so, R_Push (1) otherwise R_Push (0) */
if (id < 0 || id >= ra->db->node_count)
{
LogError(EC_ERROR, FName, "Node %d not present.", id);
R_Push(0);
return(-1);
}
nptr = &((ra->db->node)[id]);
Wait(nptr->sem);
if (nptr->status == BACKBONE_KILLED)
{
Signal(nptr->sem);
e.role = ID_NODE;
e.id = id;
OA_insert(oa, 0, &e);
R_Push(1);
return(1);
}
Signal(nptr->sem);
R_Push(0);
return(0);
}
else
{
/* an error occurred */
return -1;
}
}
/*****************************************/
int R_Rebooted(int role, int id, int dummy)
/*****************************************/
{
/* RCODE: R_KILLED
Ariel: expression '-r', IF statements */
/* checks whether entity `role', id `id' has been rebooted or not */
/* there are three cases: role may be '*', 'N*', 'N' */
BACKBONE_node_t *nptr;
int i;
char FName[]="R_Rebooted";
/* the top of the evaluation stack represents the position of this
'-k' condition within the list of boolean atoms in the current
IF statement. */
int ord = R_Pop();
ObjAlloc_t *oa;
int index, index2, index3;
entity_t e;
oa = oa_satisfy[ord] = OA_open(sizeof(entity_t), R_INI_ASIZE,
#ifndef STATIC
R_INC_ASIZE);
#else
R_INC_ASIZE, RInt.oa_satisfy[ord]);
#endif
if (isstar(role) || isnodestar(role)) /* case '*' and 'N*' */
{
/* check whether any node has been rebooted;
if so, R_Push (1) otherwise R_Push (0) */
nptr = ra->db->node;
e.role = ID_NODE;
index = 0;
for (i=0; i<ra->db->node_count; i++, nptr++)
{
Wait(nptr->sem);
if (nptr->reboot_count > 0)
{
e.id = i;
OA_insert(oa, index++, &e);
}
Signal(nptr->sem);
}
if (index > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isnormalnode(role)) /* case N<id> */
{
/* check whether node <id> has been rebooted;
if so, R_Push (1) otherwise R_Push (0) */
if (id < 0 || id >= ra->db->node_count)
{
LogError(EC_ERROR, FName, "Node %d not present.", id);
R_Push(0);
return(-1);
}
nptr = &((ra->db->node)[id]);
Wait(nptr->sem);
e.role = ID_NODE;
if (nptr->reboot_count > 0)
{
Signal(nptr->sem);
e.id = id;
OA_insert(oa, 0, &e);
R_Push(1);
return(1);
}
Signal(nptr->sem);
R_Push(0);
return(0);
}
else
{
/* an error occurred */
return (-1);
}
}
/******************************************/
int R_Restarted(int role, int id, int dummy)
/******************************************/
{
/* RCODE: R_RESTARTED
Ariel: expression '-s', IF statements */
/* checks whether entity `role', id `id' has been restarted or not */
/* there are three cases: role may be '*', 'T*', 'T' */
BACKBONE_ident_t *ident;
int i, result, index;
char FName[]="R_Restarted";
/* the top of the evaluation stack represents the position of this
'-k' condition within the list of boolean atoms in the current
IF statement. */
int ord = R_Pop();
ObjAlloc_t *oa;
int index2, index3;
entity_t e;
oa = oa_satisfy[ord] = OA_open(sizeof(entity_t), R_INI_ASIZE,
#ifndef STATIC
R_INC_ASIZE);
#else
R_INC_ASIZE, RInt.oa_satisfy[ord]);
#endif
if (isstar(role) || isthreadstar(role)) /* case '*' and 'T*' */
{
/* check whether any thread has been restarted;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->identifier_sem);
ident = (BACKBONE_ident_t *) OA_array(ra->db->oa_identifier);
e.role = ID_IDENTIFIER;
index = 0;
for (i=0; i<OA_cardinality(ra->db->oa_identifier); i++, ident++)
if (ident->restart_count > 0)
{
e.id = ident->identifier;
OA_insert(oa, index++, &e);
}
Signal(ra->db->identifier_sem);
if (index > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isnormalthread(role)) /* case T<id> */
{
/* check whether thread <id> has been restarted;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->identifier_sem);
result = BACKBONE_Search_Identifier(ra->db, id, &ident, &index, 0);
if (result != PRESENT)
{
Signal(ra->db->identifier_sem);
LogError(EC_ERROR, FName, "Thread %d not present.", id);
R_Push(0);
return(-1);
}
if (ident->restart_count > 0)
{
Signal(ra->db->identifier_sem);
e.role = ID_IDENTIFIER;
e.id = id;
OA_insert(oa, 0, &e);
R_Push(1);
return(1);
}
Signal(ra->db->identifier_sem);
R_Push(0);
return(0);
}
else
{
/* an error occurred */
return (-1);
}
}
/****************************************/
int R_Present(int role, int id, int dummy)
/****************************************/
{
/* RCODE: R_PRESENT
Ariel: expression '-p', IF statements */
/* checks whether entity `role', id `id' is present or not */
/* there are 4 cases: role may be 'T*', 'G*', 'T', 'G', */
BACKBONE_ident_t *ident;
BACKBONE_group_t *gptr;
int i, result, index;
/* the top of the evaluation stack represents the position of this
'-k' condition within the list of boolean atoms in the current
IF statement. */
int ord = R_Pop();
ObjAlloc_t *oa;
int index2, index3;
entity_t e;
oa = oa_satisfy[ord] = OA_open(sizeof(entity_t), R_INI_ASIZE,
#ifndef STATIC
R_INC_ASIZE);
#else
R_INC_ASIZE, RInt.oa_satisfy[ord]);
#endif
if (isthreadstar(role)) /* case 'T*' */
{
/* check whether any thread is present;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->identifier_sem);
ident = (BACKBONE_ident_t *) OA_array(ra->db->oa_identifier);
e.role = ID_IDENTIFIER;
index = 0;
for (i=0; i<OA_cardinality(ra->db->oa_identifier); i++, ident ++)
if (ident->status == BACKBONE_RUNNING)
{
e.id = ident->identifier;
OA_insert(oa, index++, &e);
}
Signal(ra->db->identifier_sem);
if (index > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isgroupstar(role)) /* case 'G*' */
{
/* check whether any group is present;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->group_sem);
if (OA_cardinality(ra->db->oa_group) > 0)
{
e.role = ID_GROUP;
gptr = (BACKBONE_group_t *) OA_array(ra->db->oa_group);
for (i=0; i<OA_cardinality(ra->db->oa_group); i++, gptr++)
{
e.id = gptr->ID;
OA_insert(oa, i, &e);
}
Signal(ra->db->group_sem);
R_Push(1);
return(1);
}
Signal(ra->db->group_sem);
R_Push(0);
return(0);
}
else if (isnormalthread(role)) /* case 'T<id>' */
{
/* check whether thread <id> is present;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->identifier_sem);
result = BACKBONE_Search_Identifier(ra->db, id, &ident, &index, 0);
if (result != PRESENT)
{
Signal(ra->db->identifier_sem);
R_Push(0);
return(0);
}
if (ident->status == BACKBONE_RUNNING)
{
Signal(ra->db->identifier_sem);
e.role = ID_IDENTIFIER;
e.id = id;
OA_insert(oa, 0, &e);
R_Push(1);
return(1);
}
Signal(ra->db->identifier_sem);
R_Push(0);
return(0);
}
else if (isnormalgroup(role)) /* case 'G<id>' */
{
/* check whether group <id> is present;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->group_sem);
result = BACKBONE_Search_Group(ra->db, id, &gptr, &index, 0);
if (result != PRESENT)
{
Signal(ra->db->group_sem);
R_Push(0);
return(0);
}
if (gptr->status != BACKBONE_KILLED)
{
Signal(ra->db->group_sem);
e.role = ID_GROUP;
e.id = id;
OA_insert(oa, 0, &e);
R_Push(1);
return(1);
}
Signal(ra->db->group_sem);
R_Push(0);
return(0);
}
else
{
/* an error occurred */
}
}
/*****************************************/
int R_Isolated(int role, int id, int dummy)
/*****************************************/
{
/* RCODE: R_ISOLATED
Ariel: expression '-i', IF statements */
/* checks whether entity `role', id `id' is isolated or not */
/* there are seven cases: role may be '*', 'T*', 'G*', 'N*', 'T', 'G', 'N' */
BACKBONE_node_t *nptr;
BACKBONE_thread_t *tptr;
BACKBONE_group_t *gptr;
BACKBONE_ident_t *ident;
int i, j, result, index;
char FName[]="R_Isolated";
/* the top of the evaluation stack represents the position of this
'-k' condition within the list of boolean atoms in the current
IF statement. */
int ord = R_Pop();
ObjAlloc_t *oa;
int index2, index3;
entity_t e;
oa = oa_satisfy[ord] = OA_open(sizeof(entity_t), R_INI_ASIZE,
#ifndef STATIC
R_INC_ASIZE);
#else
R_INC_ASIZE, RInt.oa_satisfy[ord]);
#endif
if (isstar(role)) /* case '*' */
{
/* check whether anything has been isolated;
if so, R_Push (1) otherwise R_Push (0) */
nptr = ra->db->node;
index = 0;
for (i=0; i<ra->db->node_count; i++, nptr++)
{
Wait(nptr->sem);
if (nptr->status == BACKBONE_ISOLATED)
{
e.role = ID_NODE;
e.id = i;
OA_insert(oa, index++, &e);
}
tptr = (BACKBONE_thread_t *) OA_array(nptr->oa_thread);
e.role = ID_IDENTIFIER;
for (j=0; j<OA_cardinality(nptr->oa_thread); j++, tptr++)
if (tptr->status == BACKBONE_ISOLATED)
{
e.id = tptr->identifier;
OA_insert(oa, index++, &e);
}
Signal(nptr->sem);
}
Wait(ra->db->group_sem);
gptr = (BACKBONE_group_t *) OA_array(ra->db->oa_group);
e.role = ID_GROUP;
index2 = index;
for (i=0; i<OA_cardinality(ra->db->oa_group); i++, gptr++)
if (gptr->status == BACKBONE_ISOLATED)
{
e.id = gptr->ID;
OA_insert(oa, index2++, &e);
}
Signal(ra->db->group_sem);
if (index2 > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isthreadstar(role)) /* case 'T*' */
{
/* check whether any thread has been isolated;
if so, R_Push (1) otherwise R_Push (0) */
nptr = ra->db->node;
index = 0;
for (i=0; i<ra->db->node_count; i++, nptr++)
{
Wait(nptr->sem);
tptr = (BACKBONE_thread_t *) OA_array(nptr->oa_thread);
e.role = ID_IDENTIFIER;
for (j=0; j<OA_cardinality(nptr->oa_thread); j++, tptr++)
if (tptr->status == BACKBONE_ISOLATED)
{
e.id = tptr->identifier;
OA_insert(oa, index++, &e);
}
Signal(nptr->sem);
}
if (index > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isgroupstar(role)) /* case 'G*' */
{
/* check whether any group has been isolated;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->group_sem);
gptr = (BACKBONE_group_t *) OA_array(ra->db->oa_group);
e.role = ID_GROUP;
index = 0;
for (i=0; i<OA_cardinality(ra->db->oa_group); i++, gptr++)
if (gptr->status == BACKBONE_ISOLATED)
{
e.id = gptr->ID;
OA_insert(oa, index++, &e);
}
Signal(ra->db->group_sem);
if (index > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isnodestar(role)) /* case 'N*' */
{
/* check whether any node has been isolated;
if so, R_Push (1) otherwise R_Push (0) */
nptr = ra->db->node;
e.role = ID_NODE;
index = 0;
for (i=0; i<ra->db->node_count; i++, nptr++)
{
Wait(nptr->sem);
if (nptr->status == BACKBONE_ISOLATED)
{
e.id = i;
OA_insert(oa, index++, &e);
}
Signal(nptr->sem);
}
if (index > 0)
{
R_Push(1);
return(1);
}
else
{
R_Push(0);
return(0);
}
}
else if (isnormalthread(role)) /* case 'T<id>' */
{
/* check whether thread <id> has been isolated;
if so, R_Push (1) otherwise R_Push (0) */
Wait(ra->db->identifier_sem);
result = BACKBONE_Search_Identifier(ra->db, id, &ident, &index, 0);
if (result != PRESENT)
{
Signal(ra->db->identifier_sem);
LogError(EC_ERROR, FName, "Thread %d not present.", id);
R_Push(0);
return(-1);
}