-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathdatabase.c
1269 lines (1234 loc) · 61.1 KB
/
database.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
/*** database.c ***************************************************************
**
** This file is part of BibTool.
** It is distributed under the GNU General Public License.
** See the file COPYING for details.
**
** (c) 1996-20120Gerd Neugebauer
**
** Net: gene@gerd-neugebauer.de
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2, or (at your option)
** any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**
**-----------------------------------------------------------------------------
** Description:
** This module contains functions which deal with databases.
** Databases are stored in an abstract datatype |DB| which is defined
** in |database.h|. Methods are provided to query and modify a database.
**
******************************************************************************/
#include <bibtool/general.h>
#include <bibtool/expand.h>
#include <bibtool/symbols.h>
#include <bibtool/database.h>
#include <bibtool/record.h>
#include <bibtool/parse.h>
#include <bibtool/macros.h>
#include <bibtool/print.h>
#include <bibtool/error.h>
#include <bibtool/entry.h>
#include <bibtool/key.h>
#include <bibtool/rsc.h>
/*****************************************************************************/
/* Internal Programs */
/*===========================================================================*/
#ifdef __STDC__
#define _ARG(A) A
#else
#define _ARG(A) ()
#endif
static Record insert_record _ARG((Record rec, Record ptr,int (*less)_ARG((Record, Record))));/**/
static Record rec__sort _ARG((Record rec,int (*less)_ARG((Record, Record))));/**/
static int cmp_heap _ARG((Record r1, Record r2)); /* */
static void mark_string _ARG((Record rec, String s));/* */
/*****************************************************************************/
/* External Programs */
/*===========================================================================*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
#define SkipWarning WARNING("Skipping to next '@'")
/*---------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
** Function: new_db()
** Purpose: Create a new database and initialize it to contain no
** information.
** If no memory is left then an error is raised and the program
** is terminated.
** Arguments: none
** Returns: The new database.
**___________________________________________________ */
DB new_db() /* */
{ register DB new; /* */
/* */
if ((new=(DB)malloc(sizeof(sDB))) == NoDB) /* */
{ OUT_OF_MEMORY("db"); } /* */
DBnormal(new) = RecordNULL; /* */
DBstring(new) = RecordNULL; /* */
DBpreamble(new) = RecordNULL; /* */
DBcomment(new) = RecordNULL; /* */
DBalias(new) = RecordNULL; /* */
DBinclude(new) = RecordNULL; /* */
DBmodify(new) = RecordNULL; /* */
return new; /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: free_db()
** Purpose: Deallocate the memory occupied by a database.
** Note that any references to this database becomes invalid.
** Arguments:
** db Database to release.
** Returns: nothing
**___________________________________________________ */
void free_db(db) /* */
DB db; /* */
{ /* */
free_record(DBnormal(db)); /* */
free_record(DBstring(db)); /* */
free_record(DBpreamble(db)); /* */
free_record(DBcomment(db)); /* */
free_record(DBalias(db)); /* */
free_record(DBinclude(db)); /* */
free_record(DBmodify(db)); /* */
free(db); /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: apply_modify()
** Type: int
** Purpose:
**
** Arguments:
** db the database
** key the key
** rec the record
** Returns:
**___________________________________________________ */
int apply_modify(db, key, rec) /* */
DB db; /* */
Symbol key; /* */
Record rec; /* */
{ Symbol *hp = RecordHeap(rec); /* */
int i; /* */
Record r = db_find(db, key); /* */
if (r == RecordNULL) /* */
{ WARNING2("Entry to modify not found: ", /* */
SymbolValue(key)); /* */
return 0; /* */
} /* */
DebugPrint2("Modify ", /* */
SymbolValue(*RecordHeap(rec))); /* */
/* */
for (i = RecordFree(rec); i > 0; i -= 2) /* */
{ /* No deleted or */
if (*hp && /* */
is_allowed(*SymbolValue(*hp)) && /* */
*(hp+1)) /* private entry */
{ DebugPrint3(SymbolValue(*hp), /* */
" => ", /* */
SymbolValue(*(hp+1))); /* */
push_to_record(r, *hp, *(hp+1), false); /* */
} /* */
hp += 2; /* Goto next pair. */
} /* */
return 1; /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function*: apply_alias()
** Type: bool
** Purpose:
**
** Arguments:
** db the database
** key the key
** rec the record
** verbose the verbose indicator
** Returns:
**___________________________________________________ */
static bool apply_alias(db, key, rec, verbose) /* */
DB db; /* */
Symbol key; /* */
Record rec; /* */
bool verbose; /* */
{ Record r = db_find(db, key); /* */
if (r == RecordNULL) /* */
{ WARNING2("Entry to alias not found: ", key); /* */
return false; /* */
} /* */
DebugPrint2("Alias ", /* */
SymbolValue(*RecordHeap(rec))); /* */
/* */
r = copy_record(r); /* Make a private copy. */
RecordOldKey(r) = *RecordHeap(rec); /* */
*RecordHeap(r) = *RecordHeap(rec); /* */
db_insert(db, r, verbose); /* */
return true; /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: db_insert()
** Purpose: Add a record to a database.
** The record can be any kind of record. It is added to the
** appropriate category.
** Arguments:
** db Database to insert the record into.
** rec Record to add to the database.
** verbose Boolean to determine whether progress should be reported.
** Returns: nothing
**___________________________________________________ */
void db_insert(db, rec, verbose) /* */
DB db; /* */
Record rec; /* */
bool verbose; /* */
{ Record *rp; /* */
/* */
switch (RecordType(rec)) /* */
{ case BIB_STRING: /* */
rp = &DBstring(db); /* */
DebugPrint1("Inserting String"); /* */
break; /* */
case BIB_PREAMBLE: /* */
rp = &DBpreamble(db); /* */
DebugPrint1("Inserting Preamble"); /* */
break; /* */
case BIB_COMMENT: /* */
rp = &DBcomment(db); /* */
DebugPrint1("Inserting Comment"); /* */
break; /* */
case BIB_MODIFY: /* */
if(rsc_apply_modify && /* */
apply_modify(db, *RecordHeap(rec), rec)) /* */
{ free_record(rec); /* */
return; /* */
} else { /* */
rp = &DBmodify(db); /* */
DebugPrint1("Inserting Modify"); /* */
} /* */
break; /* */
case BIB_INCLUDE: /* */
if(rsc_apply_include) /* */
{ DebugPrint2("Including ", /* */
SymbolValue(*RecordHeap(rec)));/* */
if (read_db(db, /* */
SymbolValue(*RecordHeap(rec)), /* */
verbose)) /* */
{ ERROR2("File not found: ", /* */
SymbolValue(*RecordHeap(rec))); /* */
} /* */
free_record(rec); /* */
return; /* */
} else { /* */
rp = &DBinclude(db); /* */
DebugPrint1("Inserting Include"); /* */
} /* */
break; /* */
case BIB_ALIAS: /* */
if (rsc_apply_alias) /* */
{ DebugPrint2("Alias ", /* */
SymbolValue(*RecordHeap(rec)));/* */
apply_alias(db, *(RecordHeap(rec)+1), /* */
rec, verbose); /* */
free_record(rec); /* */
return; /* */
} else { /* */
rp = &DBalias(db); /* */
DebugPrint1("Inserting Alias"); /* */
} /* */
break; /* */
default: /* */
rp = &DBnormal(db); /* */
DebugPrint2("Inserting Entry ", /* */
SymbolValue(*RecordHeap(rec))); /* */
break; /* */
} /* */
/* */
if (*rp == RecordNULL) /* List is empty */
{ *rp = rec; } /* Just remember the rec. */
else /* */
{ NextRecord(*rp) = rec; /* */
PrevRecord(rec) = *rp; /* */
*rp = rec; /* */
} /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: read_db()
** Purpose: Read records from a file and add them to a database.
** A function has to be given as one argument. This function is
** called for each record. If this function returns |true| then
** the record is added to the database. Otherwise the record is
** discarded.
**
** The progress of reading is reported to |stderr| if the
** boolean argument |verbose| is |true|.
** Arguments:
** db Database to augment.
** file File name to read from.
** verbose Boolean to determine whether progress should be reported.
** Returns: |true| if the file can not be opened. |false| otherwise.
**___________________________________________________ */
bool read_db(db, file, verbose) /* */
DB db; /* */
String file; /* */
bool verbose; /* */
{ register int type; /* */
static Record master_record = RecordNULL; /* */
Record rec; /* */
register Record dbn; /* */
/* */
if (!see_bib(file)) return 1; /* */
if (master_record == RecordNULL) /* */
{ master_record = new_record(0, 32); } /* */
/* */
if (file == NULL) /* */
{ file = (String)"<stdin>"; /* */
RecordSource(master_record) = sym_empty; /* */
LinkSymbol(sym_empty); /* */
} /* */
else /* */
{ RecordSource(master_record) = symbol(file); /* */
} /* */
/* */
if (verbose) /* If desired print an */
{ VerbosePrint2("Reading ",file); } /* open message. */
/* */
dbn = DBnormal(db); /* */
if (dbn != RecordNULL) /* */
{ /* */
while (NextRecord(dbn) != RecordNULL) /* */
{ dbn = NextRecord(dbn); } /* */
} /* */
DBnormal(db) = dbn; /* */
/* */
for (type = parse_bib(master_record); /* */
type != BIB_EOF; /* */
type = parse_bib(master_record)) /* */
{ /* */
if (type < 0) /* Errors give rise to */
{ SkipWarning; } /* a warning. */
else if (IsSpecialRecord(type)) /* STRING/PREAMBLE/COMMENT*/
{ db_insert(db, /* */
copy_record(master_record), /* */
verbose); /* */
} /* */
else /* */
{ rec = copy_record(master_record); /* Make a private copy. */
RecordOldKey(rec) = *RecordHeap(rec); /* */
db_insert(db,rec, verbose); /* */
if (verbose) { ErrC('+'); FlushErr; } /* */
} /* */
} /* */
/* */
if (verbose) /* If desired print a */
{ VerbosePrint2("Done with ",file); } /* close message. */
/* */
(void)seen(); /* Close the file. */
/* */
return false; /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function*: mark_string()
** Purpose:
**
**
** Arguments:
** rec the record
** s the string
** Returns: nothing
**___________________________________________________ */
static void mark_string(rec, s) /* */
Record rec; /* */
String s; /* */
{ int d; /* */
Record r; /* */
/* */
while (*s) /* */
{ /* */
switch (*s) /* */
{ case '\0': return; /* */
case '"': /* */
d = 0; /* */
while (*++s && (*s != '"' || d > 0)) /* */
{ switch (*s) /* */
{ case '{': d++; break; /* */
case '}': d--; break; /* */
case '\\': if (s[1]) s++; /* */
} /* */
} /* */
if (*s) s++; /* */
break; /* */
case '{': /* */
d = 1; /* */
while (*++s && d > 0) /* */
{ switch (*s) /* */
{ case '{': d++; break; /* */
case '}': d--; break; /* */
case '\\': if (s[1]) s++; /* */
} /* */
} /* */
if (*s) s++; /* */
break; /* */
default: /* */
if (is_allowed(*s)) /* */
{ Symbol mac = sym_extract(&s, false); /* */
/* */
for (r = rec; r; r = NextRecord(r)) /* */
{ if (*RecordHeap(r) == mac) /* */
{ SetRecordMARK(r); /* */
break; /* */
} /* */
} /* */
} /* */
else s++; /* */
} /* */
} /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function*: print_segment()
** Type: void
** Purpose:
**
** Arguments:
** file the file
** db the database
** rec the record
** allp the indicator for printing all
** Returns: nothing
**___________________________________________________ */
static void print_segment(file, db, rec, allp) /* */
FILE *file; /* */
DB db; /* */
Record rec; /* */
bool allp; /* */
{ /* */
if (rec == RecordNULL) return; /* */
/* */
while (PrevRecord(rec) != RecordNULL) /* Rewind to beginning. */
{ rec = PrevRecord(rec); } /* */
/* */
for ( ; rec != RecordNULL; rec = NextRecord(rec))/* */
{ /* */
if (!RecordIsDELETED(rec)) /* */
{ if (allp || RecordIsMARKED(rec)) /* */
{ fput_record(file, rec, db, (String)"@"); /* */
} /* */
} /* */
else if (rsc_del_q) /* */
{ fput_record(file, rec,db, rsc_del_pre); } /* */
} /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function*: preprint_string()
** Type: void
** Purpose:
**
** Arguments:
** file the file
** db the database
** strings the string definition
** rec the record
** Returns: nothing
**___________________________________________________ */
static void preprint_string(file, db, strings, rec)/* */
FILE *file; /* */
DB db; /* */
Record strings; /* */
Record rec; /* */
{ int i, d; /* */
Record r; /* */
/* */
for (i = 0; i < RecordFree(rec); i += 2) /* */
{ if (RecordHeap(rec)[i] != NO_SYMBOL) /* */
{ String s = SymbolValue(RecordHeap(rec)[i+1]);/* */
/* */
while(*s) /* */
{ /* */
switch (*s) /* */
{ case '\0': return; /* */
case '"': /* */
d = 0; /* */
while (*++s && (*s != '"' || d > 0)) /* */
{ switch (*s) /* */
{ case '{': d++; break; /* */
case '}': d--; break; /* */
case '\\': if (s[1]) s++; /* */
} /* */
} /* */
if (*s) s++; /* */
break; /* */
case '{': /* */
d = 1; /* */
while (*++s && d > 0) /* */
{ switch (*s) /* */
{ case '{': d++; break; /* */
case '}': d--; break; /* */
case '\\': if (s[1]) s++; /* */
} /* */
} /* */
if (*s) s++; /* */
break; /* */
default: /* */
if (is_allowed(*s)) /* */
{ Symbol mac = sym_extract(&s, false); /* */
/* */
for (r = strings; /* */
r != RecordNULL; /* */
r = NextRecord(r)) /* */
{ if (*RecordHeap(r) == mac && /* */
RecordIsMARKED(r)) /* */
{ ClearRecordMARK(r); /* */
fput_record(file, /* */
r, /* */
db, /* */
(String)"@"); /* */
/* */
preprint_string(file, /* */
db, /* */
strings, /* */
r); /* */
} /* */
} /* */
} /* */
else s++; /* */
} /* */
} /* */
} /* */
} /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function*: print_strings()
** Type: void
** Purpose:
**
** Arguments:
** file the target file
** db the database
** allp the indicator to include all
** Returns: nothing
**___________________________________________________ */
static void print_strings(file, db, allp) /* */
FILE *file; /* */
DB db; /* */
bool allp; /* */
{ Record strings = DBstring(db); /* */
Record rec; /* */
/* */
if (strings == RecordNULL) return; /* */
/* */
while (PrevRecord(strings)) /* find beginning */
{ strings = PrevRecord(strings); } /* of strings */
/* */
if (allp) /* */
{ /* */
for (rec = strings; /* */
rec != RecordNULL; /* */
rec = NextRecord(rec)) /* */
{ SetRecordMARK(rec); } /* */
} /* */
else /* */
{ int i; /* */
/* */
for (rec = strings; /* reset all marks */
rec != RecordNULL; /* */
rec = NextRecord(rec)) /* */
{ ClearRecordMARK(rec); } /* */
/* */
if ((rec=DBnormal(db)) != RecordNULL) /* */
{ /* */
while (PrevRecord(rec)) rec = PrevRecord(rec);/* */
/* */
for ( ; /* */
rec != RecordNULL; /* */
rec = NextRecord(rec)) /* */
{ /* */
if (!RecordIsDELETED(rec)) /* */
{ /* */
for (i = 2; i < RecordFree(rec); i += 2) /* */
{ if (RecordHeap(rec)[i] != NULL) /* */
{ mark_string(strings, /* */
SymbolValue(RecordHeap(rec)[i+1]));/* */
} /* */
} /* */
} /* */
} /* */
/* */
for (rec = strings; /* mark the dependencies */
rec != RecordNULL; /* from within strings */
rec = NextRecord(rec)) /* */
{ /* */
if (RecordIsMARKED(rec)) /* */
{ /* */
for (i = 1; i < RecordFree(rec); i++) /* */
{ if (RecordHeap(rec)[i] != NULL) /* */
{ mark_string(strings, /* */
SymbolValue(RecordHeap(rec)[i]));/* */
} /* */
} /* */
} /* */
} /* */
} /* */
} /* */
/* */
for (rec = strings; /* */
rec != RecordNULL; /* */
rec = NextRecord(rec)) /* */
{ /* */
if (!RecordIsDELETED(rec) && /* */
RecordIsMARKED(rec)) /* */
{ preprint_string(file, db, strings, rec); } /* */
} /* */
/* */
print_segment(file, db, strings, false); /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: print_db()
** Purpose: Print a database to a file in a way which is readable by
** \BibTeX. The spec determines which parts should be
** printed and the order of this parts. The spec is
** processed from left to right. Each unknown character
** is silently ignored. The following characters
** correspond to parts of the database:
** \begin{description}
** \item [p] The preamble.
** \item [\$] All strings (macros) contained in the database.
** \item [S] The strings (macros) which are used in the
** database.
** \item [s] The strings (macros) contained in the database
** where the resource print.all.strings determines
** whether all strings should be printed or the used
** strings only.
** \item [n] The normal records.
** \item [c] The comments.
** \item [i] The includes.
** \item [a] The aliases.
** \item [m] The modifies.
** \end{description}
** Upper-case letters which are not mentioned are silently folded
** to their lower-case counterparts.
** Arguments:
** file The file handle for printing.
** db The database to print
** spec String containing the specification of the parts to print.
** Returns: nothing
**___________________________________________________ */
void print_db(file,db,spec) /* */
FILE *file; /* */
DB db; /* */
char *spec; /* */
{ /* */
while (*spec) /* */
{ switch (*(spec++)) /* */
{ case 'p': case 'P': /* */
print_segment(file, db, DBpreamble(db), true);/* */
break; /* */
case 'n': case 'N': /* */
print_segment(file, db, DBnormal(db), true);/* */
break; /* */
case 's': /* */
print_strings(file, db, rsc_all_macs); /* */
break; /* */
case '$': /* */
print_strings(file, db, true); /* */
break; /* */
case 'S': /* */
print_strings(file, db, false); /* */
break; /* */
case 'c': case 'C': /* */
print_segment(file, db, DBcomment(db), true);/* */
break; /* */
case 'i': case 'I': /* */
print_segment(file, db, DBinclude(db), true);/* */
break; /* */
case 'a': case 'A': /* */
print_segment(file, db, DBalias(db), true);/* */
break; /* */
case 'm': case 'M': /* */
print_segment(file, db, DBmodify(db), true);/* */
break; /* */
} /* */
} /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: delete_record()
** Purpose: Delete a record from a database.
** It is not checked, that the record really is part of the
** database. The record is just unlinked from its
** list. Just in case the record should be the first one
** the database record is modified.
** Arguments:
** db Database containing |rec|.
** rec Record to delete.
** Returns: nothing
**___________________________________________________ */
void delete_record(db,rec) /* */
DB db; /* */
Record rec; /* */
{ Record *rp; /* */
/* */
switch (RecordType(rec)) /* */
{ case BIB_PREAMBLE: rp = &DBpreamble(db); break;/* */
case BIB_STRING: rp = &DBstring(db); break;/* */
case BIB_COMMENT: rp = &DBcomment(db); break;/* */
case BIB_MODIFY: rp = &DBmodify(db); break;/* */
case BIB_INCLUDE: rp = &DBinclude(db); break;/* */
case BIB_ALIAS: rp = &DBalias(db); break;/* */
default: rp = &DBnormal(db); break;/* */
} /* */
if (rec == *rp) /* */
{ if (NextRecord(rec) != RecordNULL) /* */
{ *rp = NextRecord(rec); } /* */
else if (PrevRecord(rec) != RecordNULL) /* */
{ *rp = PrevRecord(rec); } /* */
else /* */
{ *rp = RecordNULL; } /* */
} /* */
if (PrevRecord(rec) != RecordNULL) /* */
{ NextRecord(PrevRecord(rec)) = NextRecord(rec); }/* */
if (NextRecord(rec) != RecordNULL) /* */
{ PrevRecord(NextRecord(rec)) = PrevRecord(rec); }/* */
free_1_record(rec); /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: db_forall()
** Purpose: Visit all normal records in the data base and apply the given
** function |fct| to each.
** If this function returns |true| then no more records need to
** be visited.
** No special order can be assumed in which the records are seen.
** Arguments:
** fct Boolean valued function determining the end of the
** processing. It takes two arguments a |DB| and a |Record|.
** Returns: nothing
**___________________________________________________ */
void db_forall(db,fct) /* */
DB db; /* */
bool (*fct)_ARG((DB,Record)); /* Function pointer */
{ register Record rec, next; /* */
/* */
if (DBnormal(db) == RecordNULL) return; /* */
/* */
for (rec = DBnormal(db); /* */
rec != RecordNULL; /* */
rec = next) /* */
{ next = NextRecord(rec); /* */
if (!RecordIsDELETED(rec) && /* */
(*fct)(db,rec)) return; /* */
} /* */
/* */
for (rec = PrevRecord(DBnormal(db)); /* */
rec != RecordNULL; /* */
rec = next) /* */
{ next = PrevRecord(rec); /* */
if (!RecordIsDELETED(rec) && /* */
(*fct)(db,rec)) return; /* */
} /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: db_find()
** Purpose: Search the database for a record with a given key.
** If |RecordOldKey| is set for the record then use this value.
** Otherwise use |*Heap|. |*Heap| contains the reference
** key of normal records.
**
** Deleted records are ignored. An arbitrary matching
** record is returned. Thus if more than one record have
** the same key then the behavior is nondeterministic.
** Arguments:
** db Database to search in.
** key the key to search for
** Returns: the record found or |NULL| if none is found
**___________________________________________________ */
Record db_find(db,key) /* */
DB db; /* */
Symbol key; /* */
{ register Record rec; /* */
/* */
DebugPrint2("Finding... ", SymbolValue(key)); /* */
/* */
if (DBnormal(db) == RecordNULL) return RecordNULL;/* */
/* */
for (rec = DBnormal(db); /* */
rec != RecordNULL; /* */
rec = NextRecord(rec)) /* */
{ /* */
if (!RecordIsDELETED(rec)) /* */
{ if (RecordOldKey(rec) != NULL) /* */
{ if (RecordOldKey(rec) == key) return rec; /* */
} /* */
else if (*RecordHeap(rec) == key) return rec;/* */
} /* */
} /* */
/* */
for (rec = PrevRecord(DBnormal(db)); /* */
rec != RecordNULL; /* */
rec = PrevRecord(rec)) /* */
{ /* */
if (!RecordIsDELETED(rec)) /* */
{ if (RecordOldKey(rec) != NULL) /* */
{ if (RecordOldKey(rec) == key) return rec; /* */
} /* */
else if (*RecordHeap(rec) == key) return rec;/* */
} /* */
} /* */
return RecordNULL; /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: db_search()
** Purpose: Search the database for a record with a given key.
** If |RecordOldKey| is set for the record then use this value.
** Otherwise use |*Heap|. |*Heap| contains the reference
** key of normal records.
**
** Deleted records are not ignored! An arbitrary matching
** record is returned. Thus if more than one record have
** the same key then the behavior is nondeterministic.
** Arguments:
** db Database to search in.
** key the key to search for
** Returns: the record found or |NULL| if none is found
**___________________________________________________ */
Record db_search(db, key) /* */
DB db; /* */
Symbol key; /* */
{ register Record rec; /* */
/* */
if (DBnormal(db) == RecordNULL) return RecordNULL;/* */
/* */
for (rec = DBnormal(db); /* */
rec != RecordNULL; /* */
rec = NextRecord(rec)) /* */
{ if (RecordOldKey(rec) != NO_SYMBOL) /* */
{ if (RecordOldKey(rec) == key) return rec; } /* */
else if (*RecordHeap(rec) == key) return rec; /* */
} /* */
/* */
for (rec = PrevRecord(DBnormal(db)); /* */
rec != RecordNULL; /* */
rec = PrevRecord(rec)) /* */
{ if (RecordOldKey(rec) != NULL) /* */
{ if (RecordOldKey(rec) == key) return rec; } /* */
else if (*RecordHeap(rec) == key) return rec; /* */
} /* */
return RecordNULL; /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: db_new_key()
** Purpose: Search the database for a record with a given old key and
** return the new one.
** Arguments:
** db Database to search in.
** key Key to find.
** Returns: nothing
**___________________________________________________ */
Symbol db_new_key(db, key) /* */
DB db; /* */
Symbol key; /* */
{ register Record rec; /* */
/* */
if (DBnormal(db) == RecordNULL) return NULL; /* */
/* */
for (rec = DBnormal(db); /* */
rec != RecordNULL; /* */
rec = NextRecord(rec)) /* */
{ /* */
if (RecordOldKey(rec) != NULL && /* */
RecordOldKey(rec) == key) /* */
return *RecordHeap(rec); /* */
} /* */
/* */
for (rec = PrevRecord(DBnormal(db)); /* */
rec != RecordNULL; /* */
rec = PrevRecord(rec)) /* */
{ /* */
if (RecordOldKey(rec) != NULL && /* */
RecordOldKey(rec) == key) /* */
return *RecordHeap(rec); /* */
} /* */
return NULL; /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function: db_rewind()
** Purpose: Rewind the normal records of a database to point to the first
** record if at least one records exists. Otherwise nothing is
** done.
** Arguments:
** db Database to rewind.
** Returns: nothing
**___________________________________________________ */
void db_rewind(db) /* */
DB db; /* */
{ /* */
if (DBnormal(db) == RecordNULL) return; /* */
/* */
while (PrevRecord(DBnormal(db)) != RecordNULL) /* */
{ DBnormal(db) = PrevRecord(DBnormal(db)); } /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** Function*: rec__sort()
** Purpose:
**
** Arguments:
** rec the record
** less the comparator
** Returns:
**___________________________________________________ */
static Record rec__sort(rec,less) /* */
Record rec; /* */
int (*less)_ARG((Record,Record)); /* Function pointer */
{ Record r; /* */
Record new; /* */
/* */
if (rec == RecordNULL) return rec; /* */
r = RecordNULL ; /* */
/* */
while (PrevRecord(rec) != RecordNULL) /* */
{ rec = PrevRecord(rec); } /* */
/* */
while (rec != RecordNULL) /* */
{ new = rec; /* */
rec = NextRecord(rec); /* */
r = insert_record(new,r,less); /* */
} /* */
return r; /* */
} /*------------------------*/
/*-----------------------------------------------------------------------------
** The sorting uses a variant of insertion sort.
** Thus the major task is performed in this function, which is called to store
** a record.
** The Record structure contains two pointers to the same type. With those
** pointers a double linked list is established. sort_rec is either NULL ---
** if no record is stored --- or it is a pointer to some element in the
** ORDERED list:
**
** +------+ +------+ +------+ +------+ +------+ +------+
** -->|Record|-->|Record|-->|Record|-->|Record|-->|Record|-->|Record|-->
** <--| |<--| |<--| |<--| |<--| |<--| |<--
** +------+ +------+ +------+ +------+ +------+ +------+
** ^
** db_______|
**
** With this picture in mind it's obvious what's to be done.
** There are two major cases. To find the right position to insert the new
** record
** - either the pointer has to be moved leftward
** - or the pointer has to be moved rightward
**
** Special cases have to be considered if the new record is to be inserted
** before the first or after the last element in the list.
**
** The rest is simply leg work.
**
** Well, a word on the complexity.
** If the input is almost sorted (correct or in reverse order) then the
** algorithm is linear.
** In the worst case the algorithm is quadratic. This worst case looks as
** follows:
** A record has to be inserted which is smaller than the least element in the
** list. Afterwards one which is greater than the largest.
**
** NOTE: CURRENTLY THE ALGORITHM IS NOT STABLE:
** Records with the same key may get mixed in the sorted list.
**___________________________________________________ */
static Record insert_record(rec,ptr,less) /* */
register Record rec; /* */
register Record ptr; /* */
int (*less)_ARG((Record,Record)); /* Function pointer */
{ /* */
if (ptr == RecordNULL) { /* List is empty */
PrevRecord(rec) = RecordNULL; /* */
NextRecord(rec) = RecordNULL; /* */
return rec; /* */
} /* */
/* */
if ((*less)(rec,ptr)) /* */
{ /* */
while (PrevRecord(ptr) != RecordNULL) /* Move leftward. */
{ ptr = PrevRecord(ptr); /* */
if (!(*less)(rec,ptr)) /* */
{ PrevRecord(rec) = ptr; /* Insert */
NextRecord(rec) = NextRecord(ptr);/* */
PrevRecord(NextRecord(rec))= rec; /* */
NextRecord(ptr) = rec; /* */
return rec; /* */
} /* */
} /* */
PrevRecord(ptr) = rec; /* Insert before the first*/
NextRecord(rec) = ptr; /* */
PrevRecord(rec) = RecordNULL; /* */
} /* */
else /* */
{ /* */
while (NextRecord(ptr) != RecordNULL) /* Move rightward. */
{ ptr = NextRecord(ptr); /* */
if ((*less)(rec,ptr)) /* */