summaryrefslogtreecommitdiff
path: root/src/lib/eina/eina_fnmatch.c
blob: 79df90fe554b67217e008018b41318f1f3e3c869 (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

#include <Eina.h>

#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <pcreposix.h>

inline static int
_is_escapable(char c)
{
   switch (c)
     {
      case '[': case '|': case '(': case ')': case '*': case '?':
      case '!': case '^': case '$': case '.': case '+': case '\\':
        return 1;
      default:
        return 0;
     }
}

inline static char *
_wildcards_to_regex(const char *pattern, int flags)
{

   // Counts how many additional chars needs to be allocated
   int pattern_length = strlen(pattern);
   int count = 2;  // starts with '^' and ends with '$'
   for (int j = 0; j < pattern_length; ++j)
     {
        if (pattern[j] == '\\')
          {
             if (flags & FNM_NOESCAPE) count++;
             else count += 2;
          }
        else if ((pattern[j] == '*') || (pattern[j] == '?'))
          {
             if (flags & FNM_PATHNAME)
               {
                  if (flags & FNM_PERIOD)  // PATHNAME + PERIOD
                    {
                       if (pattern[j] == '*')
                         {
                            if (j == 0) count += 10;
                            else if (pattern[j - 1] == '/') count += 10;
                            else count += 5;
                         }
                       else if ((j == 0) || (pattern[j - 1] == '/')) count += 10;
                       else count += 4;
                    }
                  else if (pattern[j] == '*') count += 5;   // PATHNAME
                  else count += 4;
               }
             else if (flags & FNM_PERIOD)
               {
                  if (j == 0)  // period at init
                    {
                       if (pattern[j] == '*') count += 5;
                       else count += 4;
                    }
                  // period at other places
                  else if (pattern[j] == '*') count += 2;
                  else count++;
               }
             else if (pattern[j] == '*') count += 2;  // NORMAL
             else count++;
          }
        else if (pattern[j] == '.') count += 4;
        else count++;  // OTHERS
     }

   int reg_length = pattern_length + count + 1;

   // Translates wildcards to regex
   char *reg_pattern = calloc(sizeof(char), reg_length);
   if (reg_pattern == NULL) exit(ENOMEM);
   reg_pattern[0] = '^';
   int i = 1;
   for (int j = 0; j < pattern_length; ++j)
     {
        if (pattern[j] == '\\')
          {
             if (flags & FNM_NOESCAPE)
                reg_pattern[i++] = '/';
             else if (_is_escapable(pattern[j + 1]))
               {
                  reg_pattern[i++] = '\\';
                  reg_pattern[i++] = pattern[++j];
               }
             else
               {
                  reg_pattern[i++] = '\\';
                  reg_pattern[i++] = '/';
               }
          }
        else if ((pattern[j] == '*') || (pattern[j] == '?'))
          {
             if (flags & FNM_PATHNAME)
               {
                  if (flags & FNM_PERIOD)  // PATHNAME + PERIOD
                    {
                       if (pattern[j] == '*')
                         {
                            if ( (j == 0) || (pattern[j - 1] == '/') )
                              {
                                 strcpy_s(reg_pattern + i,
                                          reg_length - i,
                                          "[^\\.][^/]*");
                                 i += 10;
                              }
                            else
                              {
                                 strcpy_s(reg_pattern + i,
                                          reg_length - i,
                                         "[^/]*");
                                 i += 5;
                              }
                         }
                       else if (j == 0)
                         {
                            strcpy_s(reg_pattern + i,
                                     reg_length - i,
                                     "[^\\.][^/]?");
                            i += 10;
                         }
                       else if (pattern[j - 1] == '/')
                         {
                            strcpy_s(reg_pattern + i,
                                     reg_length - i,
                                     "[^\\.][^/]?");
                            i += 10;
                         }
                       else
                         {
                            strcpy_s(reg_pattern + i,
                                     reg_length - i,
                                     "[^/]");
                            i += 4;
                         }
                    }
                  else if (pattern[j] == '*')  // PATHNAME
                    {
                       strcpy_s(reg_pattern + i,
                                reg_length - i,
                                "[^/]*");
                       i += 5;
                    }
                  else
                    {
                       strcpy_s(reg_pattern + i,
                                reg_length - i,
                                "[^/]");
                       i += 4;
                    }
               }
             else if (flags & FNM_PERIOD)
               {
                  if (j == 0)  // period at init
                    {
                       if (pattern[j] == '*')
                         {
                            strcpy_s(reg_pattern + i,
                                     reg_length - i,
                                     "[\\.]*");
                            i += 5;
                         }
                       else
                         {
                            strcpy_s(reg_pattern + i,
                                     reg_length - i,
                                     "[\\.]");
                            i += 4;
                         }
                    }
                  else if (pattern[j] == '*')  // period at other places
                    {
                       strcpy_s(reg_pattern + i,
                                reg_length - i,
                                ".*");
                       i += 2;
                    }
                  else
                    reg_pattern[i++] = '.';
               }
             else if (pattern[j] == '*')  // NORMAL
               {
                  strcpy_s(reg_pattern + i,
                           reg_length - i,
                           ".*");
                  i += 2;
               }
             else
               {
                  strcpy_s(reg_pattern + i,
                           reg_length - i,
                           ".");
                  i++;
               }
          }
        else if (pattern[j] == '.')
          {
             strcpy_s(reg_pattern + i,
                      reg_length - i,
                      "[\\.]");
             i += 4;
          }
        else reg_pattern[i++] = pattern[j];  // OTHERS
     }
   strcpy_s(reg_pattern + i,
            reg_length - i,
            "$");

   return reg_pattern;
}

EINA_API int
eina_fnmatch(const char *pattern, const char *string, int flags)
{
   // Converts wildcard pattern to regex pattern
   char *reg_pattern = _wildcards_to_regex(pattern, flags);

   // Configures regex
   int regex_flags = (REG_NOSUB)  // Report only success/fail in regexec()
                     || ((flags & FNM_CASEFOLD) ? REG_ICASE : 0);

   // Compiles regex
   regex_t regex;
   if (regcomp(&regex, reg_pattern, regex_flags))
     {
        regfree(&regex);
        return FNM_NOMATCH;
     }

   // Replaces '\\' with '/'
   int string_length = strlen(string);
   char *unix_path = calloc(sizeof(char), string_length + 1);
   if (unix_path == NULL) exit(ENOMEM);
   unix_path[string_length] = '\0';
   for (int i = 0; i < string_length; ++i)
     unix_path[i] = (string[i] == '\\') ? '/' : string[i];

   // Executes regex
   int result = regexec(&regex, unix_path, 0, NULL, 0);

   // Cleans-up and returns
   free(unix_path);
   free(reg_pattern);
   regfree(&regex);
   return result ? FNM_NOMATCH : 0;
}