Updated Russian translation of mc man page.
[midnight-commander.git] / lib / search / hex.c
blob1f9fd5fc1c15c81cd6517b363780cca1bff30d0f
1 /*
2 Search text engine.
3 HEX-style pattern matching
5 Copyright (C) 2009, 2011
6 The Free Software Foundation, Inc.
8 Written by:
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/>.
27 #include <config.h>
29 #include <stdio.h>
31 #include "lib/global.h"
32 #include "lib/strutil.h"
33 #include "lib/search.h"
34 #include "lib/strescape.h"
36 #include "lib/charsets.h"
38 #include "internal.h"
40 /*** global variables ****************************************************************************/
42 /*** file scope macro definitions ****************************************************************/
44 /*** file scope type declarations ****************************************************************/
46 /*** file scope variables ************************************************************************/
48 /*** file scope functions ************************************************************************/
50 static GString *
51 mc_search__hex_translate_to_regex (const GString * astr)
53 GString *buff;
54 gchar *tmp_str, *tmp_str2;
55 gsize tmp_str_len;
56 gsize loop = 0;
58 buff = g_string_sized_new (64);
59 tmp_str = g_strndup (astr->str, astr->len);
60 tmp_str2 = tmp_str;
62 /* remove 0x prefices */
63 while (TRUE)
65 tmp_str2 = strstr (tmp_str2, "0x");
66 if (tmp_str2 == NULL)
67 break;
69 *tmp_str2++ = ' ';
70 *tmp_str2++ = ' ';
73 g_strchug (tmp_str); /* trim leadind whitespaces */
74 tmp_str_len = strlen (tmp_str);
76 while (loop < tmp_str_len)
78 int val, ptr;
80 if (sscanf (tmp_str + loop, "%x%n", &val, &ptr))
82 if (val < -128 || val > 255)
83 loop++;
84 else
86 g_string_append_printf (buff, "\\x%02X", (unsigned char) val);
87 loop += ptr;
90 else if (*(tmp_str + loop) == '"')
92 gsize loop2 = 0;
94 loop++;
95 while (loop + loop2 < tmp_str_len)
97 if (*(tmp_str + loop + loop2) == '"' &&
98 !strutils_is_char_escaped (tmp_str, tmp_str + loop + loop2))
99 break;
100 loop2++;
103 g_string_append_len (buff, tmp_str + loop, loop2 - 1);
104 loop += loop2;
106 else
107 loop++;
110 g_free (tmp_str);
112 return buff;
115 /*** public functions ****************************************************************************/
117 void
118 mc_search__cond_struct_new_init_hex (const char *charset, mc_search_t * lc_mc_search,
119 mc_search_cond_t * mc_search_cond)
121 GString *tmp;
123 g_string_ascii_down (mc_search_cond->str);
124 tmp = mc_search__hex_translate_to_regex (mc_search_cond->str);
125 g_string_free (mc_search_cond->str, TRUE);
126 mc_search_cond->str = tmp;
128 mc_search__cond_struct_new_init_regex (charset, lc_mc_search, mc_search_cond);
131 /* --------------------------------------------------------------------------------------------- */
133 gboolean
134 mc_search__run_hex (mc_search_t * lc_mc_search, const void *user_data,
135 gsize start_search, gsize end_search, gsize * found_len)
137 return mc_search__run_regex (lc_mc_search, user_data, start_search, end_search, found_len);
140 /* --------------------------------------------------------------------------------------------- */
142 GString *
143 mc_search_hex_prepare_replace_str (mc_search_t * lc_mc_search, GString * replace_str)
145 (void) lc_mc_search;
146 return g_string_new_len (replace_str->str, replace_str->len);
149 /* --------------------------------------------------------------------------------------------- */