Allow the caller to detect if one regex type is identical to another.
[findutils.git] / lib / regextype.c
blobb2fdb8970b679155ef5438980f80c68295d208c4
1 /* regextype.c -- Decode the name of a regular expression syntax into am
2 option name.
4 Copyright 2005 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
20 /* Written by James Youngman, <jay@gnu.org>. */
22 #if HAVE_CONFIG_H
23 # include <config.h>
24 #endif
26 #include <string.h>
27 #include <stdio.h>
29 #include "regextype.h"
30 #include "regex.h"
31 #include "quote.h"
32 #include "quotearg.h"
33 #include "xalloc.h"
34 #include "error.h"
37 #if ENABLE_NLS
38 # include <libintl.h>
39 # define _(Text) gettext (Text)
40 #else
41 # define _(Text) Text
42 #endif
43 #ifdef gettext_noop
44 # define N_(String) gettext_noop (String)
45 #else
46 /* See locate.c for explanation as to why not use (String) */
47 # define N_(String) String
48 #endif
52 struct tagRegexTypeMap
54 char *name;
55 int option_val;
58 struct tagRegexTypeMap regex_map[] =
60 #ifdef FINDUTILS
61 { "findutils-default", RE_SYNTAX_EMACS|RE_DOT_NEWLINE },
62 #endif
63 { "emacs", RE_SYNTAX_EMACS },
64 { "posix-basic", RE_SYNTAX_POSIX_BASIC },
65 { "posix-extended", RE_SYNTAX_POSIX_EXTENDED },
66 { "awk", RE_SYNTAX_AWK },
67 { "gnu-awk", RE_SYNTAX_GNU_AWK },
68 { "posix-awk", RE_SYNTAX_POSIX_AWK },
69 { "grep", RE_SYNTAX_GREP },
70 { "egrep", RE_SYNTAX_EGREP },
71 { "posix-egrep", RE_SYNTAX_POSIX_EGREP }
72 #ifndef FINDUTILS
74 { "ed", RE_SYNTAX_ED },
75 { "sed", RE_SYNTAX_SED },
76 /* ,{ "posix-common", _RE_SYNTAX_POSIX_COMMON } */
77 { "posix-minimal-basic", RE_SYNTAX_POSIX_MINIMAL_BASIC }
78 #endif
80 enum { N_REGEX_MAP_ENTRIES = sizeof(regex_map)/sizeof(regex_map[0]) };
82 int
83 get_regex_type(const char *s)
85 unsigned i;
86 size_t msglen;
87 char *buf, *p;
89 msglen = 0u;
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;
94 else
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)
104 if (i > 0u)
106 strcpy(p, ", ");
107 p += 2;
109 p += sprintf(p, "%s", quote(regex_map[i].name));
112 error(1, 0, _("Unknown regular expression type %s; valid types are %s."),
113 quote(s),
114 buf);
115 /*NOTREACHED*/
116 return -1;
120 const char *
121 get_regex_type_name(int ix)
123 if (ix < N_REGEX_MAP_ENTRIES)
124 return regex_map[ix].name;
125 else
126 return NULL;
130 get_regex_type_flags(int ix)
132 if (ix < N_REGEX_MAP_ENTRIES)
133 return regex_map[ix].option_val;
134 else
135 return -1;
139 int get_regex_type_synonym(int ix)
141 unsigned i;
142 if (ix >= N_REGEX_MAP_ENTRIES)
143 return -1;
145 int flags = regex_map[ix].option_val;
146 for (i=0u; i<ix; ++i)
148 if (flags == regex_map[i].option_val)
150 return i;
153 return -1;