summaryrefslogtreecommitdiff
path: root/src/keyword.cc
blob: 2d7904e87c0738f91dc7b78479ffe068b4a5a162 (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
/* Keyword data.
   Copyright (C) 1989-1998, 2000, 2002 Free Software Foundation, Inc.
   Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
   and Bruno Haible <bruno@clisp.org>.

   This file is part of GNU GPERF.

   GNU GPERF 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.

   GNU GPERF 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; see the file COPYING.
   If not, write to the Free Software Foundation, Inc.,
   59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */

/* Specification. */
#include "keyword.h"

#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include "positions.h"


/* --------------------------- KeywordExt class --------------------------- */

/* Sort a small set of 'unsigned int', base[0..len-1], in place.  */
static inline void sort_char_set (unsigned int *base, int len)
{
  /* Bubble sort is sufficient here.  */
  for (int i = 1; i < len; i++)
    {
      int j;
      unsigned int tmp;

      for (j = i, tmp = base[j]; j > 0 && tmp < base[j - 1]; j--)
        base[j] = base[j - 1];

      base[j] = tmp;
    }
}

/* Initializes selchars and selchars_length.
   The hash function will be computed as
   asso_values[allchars[key_pos[0]]] + asso_values[allchars[key_pos[1]]] + ...
   We compute selchars as the multiset
     { allchars[key_pos[0]], allchars[key_pos[1]], ... }
   so that the hash function becomes
     asso_values[selchars[0]] + asso_values[selchars[1]] + ...
   Furthermore we sort the selchars array, to ease detection of duplicates
   later.
 */

unsigned int *
KeywordExt::init_selchars_low (bool use_all_chars, const Positions& positions, const unsigned int *alpha_unify, const unsigned int *alpha_inc)
{
  const char *k = _allchars;
  unsigned int *key_set =
    new unsigned int[(use_all_chars ? _allchars_length : positions.get_size ())];
  unsigned int *ptr = key_set;

  if (use_all_chars)
    /* Use all the character positions in the KEY.  */
    for (int i = _allchars_length; i > 0; k++, i--)
      {
        unsigned int c = static_cast<unsigned char>(*k);
        if (alpha_inc)
          c += alpha_inc[k-_allchars];
        if (alpha_unify)
          c = alpha_unify[c];
        *ptr = c;
        ptr++;
      }
  else
    /* Only use those character positions specified by the user.  */
    {
      /* Iterate through the list of key_positions, initializing selchars
         (via ptr).  */
      PositionIterator iter (positions);

      for (int i; (i = iter.next ()) != PositionIterator::EOS; )
        {
          unsigned int c;
          if (i == Positions::LASTCHAR)
            /* Special notation for last KEY position, i.e. '$'.  */
            c = static_cast<unsigned char>(_allchars[_allchars_length - 1]);
          else if (i <= _allchars_length)
            {
              /* Within range of KEY length, so we'll keep it.  */
              c = static_cast<unsigned char>(_allchars[i - 1]);
              if (alpha_inc)
                c += alpha_inc[i - 1];
            }
          else
            /* Out of range of KEY length, so we'll just skip it.  */
            continue;
          if (alpha_unify)
            c = alpha_unify[c];
          *ptr = c;
          ptr++;
        }
    }

  _selchars = key_set;
  _selchars_length = ptr - key_set;

  return key_set;
}

void
KeywordExt::init_selchars_tuple (bool use_all_chars, const Positions& positions, const unsigned int *alpha_unify)
{
  init_selchars_low (use_all_chars, positions, alpha_unify, NULL);
}

void
KeywordExt::init_selchars_multiset (bool use_all_chars, const Positions& positions, const unsigned int *alpha_unify, const unsigned int *alpha_inc)
{
  unsigned int *selchars =
    init_selchars_low (use_all_chars, positions, alpha_unify, alpha_inc);

  /* Sort the selchars elements alphabetically.  */
  sort_char_set (selchars, _selchars_length);
}

/* Deletes selchars.  */
void
KeywordExt::delete_selchars ()
{
  delete[] const_cast<unsigned int *>(_selchars);
}


/* ------------------------- Keyword_Factory class ------------------------- */

Keyword_Factory::Keyword_Factory ()
{
}

Keyword_Factory::~Keyword_Factory ()
{
}


/* ------------------------------------------------------------------------- */

char empty_string[1] = "";


#ifndef __OPTIMIZE__

#define INLINE /* not inline */
#include "keyword.icc"
#undef INLINE

#endif /* not defined __OPTIMIZE__ */