summaryrefslogtreecommitdiff
path: root/src/dfa.c
blob: 2edda773917c1d263acfbfb5e62883b3e618f5b3 (plain)
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
#include "utf8.h"
#include "str.h"
#include <stdio.h>
#include "list.h"
#include "dfa.h"

#define INIT_TRIE(X, ID) do {                                           \
    X->id = ID;                                                         \
    X->children = MYALLOC(int, MAX_CHAR_BYTES_NUM);                     \
    for (int macro_index = 0; macro_index < MAX_CHAR_BYTES_NUM;)        \
      *(X->children+macro_index++) = DFA_STATE_UNKNOWN;                 \
  } while (0)

struct range_s {
  NUM beg, end;
};

struct special_dfa_s {
  NUM len;
  struct range_s *ranges;
  /* This is only used when this is a mixed special dfa */
  NUM boundary;
};

/* The complete, uncompressed table is represented as an array of
   arrays, each array of which has size MAX_CHAR_BYTES_NUM.  The
   compressed table is represented as run-lengths.  The ROW_N is the
   size of the total table.  And the TABLE stores the data.  It is an
   array of arrays.  The format of the array of a row is as follows:

   VALUE1 LEN1 VALUE2 LEN2

   This means VALUE1 appears LEN1 times, and then VALUE2 appears LEN2
   times, and so on.  Each array of a row ends when the lengths sum to
   MAX_CHAR_BYTES_NUM. */
struct compressed_table_s {
  int row_n;
  int **table;
};

enum DFA_TYPE {
  DFA_TYPE_POSITIVE,
  DFA_TYPE_NEGATIVE,
  DFA_TYPE_BOTH,
  DFA_TYPE_SPECIAL,
  DFA_TYPE_SPECIAL_NEG,
  DFA_TYPE_SPECIAL_BOTH,
};

struct dfa_s {
  enum DFA_TYPE type;
  union {
    compressed_table table;
    special_dfa sp;
  } data;
};

dfa *
new_dfa()
{
  dfa *dfap = NULL;

  SAFE_CALLOC(dfa, dfap, 1, return NULL;);

  return dfap;
}

void
destroy_dfa(dfa *table)
{
  if (table->type == DFA_TYPE_SPECIAL ||
      table->type == DFA_TYPE_SPECIAL_NEG ||
      table->type == DFA_TYPE_SPECIAL_BOTH) {
    free(table->data.sp.ranges);
    goto free_last;
  }

  for (int i = 0; i < table->data.table.row_n;)
    free(*(table->data.table.table+i++));

  free(table->data.table.table);

 free_last:

  free(table);
}

/* a trie structure */

typedef struct trie_s trie;

/* REVIEW: Maybe we don't need ID? */
struct trie_s {
  /* It is guaranteed that the number of children is
     MAX_CHAR_BYTES_NUM. */
  int *children;
  int id;
};

static void
destroy_trie(void *t)
{
  trie *tp = (trie *)t;
  free(tp->children);
  free(tp);
}

/* Print a list of Trie's. */
UNUSED
static void
print_tries(const List * const restrict ls)
{
  NUM len = list_length(ls);
  for (NUM i = 0; i < len; i++) {
    trie *t = (trie *) list_nth(ls, i);
    printf("Trie ID: %d:\n", t->id);

    BOOL has_children_p = 0;

    for (int j = 0; j < MAX_CHAR_BYTES_NUM; j++) {
      if (*(t->children+j) != -1) {
        has_children_p = 1;
        printf("    "
               "Char %d => State %d\n", j, *(t->children+j));
      }
    }

    if (!has_children_p) printf("    " "No children!\n");

    printf("\n");
  }
}

void
print_dfa(const dfa * const restrict table)
{
  switch (table->type) {
  case DFA_TYPE_POSITIVE:
    printf("Printing a positive table:\n");
    goto print_table;
    break;
  case DFA_TYPE_NEGATIVE:
    printf("Printing a negative table:\n");
    break;
  case DFA_TYPE_BOTH:
    printf("Printing a mixed table:\n");
    goto print_table;
    break;
  case DFA_TYPE_SPECIAL:
    printf("Printing a table containing positive ranges:\n");
    break;
  case DFA_TYPE_SPECIAL_NEG:
    printf("Printing a table containing negative ranges:\n");
    break;
  case DFA_TYPE_SPECIAL_BOTH:
    printf("Printing a table containing mixed ranges:\n");
    break;
  default:
    printf("Table of unknown type\n");
    return;
    break;
  }

  for (int i = 0; i < table->data.sp.len; i++) {
    printf("Range %d: %ld to %ld\n", i,
           (table->data.sp.ranges+i)->beg,
           (table->data.sp.ranges+i)->end);
  }
  printf("\n");

  return;

 print_table:
  for (int i = 0; i < table->data.table.row_n; i++) {
    printf("Row %d: ", i);
    int size = 0;
    for (int j = 0; size < MAX_CHAR_BYTES_NUM; j++) {
      printf("%d %d", *(*(table->data.table.table+i)+(j<<1)),
             *(*(table->data.table.table+i)+(j<<1)+1));
      size += *(*(table->data.table.table+i)+(j<<1)+1);

      if (size < MAX_CHAR_BYTES_NUM) printf(", ");
      else printf("\n");
    }
  }
  printf("\n");
}

/* REVIEW: Maybe we don't want to generate the complete trie in the
   process of generating the compressed table? */
dfa *
dfa_from_bytes(int sequence_size,
               const NUM * const restrict data)
{
  List *states = new_list();

  trie *state_pointer = MYALLOC(trie, 1);

  INIT_TRIE(state_pointer, 0);

  if (add_to_list(states, state_pointer)) {
    fleprintf0("Cannot add to list\n");
    destroy_trie(state_pointer);
    map_list(states, destroy_trie);
    destroy_list(states, 0);
    return NULL;
  }

  char *s = MYALLOC(char, 5);

  str *strp = new_str(s, 5);

  for (int i = 0; i < sequence_size; i++) {
    trie current_state = *((trie *) list_nth(states, 0));
    NUM current_value = *(data+i);

    if (encode(current_value, strp)) {
      fleprintf("Fail to encode %ld at i = %d\n", current_value, i);
      /* cleanup */
      destroy_str(strp, 1);
      map_list(states, destroy_trie);
      destroy_list(states, 0);
      return NULL;
    }

    int str_len = (int) str_length(strp);
    s = get_data(strp);
    unsigned char c = 0;
    for (int j = 0; j < (str_len-1); j++) {
      c = (unsigned char) *(s+j);
      if (*(current_state.children+c) == DFA_STATE_UNKNOWN) {
        /* a new state should be created */
        state_pointer = MYALLOC(trie, 1);
        INIT_TRIE(state_pointer, list_length(states));
        *(current_state.children+c) = list_length(states);
        if (add_to_list(states, state_pointer)) {
          /* cleanup */
          destroy_str(strp, 1);
          destroy_trie(state_pointer);
          map_list(states, destroy_trie);
          destroy_list(states, 0);
          return NULL;
        }
      }

      current_state =
        *((trie *) list_nth(states, *(current_state.children+c)));
    }

    if (str_len) {
      /* the last byte leads to the accepting state */
      c = (unsigned char) *(s+str_len-1);

      /* In the trie's that we will be forming, there will be no leaf
         that is also the parent of another node, by the design of
         UTF-8. */

      *(current_state.children+c) = DFA_STATE_ACCEPT;
    }

    str_set_length(strp, 5);
  }

  destroy_str(strp, 1);

  /* For debugging */

#ifdef DEBUG
  /* print_tries(states); */
#endif

  /* construct DFA from the trie */

  NUM states_len = list_length(states);

  dfa *dfap = new_dfa();

  dfap->data.table.table = MYALLOC(int *, states_len);
  dfap->data.table.row_n = states_len;

  for (NUM i = 0; i < states_len; i++) {
    int size = 1, current = -1, last = -1, current_length = 0;

    for (int j = 0; j < MAX_CHAR_BYTES_NUM; j++) {
      current = *(((trie *) list_nth(states, i))->children+j);
      if (current != last) size++;
      last = current;
    }

    *(dfap->data.table.table+i) = MYALLOC(int, size<<1);

    current = (last = -1);

    size = 1;

    for (int j = 0; j < MAX_CHAR_BYTES_NUM; j++) {
      current = *(((trie *) list_nth(states, i))->children+j);
      if (current != last) {
        *(*(dfap->data.table.table+i)+(size<<1)-2) = last;
        *(*(dfap->data.table.table+i)+(size<<1)-1) = current_length;

        size++;
        last = current;
        current_length = 1;

        if (j == MAX_CHAR_BYTES_NUM-1) {
          *(*(dfap->data.table.table+i)+(size<<1)-2) = last;
          *(*(dfap->data.table.table+i)+(size<<1)-1) = 1;
        }
      } else if (j == MAX_CHAR_BYTES_NUM-1) {
        *(*(dfap->data.table.table+i)+(size<<1)-2) = current;
        *(*(dfap->data.table.table+i)+(size<<1)-1) = current_length+1;
      } else {
        current_length++;
      }
    }
  }

  /* cleanup the trie */
  map_list(states, destroy_trie);
  destroy_list(states, 0);

  return dfap;
}

dfa *
dfa_from_bytes_neg(int sequence_size,
                   const NUM * const restrict data)
{
  List *states = new_list();

  trie *state_pointer = MYALLOC(trie, 1);

  INIT_TRIE(state_pointer, 0);

  if (add_to_list(states, state_pointer)) {
    fleprintf0("Cannot add to list\n");
    destroy_trie(state_pointer);
    map_list(states, destroy_trie);
    destroy_list(states, 0);
    return NULL;
  }

  char *s = MYALLOC(char, 5);

  str *strp = new_str(s, 5);

  for (int i = 0; i < sequence_size; i++) {
    trie current_state = *((trie *) list_nth(states, 0));
    NUM current_value = *(data+i);

    if (encode(current_value, strp)) {
      fleprintf("Fail to encode %ld at i = %d\n", current_value, i);
      /* cleanup */
      destroy_str(strp, 1);
      map_list(states, destroy_trie);
      destroy_list(states, 0);
      return NULL;
    }

    int str_len = (int) str_length(strp);
    s = get_data(strp);
    unsigned char c = 0;
    for (int j = 0; j < (str_len-1); j++) {
      c = (unsigned char) *(s+j);
      if (*(current_state.children+c) == DFA_STATE_UNKNOWN) {
        /* a new state should be created */
        state_pointer = MYALLOC(trie, 1);
        INIT_TRIE(state_pointer, list_length(states));
        *(current_state.children+c) = list_length(states);
        if (add_to_list(states, state_pointer)) {
          /* cleanup */
          destroy_str(strp, 1);
          destroy_trie(state_pointer);
          map_list(states, destroy_trie);
          destroy_list(states, 0);
          return NULL;
        }
      }

      current_state =
        *((trie *) list_nth(states, *(current_state.children+c)));
    }

    if (str_len) {
      /* the last byte leads to the rejecting state */
      c = (unsigned char) *(s+str_len-1);

      /* In the trie's that we will be forming, there will be no leaf
         that is also the parent of another node, by the design of
         UTF-8. */

      *(current_state.children+c) = DFA_STATE_REJECT;
    }

    str_set_length(strp, 5);
  }

  destroy_str(strp, 1);

  /* For debugging */

  /* print_tries(states); */

  /* construct DFA from the trie */

  NUM states_len = list_length(states);

  dfa *dfap = new_dfa();

  dfap->data.table.table = MYALLOC(int *, states_len);
  dfap->data.table.row_n = states_len;
  dfap->type = 1;

  for (NUM i = 0; i < states_len; i++) {
    int size = 1, current = -1, last = -1, current_length = 0;

    for (int j = 0; j < MAX_CHAR_BYTES_NUM; j++) {
      current = *(((trie *) list_nth(states, i))->children+j);
      if (current != last) size++;
      last = current;
    }

    *(dfap->data.table.table+i) = MYALLOC(int, size<<1);

    current = (last = -1);

    size = 1;

    for (int j = 0; j < MAX_CHAR_BYTES_NUM; j++) {
      current = *(((trie *) list_nth(states, i))->children+j);
      if (current != last) {
        *(*(dfap->data.table.table+i)+(size<<1)-2) = last;
        *(*(dfap->data.table.table+i)+(size<<1)-1) = current_length;

        size++;
        last = current;
        current_length = 1;

        if (j == MAX_CHAR_BYTES_NUM-1) {
          *(*(dfap->data.table.table+i)+(size<<1)-2) = last;
          *(*(dfap->data.table.table+i)+(size<<1)-1) = 1;
        }
      } else if (j == MAX_CHAR_BYTES_NUM-1) {
        *(*(dfap->data.table.table+i)+(size<<1)-2) = current;
        *(*(dfap->data.table.table+i)+(size<<1)-1) = current_length+1;
      } else {
        current_length++;
      }
    }
  }

  /* cleanup the trie */
  map_list(states, destroy_trie);
  destroy_list(states, 0);

  return dfap;
}

dfa *dfa_from_bytes_both(int sequence_size,
                         const NUM * const restrict data,
                         int neg_sequence_size,
                         const NUM * const restrict negdata)
{
  List *states = new_list();

  trie *state_pointer = MYALLOC(trie, 1);

  INIT_TRIE(state_pointer, 0);

  if (add_to_list(states, state_pointer)) {
    fleprintf0("Cannot add to list\n");
    destroy_trie(state_pointer);
    map_list(states, destroy_trie);
    destroy_list(states, 0);
    return NULL;
  }

  char *s = MYALLOC(char, 5);

  str *strp = new_str(s, 5);

  for (int i = 0; i < sequence_size; i++) {
    trie current_state = *((trie *) list_nth(states, 0));
    NUM current_value = *(data+i);

    if (encode(current_value, strp)) {
      fleprintf("Fail to encode %ld at i = %d\n", current_value, i);
      /* cleanup */
      destroy_str(strp, 1);
      map_list(states, destroy_trie);
      destroy_list(states, 0);
      return NULL;
    }

    int str_len = (int) str_length(strp);
    s = get_data(strp);
    unsigned char c = 0;
    for (int j = 0; j < (str_len-1); j++) {
      c = (unsigned char) *(s+j);
      if (*(current_state.children+c) == DFA_STATE_UNKNOWN) {
        /* a new state should be created */
        state_pointer = MYALLOC(trie, 1);
        INIT_TRIE(state_pointer, list_length(states));
        *(current_state.children+c) = list_length(states);
        if (add_to_list(states, state_pointer)) {
          /* cleanup */
          destroy_str(strp, 1);
          destroy_trie(state_pointer);
          map_list(states, destroy_trie);
          destroy_list(states, 0);
          return NULL;
        }
      }

      current_state =
        *((trie *) list_nth(states, *(current_state.children+c)));
    }

    if (str_len) {
      /* the last byte leads to the accepting state */
      c = (unsigned char) *(s+str_len-1);

      /* In the trie's that we will be forming, there will be no leaf
         that is also the parent of another node, by the design of
         UTF-8. */

      *(current_state.children+c) = DFA_STATE_ACCEPT;
    }

    str_set_length(strp, 5);
  }

  for (int i = 0; i < neg_sequence_size; i++) {
    trie current_state = *((trie *) list_nth(states, 0));
    NUM current_value = *(negdata+i);

    if (encode(current_value, strp)) {
      fleprintf("Fail to encode %ld at i = %d\n", current_value, i);
      /* cleanup */
      destroy_str(strp, 1);
      map_list(states, destroy_trie);
      destroy_list(states, 0);
      return NULL;
    }

    int str_len = (int) str_length(strp);
    s = get_data(strp);
    unsigned char c = 0;
    for (int j = 0; j < (str_len-1); j++) {
      c = (unsigned char) *(s+j);
      if (*(current_state.children+c) == DFA_STATE_UNKNOWN) {
        /* a new state should be created */
        state_pointer = MYALLOC(trie, 1);
        INIT_TRIE(state_pointer, list_length(states));
        *(current_state.children+c) = list_length(states);
        if (add_to_list(states, state_pointer)) {
          /* cleanup */
          fleprintf("Fail to add to list when i = %d, j = %d, "
                    "and current value = %ld\n",
                    i, j, current_value);
          destroy_str(strp, 1);
          destroy_trie(state_pointer);
          map_list(states, destroy_trie);
          destroy_list(states, 0);
          return NULL;
        }
      }

      current_state =
        *((trie *) list_nth(states, *(current_state.children+c)));
    }

    if (str_len) {
      /* the last byte leads to the rejecting state */
      c = (unsigned char) *(s+str_len-1);

      /* In the trie's that we will be forming, there will be no leaf
         that is also the parent of another node, by the design of
         UTF-8. */

      *(current_state.children+c) = DFA_STATE_REJECT;
    }

    str_set_length(strp, 5);
  }

  destroy_str(strp, 1);

  /* For debugging */

  /* print_tries(states); */

  /* construct DFA from the trie */

  NUM states_len = list_length(states);

  dfa *dfap = new_dfa();

  dfap->data.table.table = MYALLOC(int *, states_len);
  dfap->data.table.row_n = states_len;

  for (NUM i = 0; i < states_len; i++) {
    int size = 1, current = -1, last = -1, current_length = 0;

    for (int j = 0; j < MAX_CHAR_BYTES_NUM; j++) {
      current = *(((trie *) list_nth(states, i))->children+j);
      if (current != last) size++;
      last = current;
    }

    *(dfap->data.table.table+i) = MYALLOC(int, size<<1);

    current = (last = -1);

    size = 1;

    for (int j = 0; j < MAX_CHAR_BYTES_NUM; j++) {
      current = *(((trie *) list_nth(states, i))->children+j);
      if (current != last) {
        *(*(dfap->data.table.table+i)+(size<<1)-2) = last;
        *(*(dfap->data.table.table+i)+(size<<1)-1) = current_length;

        size++;
        last = current;
        current_length = 1;

        if (j == MAX_CHAR_BYTES_NUM-1) {
          *(*(dfap->data.table.table+i)+(size<<1)-2) = last;
          *(*(dfap->data.table.table+i)+(size<<1)-1) = 1;
        }
      } else if (j == MAX_CHAR_BYTES_NUM-1) {
        *(*(dfap->data.table.table+i)+(size<<1)-2) = current;
        *(*(dfap->data.table.table+i)+(size<<1)-1) = current_length+1;
      } else {
        current_length++;
      }
    }
  }

  /* cleanup the trie */
  map_list(states, destroy_trie);
  destroy_list(states, 0);

  return dfap;
}

dfa *
dfa_from_ranges(int len, CCR_MOD(NUM *) data)
{
  struct range_s *rp = NULL;
  SAFE_MALLOC(struct range_s, rp, len, return NULL;);

  for (int i = 0; i < len; i++) {
    (rp+i)->beg = *(data+(i<<1));
    (rp+i)->end = *(data+(i<<1)+1);
  }

  dfa *dfap = NULL;
  SAFE_MALLOC(dfa, dfap, 1, free(rp); return NULL;);

  dfap->type = DFA_TYPE_SPECIAL;
  dfap->data.sp = (special_dfa) { len, rp, 0 };

  return dfap;
}

dfa *
dfa_from_ranges_neg(int len, CCR_MOD(NUM *) data)
{
  dfa *dfap = dfa_from_ranges(len, data);
  if (dfap == NULL) return NULL;
  dfap->type = DFA_TYPE_SPECIAL_NEG;
  return dfap;
}

dfa *
dfa_from_ranges_both(int plen, CCR_MOD(NUM *) pdata,
                     int nlen, CCR_MOD(NUM *) ndata)
{
  int len = plen + nlen;
  struct range_s *rp = NULL;
  SAFE_MALLOC(struct range_s, rp, len, return NULL;);

  for (int i = 0; i < plen; i++) {
    (rp+i)->beg = *(pdata+(i<<1));
    (rp+i)->end = *(pdata+(i<<1)+1);
  }

  for (int i = 0; i < nlen; i++) {
    (rp+plen+i)->beg = *(ndata+(i<<1));
    (rp+plen+i)->end = *(ndata+(i<<1)+1);
  }

  dfa *dfap = NULL;
  SAFE_MALLOC(dfa, dfap, 1, free(rp); return NULL;);

  dfap->type = DFA_TYPE_SPECIAL_BOTH;
  dfap->data.sp = (special_dfa) { len, rp, plen };

  return dfap;
}

BOOL
run_dfa(const dfa * const restrict table, const NUM code)
{
  /* negative codes have special purposes */
  if (code < 0) return 0;

  switch (table->type) {
  case DFA_TYPE_POSITIVE:
  case DFA_TYPE_NEGATIVE:
  case DFA_TYPE_BOTH:
    break;
  case DFA_TYPE_SPECIAL:
    for (int i = 0; i < table->data.sp.len; i++)
      if (code >= (table->data.sp.ranges+i)->beg &&
          code <= (table->data.sp.ranges+i)->end) {
#ifdef DEBUG
        fleprintf("code = %ld, beg = %ld, end = %ld\n",
                  code,
                  (table->data.sp.ranges+i)->beg,
                  (table->data.sp.ranges+i)->end);
#endif
        return 1;
      }
    return 0;
    break;
  case DFA_TYPE_SPECIAL_NEG:
    for (int i = 0; i < table->data.sp.len; i++)
      if (code >= (table->data.sp.ranges+i)->beg &&
          code <= (table->data.sp.ranges+i)->end) {
#ifdef DEBUG
        fleprintf("code = %ld, beg = %ld, end = %ld\n",
                  code,
                  (table->data.sp.ranges+i)->beg,
                  (table->data.sp.ranges+i)->end);
#endif
        return 0;
      }
    return 1;
    break;
  case DFA_TYPE_SPECIAL_BOTH:
    for (int i = table->data.sp.boundary;
         i < table->data.sp.len;
         i++)
      if (code >= (table->data.sp.ranges+i)->beg &&
          code <= (table->data.sp.ranges+i)->end) {
#ifdef DEBUG
        fleprintf("code = %ld, beg = %ld, end = %ld\n",
                  code,
                  (table->data.sp.ranges+i)->beg,
                  (table->data.sp.ranges+i)->end);
#endif
        return 0;
      }
    for (int i = 0; i < table->data.sp.boundary; i++)
      if (code >= (table->data.sp.ranges+i)->beg &&
          code <= (table->data.sp.ranges+i)->end) {
#ifdef DEBUG
        fleprintf("code = %ld, beg = %ld, end = %ld\n",
                  code,
                  (table->data.sp.ranges+i)->beg,
                  (table->data.sp.ranges+i)->end);
#endif
        return 1;
      }
    return 0;
    break;
  default:
    fleprintf("Unknown type: %d\n", table->type);
    return 0;
    break;
  }

  /* below is for running the DFA */
  char s[5];
  str *strp = new_str(s, 5);

  if (encode(code, strp)) {
    destroy_str(strp, 0);
    fleprintf0("Fail to encode\n");
    return 0;
  }

  int current_row = 0;

  for (NUM i = 0; i < str_length(strp); i++) {
    unsigned char c = (unsigned char) *(s+i);

    int lookup_value = 0;

    for (int j = 0, len = 0; len <= c;) {

      len += *(*(table->data.table.table+current_row)+(j<<1)+1);
      lookup_value = *(*(table->data.table.table+current_row)
                       +(j++<<1));
    }

    if (lookup_value > 0) {
      current_row = lookup_value;
    } else {
      switch (lookup_value) {
      case DFA_STATE_REJECT:
        destroy_str(strp, 0);
        return 0;
        break;
      case DFA_STATE_UNKNOWN:
        switch (table->type) {
        case DFA_TYPE_BOTH:
        case DFA_TYPE_POSITIVE:
          destroy_str(strp, 0);
          return 0;
          break;
        case DFA_TYPE_NEGATIVE:
          destroy_str(strp, 0);
          return 1;
          break;
        default:
          /* This should not be possible, as we won't reach here if
             the table is of the special type.  But I am apparently
             paranoia. */
          fleprintf0("Special table in the wrong place\n");
          destroy_str(strp, 0);
          return 0;
          break;
        }
        break;
      case DFA_STATE_ACCEPT:
        destroy_str(strp, 0);
        return 1;
        break;
      default:
        fleprintf("Unknown state number for char %d: %d\n",
                  c, lookup_value);
        destroy_str(strp, 0);
        return 0;
        break;
      }
    }
  }

  destroy_str(strp, 0);

  return 0;
}