mirror of
https://git.savannah.gnu.org/git/gperf.git
synced 2025-12-02 13:09:22 +00:00
Rework positions handling.
This commit is contained in:
215
src/options.cc
215
src/options.cc
@@ -177,7 +177,7 @@ Options::long_usage (FILE * stream) const
|
||||
" hash function to consider ALL key positions, and $\n"
|
||||
" indicates the \"final character\" of a key, e.g.,\n"
|
||||
" $,1,2,4,6-10.\n",
|
||||
Positions::MAX_KEY_POS - 1);
|
||||
Positions::MAX_KEY_POS);
|
||||
fprintf (stream,
|
||||
" -l, --compare-strlen Compare key lengths before trying a string\n"
|
||||
" comparison. This helps cut down on the number of\n"
|
||||
@@ -294,12 +294,18 @@ Options::print_options () const
|
||||
printf (" */");
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
/* Parses a string denoting key positions. */
|
||||
|
||||
class PositionStringParser
|
||||
{
|
||||
public:
|
||||
PositionStringParser (const char *str, int low_bound, int high_bound, int end_word_marker, int error_value, int end_marker);
|
||||
/* Initializes a key position string parser for string STR. */
|
||||
PositionStringParser (const char *str,
|
||||
int low_bound, int high_bound,
|
||||
int end_word_marker, int error_value, int end_marker);
|
||||
/* Returns the next key position from the given string. */
|
||||
int nextPosition ();
|
||||
private:
|
||||
/* A pointer to the string provided by the user. */
|
||||
@@ -314,67 +320,96 @@ private:
|
||||
int const _error_value;
|
||||
/* Value returned after last key is processed. */
|
||||
int const _end_marker;
|
||||
int _size;
|
||||
int _curr_value;
|
||||
int _upper_bound;
|
||||
/* Intermediate state for producing a range of positions. */
|
||||
bool _in_range; /* True while producing a range of positions. */
|
||||
int _range_upper_bound; /* Upper bound (inclusive) of the range. */
|
||||
int _range_curr_value; /* Last value returned. */
|
||||
};
|
||||
|
||||
PositionStringParser::PositionStringParser (const char *str, int low_bound, int high_bound, int end_word_marker, int error_value, int end_marker)
|
||||
/* Initializes a key position strng parser for string STR. */
|
||||
PositionStringParser::PositionStringParser (const char *str,
|
||||
int low_bound, int high_bound,
|
||||
int end_word_marker, int error_value, int end_marker)
|
||||
: _str (str),
|
||||
_low_bound (low_bound),
|
||||
_high_bound (high_bound),
|
||||
_end_word_marker (end_word_marker),
|
||||
_error_value (error_value),
|
||||
_end_marker (end_marker),
|
||||
_size (0),
|
||||
_curr_value (0),
|
||||
_upper_bound (0)
|
||||
_in_range (false)
|
||||
{
|
||||
}
|
||||
|
||||
int PositionStringParser::nextPosition ()
|
||||
/* Returns the next key position from the given string. */
|
||||
int
|
||||
PositionStringParser::nextPosition ()
|
||||
{
|
||||
if (_size)
|
||||
if (_in_range)
|
||||
{
|
||||
if (++_curr_value >= _upper_bound)
|
||||
_size = 0;
|
||||
return _curr_value;
|
||||
/* We are inside a range. Return the next value from the range. */
|
||||
if (++_range_curr_value >= _range_upper_bound)
|
||||
_in_range = false;
|
||||
return _range_curr_value;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Continue parsing the given string. */
|
||||
while (*_str)
|
||||
switch (*_str)
|
||||
{
|
||||
default: return _error_value;
|
||||
case ',': _str++; break;
|
||||
case '$': _str++; return _end_word_marker;
|
||||
case ',':
|
||||
/* Skip the comma. */
|
||||
_str++;
|
||||
break;
|
||||
case '$':
|
||||
/* Valid key position. */
|
||||
_str++;
|
||||
return _end_word_marker;
|
||||
case '0': case '1': case '2': case '3': case '4':
|
||||
case '5': case '6': case '7': case '8': case '9':
|
||||
for (_curr_value = 0; isdigit (static_cast<unsigned char>(*_str)); _str++)
|
||||
_curr_value = _curr_value * 10 + (*_str - '0');
|
||||
/* Valid key position. */
|
||||
{
|
||||
int curr_value;
|
||||
for (curr_value = 0; isdigit (static_cast<unsigned char>(*_str)); _str++)
|
||||
curr_value = curr_value * 10 + (*_str - '0');
|
||||
|
||||
if (*_str == '-')
|
||||
{
|
||||
if (*_str == '-')
|
||||
{
|
||||
_str++;
|
||||
/* Starting a range of key positions. */
|
||||
_in_range = true;
|
||||
|
||||
for (_size = 1, _upper_bound = 0;
|
||||
isdigit (static_cast<unsigned char>(*++_str));
|
||||
_upper_bound = _upper_bound * 10 + (*_str - '0'));
|
||||
for (_range_upper_bound = 0;
|
||||
isdigit (static_cast<unsigned char>(*_str));
|
||||
_str++)
|
||||
_range_upper_bound = _range_upper_bound * 10 + (*_str - '0');
|
||||
|
||||
if (_upper_bound <= _curr_value || _upper_bound > _high_bound)
|
||||
return _error_value;
|
||||
}
|
||||
return _curr_value >= _low_bound && _curr_value <= _high_bound
|
||||
? _curr_value : _error_value;
|
||||
/* Verify range's upper bound. */
|
||||
if (!(_range_upper_bound > curr_value && _range_upper_bound <= _high_bound))
|
||||
return _error_value;
|
||||
_range_curr_value = curr_value;
|
||||
}
|
||||
|
||||
/* Verify range's lower bound. */
|
||||
if (!(curr_value >= _low_bound && curr_value <= _high_bound))
|
||||
return _error_value;
|
||||
return curr_value;
|
||||
}
|
||||
default:
|
||||
/* Invalid syntax. */
|
||||
return _error_value;
|
||||
}
|
||||
|
||||
return _end_marker;
|
||||
}
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
/* Sets the default Options. */
|
||||
|
||||
Options::Options ()
|
||||
: _option_word (DEFAULTCHARS | C),
|
||||
: _option_word (C),
|
||||
_iterations (0),
|
||||
_jump (DEFAULT_JUMP_VALUE),
|
||||
_initial_asso_value (0),
|
||||
@@ -402,7 +437,6 @@ Options::~Options ()
|
||||
"\nORDER is.......: %s"
|
||||
"\nTYPE is........: %s"
|
||||
"\nRANDOM is......: %s"
|
||||
"\nDEFAULTCHARS is: %s"
|
||||
"\nSWITCH is......: %s"
|
||||
"\nNOLENGTH is....: %s"
|
||||
"\nLENTABLE is....: %s"
|
||||
@@ -434,7 +468,6 @@ Options::~Options ()
|
||||
_option_word & ORDER ? "enabled" : "disabled",
|
||||
_option_word & TYPE ? "enabled" : "disabled",
|
||||
_option_word & RANDOM ? "enabled" : "disabled",
|
||||
_option_word & DEFAULTCHARS ? "enabled" : "disabled",
|
||||
_option_word & SWITCH ? "enabled" : "disabled",
|
||||
_option_word & NOLENGTH ? "enabled" : "disabled",
|
||||
_option_word & LENTABLE ? "enabled" : "disabled",
|
||||
@@ -479,43 +512,43 @@ Options::~Options ()
|
||||
|
||||
static const struct option long_options[] =
|
||||
{
|
||||
{ "delimiters", required_argument, 0, 'e' },
|
||||
{ "struct-type", no_argument, 0, 't' },
|
||||
{ "language", required_argument, 0, 'L' },
|
||||
{ "slot-name", required_argument, 0, 'K' },
|
||||
{ "initializer-suffix", required_argument, 0, 'F' },
|
||||
{ "hash-fn-name", required_argument, 0, 'H' },
|
||||
{ "lookup-fn-name", required_argument, 0, 'N' },
|
||||
{ "class-name", required_argument, 0, 'Z' },
|
||||
{ "seven-bit", no_argument, 0, '7' },
|
||||
{ "compare-strncmp", no_argument, 0, 'c' },
|
||||
{ "readonly-tables", no_argument, 0, 'C' },
|
||||
{ "enum", no_argument, 0, 'E' },
|
||||
{ "includes", no_argument, 0, 'I' },
|
||||
{ "global", no_argument, 0, 'G' },
|
||||
{ "word-array-name", required_argument, 0, 'W' },
|
||||
{ "switch", required_argument, 0, 'S' },
|
||||
{ "omit-struct-type", no_argument, 0, 'T' },
|
||||
{ "key-positions", required_argument, 0, 'k' },
|
||||
{ "compare-strlen", no_argument, 0, 'l' },
|
||||
{ "duplicates", no_argument, 0, 'D' },
|
||||
{ "fast", required_argument, 0, 'f' },
|
||||
{ "initial-asso", required_argument, 0, 'i' },
|
||||
{ "jump", required_argument, 0, 'j' },
|
||||
{ "no-strlen", no_argument, 0, 'n' },
|
||||
{ "occurrence-sort", no_argument, 0, 'o' },
|
||||
{ "random", no_argument, 0, 'r' },
|
||||
{ "size-multiple", required_argument, 0, 's' },
|
||||
{ "help", no_argument, 0, 'h' },
|
||||
{ "version", no_argument, 0, 'v' },
|
||||
{ "debug", no_argument, 0, 'd' },
|
||||
{ 0, no_argument, 0, 0 }
|
||||
{ "delimiters", required_argument, NULL, 'e' },
|
||||
{ "struct-type", no_argument, NULL, 't' },
|
||||
{ "language", required_argument, NULL, 'L' },
|
||||
{ "slot-name", required_argument, NULL, 'K' },
|
||||
{ "initializer-suffix", required_argument, NULL, 'F' },
|
||||
{ "hash-fn-name", required_argument, NULL, 'H' },
|
||||
{ "lookup-fn-name", required_argument, NULL, 'N' },
|
||||
{ "class-name", required_argument, NULL, 'Z' },
|
||||
{ "seven-bit", no_argument, NULL, '7' },
|
||||
{ "compare-strncmp", no_argument, NULL, 'c' },
|
||||
{ "readonly-tables", no_argument, NULL, 'C' },
|
||||
{ "enum", no_argument, NULL, 'E' },
|
||||
{ "includes", no_argument, NULL, 'I' },
|
||||
{ "global", no_argument, NULL, 'G' },
|
||||
{ "word-array-name", required_argument, NULL, 'W' },
|
||||
{ "switch", required_argument, NULL, 'S' },
|
||||
{ "omit-struct-type", no_argument, NULL, 'T' },
|
||||
{ "key-positions", required_argument, NULL, 'k' },
|
||||
{ "compare-strlen", no_argument, NULL, 'l' },
|
||||
{ "duplicates", no_argument, NULL, 'D' },
|
||||
{ "fast", required_argument, NULL, 'f' },
|
||||
{ "initial-asso", required_argument, NULL, 'i' },
|
||||
{ "jump", required_argument, NULL, 'j' },
|
||||
{ "no-strlen", no_argument, NULL, 'n' },
|
||||
{ "occurrence-sort", no_argument, NULL, 'o' },
|
||||
{ "random", no_argument, NULL, 'r' },
|
||||
{ "size-multiple", required_argument, NULL, 's' },
|
||||
{ "help", no_argument, NULL, 'h' },
|
||||
{ "version", no_argument, NULL, 'v' },
|
||||
{ "debug", no_argument, NULL, 'd' },
|
||||
{ NULL, no_argument, NULL, 0 }
|
||||
};
|
||||
|
||||
void
|
||||
Options::parse_options (int argc, char *argv[])
|
||||
{
|
||||
int option_char;
|
||||
int option_char;
|
||||
|
||||
program_name = argv[0];
|
||||
_argument_count = argc;
|
||||
@@ -553,7 +586,7 @@ Options::parse_options (int argc, char *argv[])
|
||||
_option_word |= DUP;
|
||||
break;
|
||||
}
|
||||
case 'e': /* Allows user to provide keyword/attribute separator */
|
||||
case 'e': /* Specify keyword/attribute separator */
|
||||
{
|
||||
_delimiters = /*getopt*/optarg;
|
||||
break;
|
||||
@@ -563,7 +596,7 @@ Options::parse_options (int argc, char *argv[])
|
||||
_option_word |= ENUM;
|
||||
break;
|
||||
}
|
||||
case 'f': /* Generate the hash table ``fast.'' */
|
||||
case 'f': /* Generate the hash table "fast". */
|
||||
{
|
||||
_option_word |= FAST;
|
||||
if ((_iterations = atoi (/*getopt*/optarg)) < 0)
|
||||
@@ -578,7 +611,7 @@ Options::parse_options (int argc, char *argv[])
|
||||
_initializer_suffix = /*getopt*/optarg;
|
||||
break;
|
||||
}
|
||||
case 'g': /* Use the ``inline'' keyword for generated sub-routines, ifdef __GNUC__. */
|
||||
case 'g': /* Use the 'inline' keyword for generated sub-routines, ifdef __GNUC__. */
|
||||
break; /* This is now the default. */
|
||||
case 'G': /* Make the keyword table a global variable. */
|
||||
{
|
||||
@@ -622,30 +655,39 @@ Options::parse_options (int argc, char *argv[])
|
||||
}
|
||||
case 'k': /* Sets key positions used for hash function. */
|
||||
{
|
||||
const int BAD_VALUE = -1;
|
||||
const int BAD_VALUE = -2;
|
||||
const int EOS = PositionIterator::EOS;
|
||||
int value;
|
||||
PositionStringParser sparser (/*getopt*/optarg, 1, Positions::MAX_KEY_POS - 1, Positions::LASTCHAR, BAD_VALUE, EOS);
|
||||
PositionStringParser sparser (/*getopt*/optarg, 1, Positions::MAX_KEY_POS, Positions::LASTCHAR, BAD_VALUE, EOS);
|
||||
|
||||
if (/*getopt*/optarg [0] == '*') /* Use all the characters for hashing!!!! */
|
||||
_option_word = (_option_word & ~DEFAULTCHARS) | ALLCHARS;
|
||||
_option_word |= ALLCHARS;
|
||||
else
|
||||
{
|
||||
unsigned char *key_positions = _key_positions.pointer();
|
||||
unsigned char *key_pos;
|
||||
|
||||
for (key_pos = key_positions; (value = sparser.nextPosition()) != EOS; key_pos++)
|
||||
if (value == BAD_VALUE)
|
||||
{
|
||||
fprintf (stderr, "Illegal key value or range, use 1,2,3-%d,'$' or '*'.\n",
|
||||
Positions::MAX_KEY_POS - 1);
|
||||
short_usage (stderr);
|
||||
exit (1);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (value == BAD_VALUE)
|
||||
{
|
||||
fprintf (stderr, "Illegal key value or range, use 1,2,3-%d,'$' or '*'.\n",
|
||||
Positions::MAX_KEY_POS);
|
||||
short_usage (stderr);
|
||||
exit (1);
|
||||
}
|
||||
if (key_pos - key_positions == Positions::MAX_KEY_POS + 1)
|
||||
{
|
||||
/* More than Positions::MAX_KEY_POS + 1 key positions.
|
||||
Since all key positions are in the range
|
||||
1..Positions::MAX_KEY_POS or == Positions::LASTCHAR,
|
||||
there must be duplicates. */
|
||||
fprintf (stderr, "Duplicate keys selected\n");
|
||||
short_usage (stderr);
|
||||
exit (1);
|
||||
}
|
||||
*key_pos = value;
|
||||
|
||||
*key_pos = EOS;
|
||||
}
|
||||
|
||||
unsigned int total_keysig_size = key_pos - key_positions;
|
||||
if (total_keysig_size == 0)
|
||||
@@ -665,11 +707,6 @@ Options::parse_options (int argc, char *argv[])
|
||||
short_usage (stderr);
|
||||
exit (1);
|
||||
}
|
||||
|
||||
if (!(_key_positions.get_size() == 2
|
||||
&& _key_positions[0] == 1
|
||||
&& _key_positions[1] == Positions::LASTCHAR))
|
||||
_option_word &= ~DEFAULTCHARS;
|
||||
}
|
||||
break;
|
||||
}
|
||||
@@ -777,16 +814,16 @@ Options::parse_options (int argc, char *argv[])
|
||||
|
||||
}
|
||||
|
||||
if (argv[/*getopt*/optind] && ! freopen (argv[/*getopt*/optind], "r", stdin))
|
||||
if (/*getopt*/optind + 1 < argc)
|
||||
{
|
||||
fprintf (stderr, "Cannot open keyword file `%s'\n", argv[/*getopt*/optind]);
|
||||
fprintf (stderr, "Extra trailing arguments to %s.\n", program_name);
|
||||
short_usage (stderr);
|
||||
exit (1);
|
||||
}
|
||||
|
||||
if (++/*getopt*/optind < argc)
|
||||
if (argv[/*getopt*/optind] && ! freopen (argv[/*getopt*/optind], "r", stdin))
|
||||
{
|
||||
fprintf (stderr, "Extra trailing arguments to %s.\n", program_name);
|
||||
fprintf (stderr, "Cannot open keyword file `%s'\n", argv[/*getopt*/optind]);
|
||||
short_usage (stderr);
|
||||
exit (1);
|
||||
}
|
||||
|
||||
@@ -50,57 +50,54 @@ enum Option_Type
|
||||
/* Randomly initialize the associated values table. */
|
||||
RANDOM = 1 << 4,
|
||||
|
||||
/* Make default char positions be 1,$ (end of keyword). */
|
||||
DEFAULTCHARS = 1 << 5,
|
||||
|
||||
/* Generate switch output to save space. */
|
||||
SWITCH = 1 << 6,
|
||||
SWITCH = 1 << 5,
|
||||
|
||||
/* Don't include keyword length in hash computations. */
|
||||
NOLENGTH = 1 << 7,
|
||||
NOLENGTH = 1 << 6,
|
||||
|
||||
/* Generate a length table for string comparison. */
|
||||
LENTABLE = 1 << 8,
|
||||
LENTABLE = 1 << 7,
|
||||
|
||||
/* Handle duplicate hash values for keywords. */
|
||||
DUP = 1 << 9,
|
||||
DUP = 1 << 8,
|
||||
|
||||
/* Generate the hash function "fast". */
|
||||
FAST = 1 << 10,
|
||||
FAST = 1 << 9,
|
||||
|
||||
/* Don't include user-defined type definition in output -- it's already
|
||||
defined elsewhere. */
|
||||
NOTYPE = 1 << 11,
|
||||
NOTYPE = 1 << 10,
|
||||
|
||||
/* Generate strncmp rather than strcmp. */
|
||||
COMP = 1 << 12,
|
||||
COMP = 1 << 11,
|
||||
|
||||
/* Make the keyword table a global variable. */
|
||||
GLOBAL = 1 << 13,
|
||||
GLOBAL = 1 << 12,
|
||||
|
||||
/* Make the generated tables readonly (const). */
|
||||
CONST = 1 << 14,
|
||||
CONST = 1 << 13,
|
||||
|
||||
/* Generate K&R C code: no prototypes, no const. */
|
||||
KRC = 1 << 15,
|
||||
KRC = 1 << 14,
|
||||
|
||||
/* Generate C code: no prototypes, but const (user can #define it away). */
|
||||
C = 1 << 16,
|
||||
C = 1 << 15,
|
||||
|
||||
/* Generate ISO/ANSI C code: prototypes and const, but no class. */
|
||||
ANSIC = 1 << 17,
|
||||
ANSIC = 1 << 16,
|
||||
|
||||
/* Generate C++ code: prototypes, const, class, inline, enum. */
|
||||
CPLUSPLUS = 1 << 18,
|
||||
CPLUSPLUS = 1 << 17,
|
||||
|
||||
/* Use enum for constants. */
|
||||
ENUM = 1 << 19,
|
||||
ENUM = 1 << 18,
|
||||
|
||||
/* Generate #include statements. */
|
||||
INCLUDE = 1 << 20,
|
||||
INCLUDE = 1 << 21,
|
||||
|
||||
/* Assume 7-bit, not 8-bit, characters. */
|
||||
SEVENBIT = 1 << 21
|
||||
SEVENBIT = 1 << 22
|
||||
};
|
||||
|
||||
/* This class denotes a set of key positions. */
|
||||
@@ -112,8 +109,9 @@ public:
|
||||
/* Denotes the last char of a keyword, depending on the keyword's length. */
|
||||
static const int LASTCHAR = 0;
|
||||
|
||||
/* Maximum size of the set. */
|
||||
static const int MAX_KEY_POS = 127;
|
||||
/* Maximum key position specifiable by the user.
|
||||
Note that this must fit into the element type of _positions[], below. */
|
||||
static const int MAX_KEY_POS = 255;
|
||||
|
||||
/* Constructors. */
|
||||
Positions ();
|
||||
@@ -133,11 +131,13 @@ public:
|
||||
bool sort ();
|
||||
|
||||
private:
|
||||
/* Number of positions, excluding the terminating PositionIterator::EOS. */
|
||||
/* Number of positions. */
|
||||
unsigned int _size;
|
||||
/* Array of positions. 1 for the first char, 2 for the second char etc.,
|
||||
LASTCHAR for the last char. PositionIterator::EOS past the end. */
|
||||
unsigned char _positions[MAX_KEY_POS];
|
||||
LASTCHAR for the last char.
|
||||
Note that since duplicates are eliminated, the maximum possible size
|
||||
is MAX_KEY_POS + 1. */
|
||||
unsigned char _positions[MAX_KEY_POS + 1];
|
||||
};
|
||||
|
||||
/* This class denotes an iterator through a set of key positions. */
|
||||
@@ -149,14 +149,14 @@ public:
|
||||
PositionIterator (Positions const& positions);
|
||||
|
||||
/* End of iteration marker. */
|
||||
static const int EOS = Positions::MAX_KEY_POS;
|
||||
static const int EOS = -1;
|
||||
|
||||
/* Retrieves the next position, or EOS past the end. */
|
||||
int next ();
|
||||
|
||||
private:
|
||||
const Positions& _set;
|
||||
int _index;
|
||||
unsigned int _index;
|
||||
};
|
||||
|
||||
/* Class manager for gperf program Options. */
|
||||
|
||||
@@ -21,11 +21,14 @@
|
||||
If not, write to the Free Software Foundation, Inc.,
|
||||
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||
|
||||
/* ---------------------------- Class Positions ---------------------------- */
|
||||
|
||||
/* Constructors. */
|
||||
|
||||
INLINE
|
||||
Positions::Positions ()
|
||||
: _size (0)
|
||||
{
|
||||
_positions[0] = PositionIterator::EOS;
|
||||
}
|
||||
|
||||
INLINE
|
||||
@@ -33,7 +36,6 @@ Positions::Positions (int key1)
|
||||
: _size (1)
|
||||
{
|
||||
_positions[0] = key1;
|
||||
_positions[1] = PositionIterator::EOS;
|
||||
}
|
||||
|
||||
INLINE
|
||||
@@ -42,9 +44,10 @@ Positions::Positions (int key1, int key2)
|
||||
{
|
||||
_positions[0] = key1;
|
||||
_positions[1] = key2;
|
||||
_positions[2] = PositionIterator::EOS;
|
||||
}
|
||||
|
||||
/* Accessors. */
|
||||
|
||||
INLINE int
|
||||
Positions::operator[] (unsigned int index) const
|
||||
{
|
||||
@@ -57,6 +60,8 @@ Positions::get_size () const
|
||||
return _size;
|
||||
}
|
||||
|
||||
/* Write access. */
|
||||
|
||||
INLINE unsigned char *
|
||||
Positions::pointer ()
|
||||
{
|
||||
@@ -94,6 +99,9 @@ Positions::sort ()
|
||||
return duplicate_free;
|
||||
}
|
||||
|
||||
/* ------------------------- Class PositionIterator ------------------------ */
|
||||
|
||||
/* Initializes an iterator through POSITIONS. */
|
||||
INLINE
|
||||
PositionIterator::PositionIterator (Positions const& positions)
|
||||
: _set (positions),
|
||||
@@ -101,12 +109,15 @@ PositionIterator::PositionIterator (Positions const& positions)
|
||||
{
|
||||
}
|
||||
|
||||
/* Retrieves the next position, or EOS past the end. */
|
||||
INLINE int
|
||||
PositionIterator::next ()
|
||||
{
|
||||
return _set._positions[_index++];
|
||||
return (_index < _set._size ? _set._positions[_index++] : EOS);
|
||||
}
|
||||
|
||||
/* ----------------------------- Class Options ----------------------------- */
|
||||
|
||||
/* Tests a given boolean option. Returns true if set, false otherwise. */
|
||||
INLINE bool
|
||||
Options::operator[] (Option_Type option) const
|
||||
|
||||
@@ -471,7 +471,10 @@ Output::output_hash_function ()
|
||||
" };\n");
|
||||
|
||||
/* Optimize special case of ``-k 1,$'' */
|
||||
if (option[DEFAULTCHARS])
|
||||
if (!option[ALLCHARS]
|
||||
&& option.get_key_positions().get_size() == 2
|
||||
&& option.get_key_positions()[0] == 1
|
||||
&& option.get_key_positions()[1] == Positions::LASTCHAR)
|
||||
printf (" return %sasso_values[%sstr[len - 1]] + asso_values[%sstr[0]];\n",
|
||||
option[NOLENGTH] ? "" : "len + ",
|
||||
char_to_index, char_to_index);
|
||||
|
||||
Reference in New Issue
Block a user