3 Glob-style pattern matching
5 Copyright (C) 2009-2024
6 Free Software Foundation, Inc.
9 Slava Zanko <slavazanko@gmail.com>, 2009.
11 This file is part of the Midnight Commander.
13 The Midnight Commander is free software: you can redistribute it
14 and/or modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation, either version 3 of the License,
16 or (at your option) any later version.
18 The Midnight Commander is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program. If not, see <http://www.gnu.org/licenses/>.
29 #include "lib/global.h"
30 #include "lib/strutil.h"
31 #include "lib/search.h"
35 /*** global variables ****************************************************************************/
37 /*** file scope macro definitions ****************************************************************/
39 /*** file scope type declarations ****************************************************************/
41 /*** forward declarations (file scope functions) *************************************************/
43 /*** file scope variables ************************************************************************/
45 /* --------------------------------------------------------------------------------------------- */
46 /*** file scope functions ************************************************************************/
47 /* --------------------------------------------------------------------------------------------- */
50 mc_search__glob_translate_to_regex (const GString
*astr
)
54 gboolean inside_group
= FALSE
;
56 buff
= g_string_sized_new (32);
58 for (loop
= 0; loop
< astr
->len
; loop
++)
60 const char *str
= astr
->str
;
63 not_escaped
= !str_is_char_escaped (str
, str
+ loop
);
70 g_string_append (buff
, inside_group
? ".*" : "(.*)");
77 g_string_append (buff
, inside_group
? "." : "(.)");
84 g_string_append_c (buff
, inside_group
? '|' : ',');
91 g_string_append_c (buff
, '(');
99 g_string_append_c (buff
, ')');
100 inside_group
= FALSE
;
110 g_string_append_c (buff
, '\\');
115 g_string_append_c (buff
, str
[loop
]);
120 /* --------------------------------------------------------------------------------------------- */
123 mc_search__translate_replace_glob_to_regex (const char *str
)
127 gboolean escaped_mode
= FALSE
;
129 buff
= g_string_sized_new (32);
141 g_string_append_c (buff
, '\\');
149 g_string_append_c (buff
, '\\');
155 g_string_append_c (buff
, '\\');
160 g_string_append_c (buff
, c
);
161 escaped_mode
= FALSE
;
166 /*** public functions ****************************************************************************/
169 mc_search__cond_struct_new_init_glob (const char *charset
, mc_search_t
*lc_mc_search
,
170 mc_search_cond_t
*mc_search_cond
)
174 tmp
= mc_search__glob_translate_to_regex (mc_search_cond
->str
);
175 g_string_free (mc_search_cond
->str
, TRUE
);
177 if (lc_mc_search
->is_entire_line
)
179 g_string_prepend_c (tmp
, '^');
180 g_string_append_c (tmp
, '$');
182 mc_search_cond
->str
= tmp
;
184 mc_search__cond_struct_new_init_regex (charset
, lc_mc_search
, mc_search_cond
);
187 /* --------------------------------------------------------------------------------------------- */
190 mc_search__run_glob (mc_search_t
*lc_mc_search
, const void *user_data
,
191 gsize start_search
, gsize end_search
, gsize
*found_len
)
193 return mc_search__run_regex (lc_mc_search
, user_data
, start_search
, end_search
, found_len
);
196 /* --------------------------------------------------------------------------------------------- */
199 mc_search_glob_prepare_replace_str (mc_search_t
*lc_mc_search
, GString
*replace_str
)
203 repl
= mc_search__translate_replace_glob_to_regex (replace_str
->str
);
204 res
= mc_search_regex_prepare_replace_str (lc_mc_search
, repl
);
205 g_string_free (repl
, TRUE
);
210 /* --------------------------------------------------------------------------------------------- */