-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcifst.c
1699 lines (1592 loc) · 46.6 KB
/
cifst.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
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include "cisis.h"
#if CICPP
#include <cifst.hpp>
#include <cirun.hpp>
//#include <ciutl.hpp>
#if USE_GDBFMT
#include <format.hpp>
#else
#include <cifmt.hpp>
#endif
#endif /* CICPP */
#if CICPP
#define FST351 0
#else
#define FST351 1
#endif
#define FSTBSIZ 0x7FFF
#if BEFORE20010604
#ifdef CI_WINISIS
#define ENTRY_DLM 0x01 /* no Ctrl C may be entered and therefore... */
#else
#define ENTRY_DLM ';' /* for inline fst's */
#endif
#endif
#define FST_EDLM 0x01 /* no Ctrl C may be entered and therefore... */
/* ------------------------- CIFST.HPP --------------------------------- */
#if CICPP
#define fst_gener xfst_gener /* internal use */
#define fst_free xfst_free /* internal use */
/* #define fst_inter xfst_inter no conversion */
#define fst_link xfst_link /* internal use */
#define fst_writ xfst_writ /* internal use */
#define fst_open xfst_open /* internal use */
#define fst_clos xfst_clos /* internal use */
#define pstdecod xpstdecod /* internal use */
#define prtlink xprtlink /* internal use */
#endif /* CICPP */
/* --------------------------------------------------------------------- */
#if !CICPP
int cifstfix=0; /* key %8"_LD_" %5d %4d %4d */
int cifstfim=0; /* key %8"_LD_" w/ cifstfix */
#endif /* CICPP */
/* ----------------------------- fst.c ------------------------------ */
#define FSTTRACE 0
#if !CICPP
#define FSSTRACE 1
#endif
#if !CICPP
LONGX fst_error; /* gener - fst spec error */
LONGX fst_errl; /* gener - fst spec line where error occured */
char *fst_errp; /* gener - fst spec ptr where error occured */
char *fst_fmtap=NULL; /* inter - default: no static format area */
LONGX fst_fmtby=MAXMFRL; /* inter - bytes for dynamic format area */
char fst_rdlm='%'; /* inter - new occ delimiter */
char *fst_batchup=NULL; /* inter - batchp for fldupdat() area */
char *fst_batchp=NULL; /* inter - batchp for fldupdat() commands */
int fst_batch0=1; /* inter - batchp ^mmfn^oocc^ccnt^l1/2 option */
char fst_a351='\0'; /* inter - 351 */
UCHR *fst_fbuff[2]={NULL,NULL}; /* writbsiz*/
UWORD fst_fbsiz=FSTBSIZ/*0x7FFF*/;
UWORD fst_fleft[2];
UWORD fst_ffree[2]={0,0};
int fst_fd[2]={0,0}; /* inter - file descriptor for .ln1/.ln2 */
LONGX fst_fx[2]={0,0}; /* inter - output records to .ln1/.ln2 */
char *fst_hdrp=NULL; /* inter - hit file headers - area */
int fst_hdrx=0; /* inter - hit file headers - #bytes allocated */
int fst_hdru=0; /* inter - hit file headers - #bytes stored */
int fst_hdrt=0; /* inter - hit file headers - for area+^m^t^o^c */
char *fst_wlupifnp=NULL; /* inter - word lookup I/F for TW processing */
TRMSTRU *fst_wluptrmp=NULL; /* inter - word lookup I/F for TW processing */
LONGX fst_wlupitrm=0L; /* inter - word lookup I/F for TW processing */
#endif /* CICPP */
#if CICPP
#define NO_IREC -1L
#endif /* CICPP */
#if CICPP
FSTSTRU :: FSTSTRU (CISISX *parm_cisisxp, char *gidbnp, char *fstfile, char *stwfile,
#if USE_GDBFMT
MST_FILE *mst, BTREE *btree,
#endif
/* LONGX maxlk1, LONGX maxlk2, int instream):*/
LONGX maxlk1, LONGX maxlk2, int instream, int stw_instream):
cisisxp(parm_cisisxp), cifstfix(0), cifstfim(0), fst_error(0L), fst_errl(0L),
fst_errp(NULL), fst_fmtap (NULL), fst_fmtby(MAXMFRL),
fst_rdlm('%') ,
fst_batchup(NULL), fst_batchp(NULL), fst_batch0(1),
fst_a351('\0'), fst_fbsiz(FSTBSIZ/*0x7FFF*/)
{
fst_fbuff[0] = NULL;
fst_fbuff[1] = NULL;
fst_fleft[0] = 0;
fst_fleft[1] = 0;
fst_ffree[0] = 0;
fst_ffree[1] = 0;
fst_fd[0] = 0;
fst_fd[1] = 0;
fst_fx[0] = 0;
fst_fx[1] = 0;
fst_pgmp=NULL;
fst_stwp=NULL;
fst_nstws=0;
fst_area1p=NULL;
fst_maxlk1=maxlk1;
fst_area2p=NULL;
fst_maxlk2=maxlk2;
fst_qtylk1=0;
fst_qtylk2=0;
fst_oarea1p=NULL;
fst_oarea2p=NULL;
fst_oqtylk1=0;
fst_oqtylk2=0;
fst_hdrp=NULL;
fst_hdrx=0;
fst_hdru=0;
fst_hdrt=0;
fst_wlupifnp=NULL; /* inter - word lookup I/F for TW processing */
fst_wluptrmp=NULL; /* inter - word lookup I/F for TW processing */
fst_wlupitrm=0L; /* inter - word lookup I/F for TW processing */
#if USE_GDBFMT
fst_mst=mst;
fst_btree=btree;
#endif
fst_recp=NULL;
int nlins = 0;
#if !CIAPI_SOURCE
char *specp=xfst_loadfst(gidbnp,fstfile,instream);
#ifdef CI_WINISIS
// ---- DS 03/98
if (!specp) specp=xfst_loadfst(NULL,fstfile,instream);
// ---- DS 03/98 (end)
#endif
if (!specp) fst_error+=1;
/* fst_stwp=xfst_loadstw(gidbnp,stwfile,&fst_nstws); */
fst_stwp=xfst_loadstw(gidbnp,stwfile,&fst_nstws, stw_instream);
//if (!fst_stwp) fst_error+=2;
if (specp) nlins=xfst_gener(specp);
delete [] specp;
if (nlins <= 0) fst_error+=4;
#endif /* CIAPI_SOURCE */
}
FSTSTRU :: ~FSTSTRU (void)
{
fst_clos(0); fst_clos(1);
xfst_free(); // delete each entry pointed to by fst_pgmp, including fmtp
}
char * FSTSTRU :: xfst_batch(LONGX nbytes, int option)
{
delete [] fst_batchup;
try {fst_batchup=new char [nbytes];}
catch(BAD_ALLOC) {fst_batchup=(char *)NULL;}
fst_batch0 = option;
return(fst_batchup);
}
RECSTRU * FSTSTRU :: xfst_getrecp(void)
{
if (!fst_recp) fst_recp = new RECSTRU(cisisxp);
return(fst_recp);
}
void FSTSTRU :: xfst_setrecp(RECSTRU *recp)
{
fst_recp=recp;
}
#endif /* CICPP */
#if CICPP
char * FSTSTRU::xfst_loadfst(char *gidbnp, char *file, int instream)
{
char *fstspecp = NULL; // = "24 4 v24\n 70 0 (v70/)\n 69 2 v69";
if (instream) {
try {fstspecp=new char [strlen(file)+1];}
catch(BAD_ALLOC) {fstspecp=(char *)NULL;}
if (fstspecp == (char *)NULL) return(NULL);
strcpy(fstspecp,file);
}
else fstspecp=loadfile(gidbnp,'\0',file,NULL,0L,'\n'); /* ok */
return fstspecp;
}
char * FSTSTRU::xfst_loadstw(char *gidbnp, char *file, int *nstwsp, int stw_instream)
{
char *stwp=NULL;
int nstws=0;
//if (file) if (file[0]) stwp=loadstw(gidbnp, file,NULL,0L,&nstws);
if (file)
if (file[0])
if (stw_instream) {
stwp=xloadmemstw(file,&nstws);
} else {
stwp=loadstw(gidbnp, file,NULL,0L,&nstws);
}
if (nstwsp) *nstwsp = nstws;
return stwp;
}
LONGX FSTSTRU :: xfst_gener(char *fstspecp)
#else
LONGX fst_gener(pgmpp,fstspecp) /*
--------------
aloca e compila uma fst
*/
FST_CODE **pgmpp;
char *fstspecp;
#endif /* CICPP */
{
#if CICPP
FST_CODE **pgmpp = &fst_pgmp;
#endif
FST_CODE *pgmp,*lastp=NULL;
LONGX nfsts=0L;
UWORD tag;
int itx;
FMT_CODX *fmtp;
char *p,*q,c;
int n;
LONGX fmtrc;
char cifstdlm=FST_EDLM; /* multiple fst delimiter */ /* 20010604 */
#if FSTTRACE
printf("fst_gener - '%s'\n",fstspecp);
#endif
if (rectrace) fsttrace=1;
/* init pgmpp */
*pgmpp=NULL;
nfsts=0;
/* point to fst specification and do it */
p=fstspecp;
fst_errl=1;
fst_errp=p;
if (*p) if (!isdigit(*p)) cifstdlm = *p++;
for (fst_error=0; *p; ) {
/* ignore leading spaces ( /ht/cr/lf/vt/ff) */
while (isspace(*p) || *p == cifstdlm) p++;
if (!*p) break;
/* new fst entry */
#if CICPP
try { pgmp=(FST_CODE *)new char[sizeof(FST_CODE)];}
catch (BAD_ALLOC){pgmp=(FST_CODE *)ALLONULL;}
#else
pgmp=(FST_CODE *)ALLOC((ALLOPARM)sizeof(FST_CODE));
#endif /* CICPP */
if (pgmp == (FST_CODE *)ALLONULL) fatal("fst_gener/ALLOC");
memset(pgmp,0x00,sizeof(FST_CODE));
if (lastp) lastp->nextp=pgmp; else *pgmpp=pgmp;
lastp=pgmp;
/* parse */
fst_errp=p;
if (!isdigit(*p)) {fst_error=FSTERR1; break;}
for (tag=0; isdigit(*p); p++) tag=tag*10+((int)(*p)-(int)'0');
while (*p == ' ' || *p == '\t') p++;
if (!isdigit(*p)) {fst_error=FSTERR2; break;}
for (itx=0; isdigit(*p); p++) itx=itx*10+((int)(*p)-(int)'0');
while (*p == ' ' || *p == '\t') p++;
if (itx != 351)
if (itx < 0 || itx > 8)
if (itx < 1000 || itx > 1008)
if (itx < 2000 || itx > 2008)
{fst_error=FSTERR2; break;}
#if BEFORE20010604
if (isspace(*p) || *p == ENTRY_DLM) {fst_error=FSTERR3; break;}
#else
if (isspace(*p) || *p == cifstdlm) {fst_error=FSTERR3; break;}
#endif
for (n=0, q=p; ; q++, n++)
#if BEFORE20010604
if (*q == '\n' || *q == ENTRY_DLM || !*q) {c= *q; break;}
#else
if (*q == '\n' || *q == cifstdlm || !*q) {c= *q; break;}
#endif
if (!n) {fst_error=FSTERR3; break;}
*q='\0';
if (fsttrace) printf("fst_gener - tag=%d it=%d pft='%s'\n",tag,itx,p);
#if CICPP
#if USE_GDBFMT
fmtrc=0;
fmtp=strdup(p); // RELEASE
#else
fmtp=(char *)new FMTSTRU(cisisxp);
fmtrc = ((FMTSTRU *)fmtp)->xfmt_gener(p);
#endif /* USE_GDBFMT */
#else
fmtrc=fmt_gener(&fmtp,p);
#endif /* CICPP */
if (fmtrc) {fst_error=FSTERRF; break;}
pgmp->tag=tag;
pgmp->it=itx;
pgmp->fmtp=fmtp;
/* restore last chr */
*q=c;
/* next line */
p=q;
fst_errl++;
nfsts++;
/* next line */
fst_errl++;
}
if (fst_error) {
pgmp= *pgmpp;
#if CICPP
xfst_free();
#else /* CICPP */
fst_free(pgmp);
#endif /* CICPP */
*pgmpp=NULL;
return(fst_error);
}
else {
fst_errl=0;
fst_errp=NULL;
return(nfsts);
}
}
#if CICPP
void FSTSTRU :: xfst_free(void)
#else
void fst_free(pgmp) /*
--------------
libera area de uma fst
inclui delete's de FSTSTRU
*/
FST_CODE *pgmp;
#endif /* CICPP */
{
#if CICPP
FST_CODE *pgmp = fst_pgmp;
#endif
FST_CODE *nextp;
for (; pgmp; pgmp=nextp) {
if (pgmp->fmtp)
#if USE_GDBFMT
free (pgmp->fmtp); // because has been allocated via strdup()
// delete [] pgmp->fmtp; // RELEASE
#else
#if CICPP
//((FMTSTRU *)pgmp->fmtp)->xfmt_free();
delete (FMTSTRU *)pgmp->fmtp;
#else
fmt_free(pgmp->fmtp); /* fmt_free nao testava */
#endif /* CICPP */
#endif
nextp=pgmp->nextp;
#if CICPP
delete [] (char *)pgmp;
#else
FREE(pgmp);
#endif /* CICPP */
}
#if CICPP
delete [] fst_stwp; fst_stwp = NULL;
delete [] fst_area1p; fst_area1p = NULL;
delete [] fst_area2p; fst_area2p = NULL;
delete [] fst_oarea1p; fst_oarea1p = NULL;
delete [] fst_oarea2p; fst_oarea2p = NULL;
delete fst_recp; fst_recp = NULL;
delete [] fst_batchup; fst_batchup = NULL;
delete fst_wluptrmp; fst_wluptrmp = NULL;
#else
/*
if (fst_stwp) FREE(fst_stwp);
if (fst_area1p) FREE(fst_area1p);
if (fst_area2p) FREE(fst_area2p);
if (fst_oarea1p) FREE(fst_oarea1p);
if (fst_oarea2p) FREE(fst_oarea2p);
if (fst_recp) FREE(fst_recp);
if (fst_batchup) FREE(fst_batchup);
*/
if (fst_wluptrmp) if (fst_wlupitrm) {
FREE(vtrmp[fst_wlupitrm]); vtrmp[fst_wlupitrm]=NULL; ntrms--;
fst_wlupitrm=0L;
}
#endif /* CICPP */
/*
fst_stwp=NULL;
fst_area1p=NULL;
fst_area2p=NULL;
fst_oarea1p=NULL;
fst_oarea2p=NULL;
fst_recp=NULL;
fst_batchup=NULL;
*/
fst_wluptrmp=NULL;
}
#if CICPP
LONGX FSTSTRU :: xfst_inter(int bwcase)
#else
LONGX fst_inter(pgmp,irec,stwp,area1pp,max1,area2pp,max2,qty1p,qty2p) /*
--------------
se area1p = NULL entao aloca max1 x LINK1;
se area2p = NULL entao aloca max2 x LINK2;
executa pgmp;
retorna qty1+qty2
*/
FST_CODE *pgmp;
LONGX irec;
char *stwp;
char **area1pp;
LONGX max1;
char **area2pp;
LONGX max2;
LONGX *qty1p;
LONGX *qty2p;
#endif /* CICPP */
{
#if CICPP
#if USE_GDBFMT
MST_FILE *mst=fst_mst;
BTREE *btree=fst_btree;
#endif
FST_CODE *pgmp = fst_pgmp;
char *stwp = fst_stwp;
char **area1pp = (!bwcase) ? &fst_area1p : &fst_oarea1p;
LONGX max1 = fst_maxlk1;
char **area2pp = (!bwcase) ? &fst_area2p : &fst_oarea2p;
LONGX max2 = fst_maxlk2;
LONGX *qty1p = (!bwcase) ? &fst_qtylk1 : &fst_oqtylk1;
LONGX *qty2p = (!bwcase) ? &fst_qtylk2 : &fst_oqtylk2;
LONGX irec = NO_IREC;
#else
LONGX xqty1,xqty2;
#endif /* CICPP */
RECSTRU *recp;
LONGX mfn;
UWORD tag,occ,cnt;
int itx,ity,itz,nwo,nwc;
FMT_CODX *fmtp;
UCHR word[LE2+LE2+LE2+1],*p,*q,*wp,*sp,c1,c2;
LINK1 *link1p;
LINK2 *link2p;
LONGX x1,x2;
char *fmtareap,*fmtap;
char *pfxp,*keyp,*hdrp;
int pfxl,n,wlen,isstw,ifst;
#if FST351
int n351;
#endif
int error=0,hlen;
LONGX fmtrc,nbytes;
#define ITMARKUP 1
#if ITMARKUP
int itm;
char *itmp;
int itmn,itmx;
int itmalen,itmyplen,itmelen,itmstriplen,itmyok,itmymatch;
int itmfldleft,itmfldqleft;
char *itmyp,*itmfldp,*itmfldq;
#define MAXITMARKUPLEN 100
char itmend[MAXITMARKUPLEN+1];
char itmuc[MAXITMARKUPLEN+1];
char *itmxp,*itmxq;
int itmxx;
#endif /* ITMARKUP */
#define STRIPMARKUP 1
#if STRIPMARKUP /* STRIPMARKUP */
char *smuenvp=NULL;
int smumaxlen=0;
int fldleft,qleft,striplen;
int xdir,erased,match;
char *fldp,*fldq;
#define STRIPMAXTAGS 16
UWORD striptags[STRIPMAXTAGS+1];
int nstrips=0;
LONGX ltag;
UWORD xtag;
int xloop,xxtag;
#endif
#if UTF8
int upcase_length;
#endif // UTF8
#if FSTTRACE
printf("fst_inter - pgmp=%p irec=%"_LD_" area1=%p/%"_LD_" area2=%p/%"_LD_"\n",
pgmp,irec,*area1pp,max1,*area2pp,max2);
#endif
/* check fst */
#if !CICPP
if (!qty1p) qty1p= &xqty1;
if (!qty2p) qty2p= &xqty2;
#endif /* CICPP */
*qty1p=0L;
*qty2p=0L;
if (!pgmp) return(-1L);
#if CICPP
//recp must be set via setrecp (or mst is provided)
recp=fst_recp;
#else /* CICPP */
/* check irec */
if (!nrecs) fatal("fst_inter/nrecs");
if (irec < 0 || irec >= maxnrec) fatal("fst_inter/irec");
if ((recp=vrecp[irec]) == NULL) fatal("fst_inter/recp");
#endif /* CICPP */
#if USE_GDBFMT
if (recp) mfn=MFRmfn; /* recp is provided */
else mfn=mst->getmfn();
#else
if (RECtype != TYPEMFR) fatal("fst_inter/TYPEMFR");
mfn=MFRmfn;
#endif
#if STRIPMARKUP /* STRIPMARKUP */
p=(unsigned char *)dbxcipar(NULL,"ci_fststrip",'=');
if (dbxcipok) smuenvp=(char *)p;
#if PC || UNIX
if (!smuenvp)
if ((smuenvp=getenv("CI_FSTSTRIP")) == NULL)
smuenvp=getenv("ci_fststrip");
#endif
if (smuenvp) if (sscanf(smuenvp,"%d",&smumaxlen) != 1) fatal("fst_inter/CI_FSTSTRIP/maxlen");
if (smumaxlen > 0) { /* strip <.smumaxlen> from data segment */
/*...
UWORD striptags[STRIPMAXTAGS+1];
...*/
nstrips=0; p=(unsigned char *)smuenvp;
while (isspace(*p)) p++; while (isdigit(*p)) p++; /* smumaxlen */
while (isspace(*p)) p++;
while (*p++ == ',') {
while (isspace(*p)) p++;
for (ltag=0; isdigit(*p); ) { ltag=ltag*10+(*p-'0'); p++; }
if (ltag <= 0) fatal("fst_inter/CI_FSTSTRIP/tag");
striptags[nstrips++]=(UWORD)ltag;
if (nstrips >= STRIPMAXTAGS) fatal("fst_inter/CI_FSTSTRIP/MAXTAGS");
}
striptags[nstrips]=(UWORD)0;
/*...*/
for (xdir=0; xdir < MFRnvf; xdir++) {
if (nstrips) {
xtag=DIRtag(xdir);
for (xxtag=0, xloop=0; striptags[xloop]; xloop++)
if (xtag == striptags[xloop]) { xxtag=1; break; }
if (!xxtag) continue;
}
fldp=FIELDP(xdir);
fldleft=DIRlen(xdir);
for (erased=0, p=(UCHR *)fldp; fldleft > 0; ) {
if (*fldp != '<') {
if (erased) *p = *fldp; p++; fldp++; fldleft--; continue;
}
for (striplen=1, match=0, fldq=fldp, qleft=fldleft; qleft > 0; ) {
if (striplen > smumaxlen) break;
if (*fldq == '>') { match=1; break; }
fldq++; qleft--; striplen++; continue;
}
if (!match) {
if (erased) *p = *fldp; p++; fldp++; fldleft--; continue;
}
/*...*/
fldp+=striplen; fldleft-=striplen; erased+=striplen;
}
if (erased) memset(p,' ',erased);
}
}
#endif /* STRIPMARKUP */
/* setup fst_batchp for links in fldupdat() format */
if (fst_batchup) {
*fst_batchup='\0';
fst_batchp=fst_batchup;
}
/* alloc area for links */
if (!fst_fd[0]) /* 21/11/94 */
if (!*area1pp) {
nbytes=sizeof(LINK1)*max1;
if (nbytes > ALLOMAXV) fatal("fst_inter/max1");
#if CICPP
try {*area1pp=new char [nbytes];}
catch(BAD_ALLOC) {*area1pp=(char *)ALLONULL;}
#else
*area1pp=(char *)ALLOC((ALLOPARM)nbytes);
#endif /* CICPP */
if (*area1pp == (char *)ALLONULL) fatal("fst_inter/ALLOC/area1");
}
if (!fst_fd[1]) /* 21/11/94 */
if (!*area2pp) {
nbytes=sizeof(LINK2)*max2;
if (nbytes > ALLOMAXV) fatal("fst_inter/max2");
#if CICPP
try { *area2pp=new char[nbytes];}
catch (BAD_ALLOC){ *area2pp=(char *)ALLONULL;}
#else
*area2pp=(char *)ALLOC((ALLOPARM)nbytes);
#endif /* CICPP */
if (*area2pp == (char *)ALLONULL) fatal("fst_inter/ALLOC/area2");
}
/* alloc format area */
if (fst_fmtby < MAXMFRL)
if (fsttrace) printf("+++ fst_fmtby=%"_LD_"\n",fst_fmtby);
fmtareap=fst_fmtap;
if (!fst_fmtap) {
nbytes=fst_fmtby;
if (nbytes > ALLOMAXV) fatal("fst_inter/fst_fmtby");
#if SHOW
if (fsttrace) showcore("+++ fstareap");
#endif
#if CICPP
try {fmtareap=new char [nbytes];}
catch (BAD_ALLOC){ fmtareap=(char *)ALLONULL;}
#else
fmtareap=(char *)ALLOC((ALLOPARM)nbytes);
#endif /* CICPP */
if (fmtareap == (char *)ALLONULL) fatal("fst_inter/ALLOC/fmtarea");
}
/* setup link1/link2 */
if (!fst_fd[0]) /* 21/11/94 */
link1p=(LINK1 *)*area1pp;
x1=max1;
if (!fst_fd[1]) /* 21/11/94 */
link2p=(LINK2 *)*area2pp;
x2=max2;
/* check stwp */
if (!stwp) stwp="";
fst_hdru=0; /* 05/10/95 */
if (fst_hdrp) *fst_hdrp='\0';
/* format and process each fst entry */
/* new */
for (ifst=1; pgmp; pgmp=pgmp->nextp, ifst++) {
tag=pgmp->tag;
itx=pgmp->it;
ity=itz=0;
#if ITMARKUP
itm=0;
if (itx >= 2000) {itx-=2000; itm=1;}
#endif /* ITMARKUP */
if (itx >= 1000) {itx-=1000; itz=1;}
if (itx == 351) itx=351;
else {
if (itx < 0 || itx > 8) /*fatal("fst_inter/it");*/ {error=1; break;}
if (itx > 4) {itx-=4; ity=1;}
}
/* format */
fmtp=pgmp->fmtp;
*fmtareap='\0';
#if USE_GDBFMT
//#if BEFORE950113
// char * recbuf=mst->getrecbuf();
//#else
// char * recbuf=recp->recmfp->mx; // MFX
//#endif
char *recbuf;
if (recp) recbuf=MFX;
else recbuf=mst->getrecbuf();
// .. if (mst->getrec(mfn,&recbuf)!=0)
FORMAT *f = new FORMAT(cisisxp, mst,btree,1); // ascii_output
fmtrc = - f->Format(fmtp, /* format */ /* HB 06/10/99 */
recbuf, // char *rec, /* MF record */
fmtareap, // char *wka, /* format work area */
fst_fmtby); // LONGX la, /* length of work area */
delete f;
/* fmtrc=0;*/ /* HB 06/10/99 */
#else /* USE_GDBFMT */
#if CICPP
fmtrc=((FMTSTRU *)fmtp)->xfmt_inter(recp,fst_fmtby,fmtareap,fst_fmtby);
#else
fmtrc=fmt_inter(fmtp,irec,fst_fmtby,fmtareap,fst_fmtby);
#endif /* CICPP */
#endif /* USE_GDBFMT */
if (fsttrace)
printf("+++ fst %d = %"_LD_" %d+%d\n+++ fmt=%"_LD_"\n%s.\n",
ifst,(LONGX)tag,itx,ity,fmtrc,fmtareap);
if (fmtrc < 0) /*fatal("fst_inter/fmtrc");*/ {error=2; break;}
#if BEFORE20000831
#else
#if USE_GDBFMT
#else
mfn=MFRmfn;
#endif
#endif
fmtap=fmtareap; pfxp=""; pfxl=0;
#if ITMARKUP
itmp=""; itmn=0;
#endif /* ITMARKUP */
if (itm)
if (*(p=(UCHR *)fmtap) != '\0')
if (*(p+1))
for (c1= *p++; *p; p++)
if (*p == c1) {
fmtap++; *p='\0';
#if UTF8
uppercase_utf8(fmtap);
for (itmn=1, itmp=fmtap; *fmtap++; )
if (*fmtap == ',') { fmtap='\0'; itmn++; }
#else
for (itmn=1, itmp=fmtap; *fmtap++; )
if (*fmtap == ',') { fmtap='\0'; itmn++; }
else
*fmtap=isisuctab[*fmtap];
#endif // UTF8
fmtap=(char *)(p+1);
break;
}
if (*itmp) {
itmfldp=fmtap; itmfldleft=strlen(fmtap); itmalen=0;
for (; itmfldleft > 0; ) {
if (*itmfldp != '<') { itmfldp++; itmfldleft--; continue; }
for (itmyok=0, itmyp=itmp, itmx=itmn; itmx--; itmyp+=(itmyplen+1)) {
itmyplen=strlen(itmyp);
if (itmyplen >= MAXITMARKUPLEN) { itmfldp++; itmfldleft--; continue; } /* return fatal error */
#if UTF8
memcpy(itmuc,itmfldp,itmyplen);
itmuc[itmyplen] = '\0';
uppercase_utf8(itmuc);
#else
for (itmxq=itmuc, itmxp=itmfldp, itmxx=itmyplen; itmxx--; )
*itmxq++=isisuctab[*itmxp++];
*itmxq='\0';
#endif // UTF8
if (strncmp(itmuc,itmyp,itmyplen) == 0) { itmyok=1; break; }
}
if (!itmyok) { itmfldp++; itmfldleft--; continue; }
if (itmyplen+1 >= MAXITMARKUPLEN) { itmfldp++; itmfldleft--; continue; } /* return fatal error */
itmend[0]='<'; itmend[1]='/'; memmove(itmend+2,itmyp+1,itmyplen-1);
itmend[itmelen=itmyplen+1]='\0';
if (itmend[itmelen-1] == ' ') {
itmend[itmelen-1]='>'; /* permite <XX> ou <XXb - AOT, 25/09/2002 */
/* .. falta saltar os atributos */
}
itmymatch=0, itmstriplen=0;
for (itmfldq=itmfldp+itmyplen, itmfldqleft=itmfldleft-itmyplen; itmfldqleft > 0; ) {
if (*itmfldq != '>') { itmfldq++; itmfldqleft--; continue; }
if (itmelen >= MAXITMARKUPLEN) { itmfldq++; itmfldqleft--; continue; } /* return fatal error */
if (itmfldleft-itmfldqleft >= itmelen) {
#if UTF8
strncpy(itmuc,itmfldq-itmelen+1,itmelen);
itmuc[itmyplen] = '\0';
uppercase_utf8(itmuc);
#else
for (itmxq=itmuc, itmxp=itmfldq-itmelen+1, itmxx=itmelen; itmxx--; )
*itmxq++=isisuctab[*itmxp++];
#endif // UTF8
if (strncmp(itmuc,itmend,itmelen) == 0)
{ itmymatch=1; break; }
}
itmfldq++; itmfldqleft--;
}
if (itmymatch) {
itmfldq++; itmfldqleft--;
itmstriplen=itmfldleft-itmfldqleft-itmyplen-itmelen;
memmove(fmtap+itmalen,itmfldp+itmyplen,itmstriplen); /* for */
itmalen+=itmstriplen;
itmfldp=itmfldq+1; itmfldleft-=(itmyplen+itmstriplen+itmelen);
}
else { itmfldp++; itmfldleft--; }
}
fmtap[itmalen]='\0';
}
if (itz)
if (*(p=(UCHR *)fmtap) != '\0')
if (*(p+1))
for (c1= *p++; *p; p++)
if (*p == c1) {
fmtap++; *p='\0';
sscanf(fmtap,"%"_LD_,&mfn);
fmtap=(char *)(p+1);
break;
}
if (ity)
if (*(p=(UCHR *)fmtap) != '\0')
if (*(p+1))
for (c1= *p++; *p; p++)
if (*p == c1) {
pfxp=fmtap+1; *p='\0';
fmtap=(char *)(p+1);
for (p=(UCHR *)pfxp; *p; p++, pfxl++)
if (*p == '\r' || *p == '\n') {
*p='\0'; break;
}
if (!pfxl) pfxp="";
break;
}
for (nwo=nwc=0, occ=cnt=1, p=(UCHR *)(keyp=fmtap); *keyp; ) {
if (*p == fst_rdlm) {nwo=1; *p='\n';}
if (itx == 351) if (*p == ';') {nwo=1; *p='\n';} /* ENTRY_DLM ? */
if (*p != '\r') if (*p != '\n') if (*p) {p++; continue;}
while (*p == '\r' || *p == '\n') *p++='\0';
#if FSSTRACE
if (fsttrace) printf("+++ keyp=%s\n",keyp);
#endif
switch (itx) {
case 0:
if (*keyp) {
n=fst_link(pfxp,pfxl,keyp,strlen(keyp),mfn,tag,occ,cnt,
(char *)link1p,(char *)link2p,&x1,&x2);
if (n < 0) return(n);
if (n) if (n <= LE1) link1p++; else link2p++;
cnt++;
}
break;
case 1:
if (*keyp == SFLDCHR) if (*++keyp) keyp++;
for (q=(UCHR *)keyp; ; ) {
nwc=0;
hlen=0; hdrp=(char *)q;
while (*q) {
if (*q == SFLDCHR) {nwc=1; if (*++q) q++; break;}
hlen++; q++;
}
if (hlen == 0) {
if (nwc) cnt++;
if (*q) continue; else break;
}
#if FSSTRACE
if (fsttrace) {
printf("+++ %d:%d,%d=",itx,occ,cnt);
for (n=0; n < hlen; n++) printf("%c",hdrp[n]);
printf("\n");
}
#endif
n=fst_link(pfxp,pfxl,hdrp,hlen,mfn,tag,occ,cnt,
(char *)link1p,(char *)link2p,&x1,&x2);
if (n < 0) return(n);
if (n) if (n <= LE1) link1p++; else link2p++;
cnt++; if (!*q) break;
}
break;
case 2:
c1='<'; c2='>';
case 3:
if (itx == 3) c1=c2='/';
for (q=(UCHR *)keyp; ; ) {
nwc=0;
hlen=0;
while (*q != c1) if (*q) q++; else break;
if (*q == c1) {
#if FST2TAGS
tagop=strstr(q,"<I>");
if (tagop) {
}
#endif /* FST2TAGS */
hdrp=(char *)(q+1);
for (nwc=1; *++q; )
if (*q == c2) {
#if FST2TAGS
.
#endif /* FST2TAGS */
q++; break;
}
else hlen++;
}
if (hlen == 0) {
if (nwc) cnt++;
if (*q) continue; else break;
}
#if FSSTRACE
if (fsttrace) {
printf("+++ %d:%d,%d=",itx,occ,cnt);
for (n=0; n < hlen; n++) printf("%c",hdrp[n]);
printf("\n");
}
#endif
n=fst_link(pfxp,pfxl,hdrp,hlen,mfn,tag,occ,cnt,
(char *)link1p,(char *)link2p,&x1,&x2);
if (n < 0) return(n);
if (n) if (n <= LE1) link1p++; else link2p++;
cnt++; if (!*q) break;
}
break;
case 4:
for (q=(UCHR *)keyp, wlen=0; ; ) {
hdrp=(char *)q; hlen=0;
#if UTF8
q = word_utf8(q,word);
wlen += strlen(word);
hlen += strlen(word);
while ( *q )
{
q = skipchar_utf8(q,1);
if ( alphabetic_utf8(q) )
{
break;
}
}
if ( wlen == 0 )
{
if ( *q )
{
continue;
}
else
{
break;
}
}
#else
while (isiswctab[*q]) {
if (wlen < sizeof(word)) word[wlen++] = *q;
hlen++;
if (!*++q) break;
}
while (!isiswctab[*q]) if (*q) q++; else break;
if (wlen == 0) if (*q) continue; else break;
word[wlen] = '\0';
#endif // UTF8
#if FSSTRACE
if (fsttrace) {
printf("+++ %d:%d,%d=%s=",itx,occ,cnt,word);
for (n=0; n < hlen; n++) printf("%c",hdrp[n]);
printf("\n");
}
#endif
#if UTF8
uppercase_utf8(word);
#else
for (wp=word; *wp; wp++) *wp = isisuctab[*wp];
#endif // UTF8
isstw=0;
if (wlen <= LE1) {
#ifdef CI_WINISIS
for (sp=stwp; *sp; sp+=(LE1+1)*2) {
n=memcmp(sp,word,wlen+1);
if (n > 0) {
if (memcmp(sp-(LE1+1),word,wlen+1)==0)
isstw=1;
break;
}
if (n < 0) continue;
isstw=1; break;
}
#else
for (sp=(UCHR *)stwp; *sp; sp+=LE1+1) {
n=memcmp(sp,word,wlen+1);
if (n > 0) break;
if (n < 0) continue;
isstw=1; break;
}
#endif /* CI_WINISIS */
}
#if BEFORE20030113
#else
if (fst_wlupifnp) {
if (!fst_wluptrmp) {
#if CICPP
try { fst_wluptrmp=new TRMSTRU(cisisxp); }
catch (BAD_ALLOC) { fatal("cifst/lup_trm/next"); }
fst_wluptrmp->xtrmalloc(0L);
fst_wluptrmp->xterm((unsigned char *)fst_wlupifnp,(unsigned char *)"!");
#else /* CICPP */
for (fst_wlupitrm=maxntrm; fst_wlupitrm--; ){
if (!vtrmp[fst_wlupitrm]) /* ja' decrementado */
break;
}
if (!fst_wlupitrm) fatal("cifst/lup_trm/next");
trmalloc(fst_wlupitrm,0L);
term(fst_wlupitrm,fst_wlupifnp,"!");
fst_wluptrmp=vtrmp[fst_wlupitrm];
#endif /* CICPP */
}