2 /* regextype.c -- Decode the name of a regular expression syntax into am
5 Copyright 2005 Free Software Foundation, Inc.
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 /* Written by James Youngman, <jay@gnu.org>. */
29 #include "regextype.h"
38 # define _(Text) gettext (Text)
43 # define N_(String) gettext_noop (String)
45 /* See locate.c for explanation as to why not use (String) */
46 # define N_(String) String
51 struct tagRegexTypeMap
57 struct tagRegexTypeMap regex_map
[] =
60 { "findutils-default", RE_SYNTAX_EMACS
|RE_DOT_NEWLINE
},
62 { "awk", RE_SYNTAX_AWK
},
63 { "egrep", RE_SYNTAX_EGREP
},
65 { "ed", RE_SYNTAX_ED
},
67 { "emacs", RE_SYNTAX_EMACS
},
68 { "gnu-awk", RE_SYNTAX_GNU_AWK
},
69 { "grep", RE_SYNTAX_GREP
},
70 { "posix-awk", RE_SYNTAX_POSIX_AWK
},
71 { "posix-basic", RE_SYNTAX_POSIX_BASIC
},
72 { "posix-egrep", RE_SYNTAX_POSIX_EGREP
},
73 { "posix-extended", RE_SYNTAX_POSIX_EXTENDED
},
75 { "posix-minimal-basic", RE_SYNTAX_POSIX_MINIMAL_BASIC
},
76 { "sed", RE_SYNTAX_SED
},
77 /* ,{ "posix-common", _RE_SYNTAX_POSIX_COMMON } */
80 enum { N_REGEX_MAP_ENTRIES
= sizeof(regex_map
)/sizeof(regex_map
[0]) };
83 get_regex_type(const char *s
)
90 for (i
=0u; i
<N_REGEX_MAP_ENTRIES
; ++i
)
92 if (0 == strcmp(regex_map
[i
].name
, s
))
93 return regex_map
[i
].option_val
;
95 msglen
+= strlen(quote(regex_map
[i
].name
)) + 2u;
98 /* We didn't find a match for the type of regular expression that the
99 * user indicated they wanted. Tell them what the options are.
101 p
= buf
= xmalloc(1u + msglen
);
102 for (i
=0u; i
<N_REGEX_MAP_ENTRIES
; ++i
)
109 p
+= sprintf(p
, "%s", quote(regex_map
[i
].name
));
112 error(1, 0, _("Unknown regular expression type %s; valid types are %s."),
121 get_regex_type_name(unsigned int ix
)
123 if (ix
< N_REGEX_MAP_ENTRIES
)
124 return regex_map
[ix
].name
;
130 get_regex_type_flags(unsigned int ix
)
132 if (ix
< N_REGEX_MAP_ENTRIES
)
133 return regex_map
[ix
].option_val
;
139 int get_regex_type_synonym(unsigned int ix
)
144 if (ix
>= N_REGEX_MAP_ENTRIES
)
147 flags
= regex_map
[ix
].option_val
;
148 for (i
=0u; i
<ix
; ++i
)
150 if (flags
== regex_map
[i
].option_val
)