(mcview__get_nroff_real_len): immediately return 0 if viewer is not in nroff mode..
[midnight-commander.git] / lib / search / hex.c
blob25dd4c50033e394b34b3b5de710ba688f88b24dd
1 /*
2 Search text engine.
3 HEX-style pattern matching
5 Copyright (C) 2009 The Free Software Foundation, Inc.
7 Written by:
8 Slava Zanko <slavazanko@gmail.com>, 2009.
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software; you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation; either version 2 of the
15 License, or (at your option) any later version.
17 The Midnight Commander is distributed in the hope that it will be
18 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
19 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
25 MA 02110-1301, USA.
28 #include <config.h>
30 #include <stdio.h>
32 #include "lib/global.h"
33 #include "lib/strutil.h"
34 #include "lib/search.h"
35 #include "lib/strescape.h"
37 #include "lib/charsets.h"
39 #include "internal.h"
41 /*** global variables ****************************************************************************/
43 /*** file scope macro definitions ****************************************************************/
45 /*** file scope type declarations ****************************************************************/
47 /*** file scope variables ************************************************************************/
49 /*** file scope functions ************************************************************************/
51 static GString *
52 mc_search__hex_translate_to_regex (const GString * astr)
54 const char *str = astr->str;
55 GString *buff;
56 gchar *tmp_str;
57 gsize loop = 0;
58 int val, ptr;
60 buff = g_string_sized_new (64);
61 tmp_str = g_strndup (str, astr->len);
62 g_strchug (tmp_str); /* trim leadind whitespaces */
64 while (loop < astr->len)
66 if (sscanf (tmp_str + loop, "%i%n", &val, &ptr))
68 gchar *tmp_str2;
70 if (val < -128 || val > 255)
72 loop++;
73 continue;
76 tmp_str2 = g_strdup_printf ("\\x%02X", (unsigned char) val);
77 g_string_append (buff, tmp_str2);
78 g_free (tmp_str2);
79 loop += ptr;
81 else if (*(tmp_str + loop) == '"')
83 gsize loop2 = 0;
85 loop++;
86 while (loop + loop2 < astr->len)
88 if (*(tmp_str + loop + loop2) == '"' &&
89 !strutils_is_char_escaped (tmp_str, tmp_str + loop + loop2))
90 break;
91 loop2++;
94 g_string_append_len (buff, tmp_str + loop, loop2 - 1);
95 loop += loop2;
97 else
98 loop++;
101 g_free (tmp_str);
103 return buff;
106 /*** public functions ****************************************************************************/
108 void
109 mc_search__cond_struct_new_init_hex (const char *charset, mc_search_t * lc_mc_search,
110 mc_search_cond_t * mc_search_cond)
112 GString *tmp;
114 tmp = mc_search__hex_translate_to_regex (mc_search_cond->str);
115 g_string_free (mc_search_cond->str, TRUE);
116 mc_search_cond->str = tmp;
118 mc_search__cond_struct_new_init_regex (charset, lc_mc_search, mc_search_cond);
121 /* --------------------------------------------------------------------------------------------- */
123 gboolean
124 mc_search__run_hex (mc_search_t * lc_mc_search, const void *user_data,
125 gsize start_search, gsize end_search, gsize * found_len)
127 return mc_search__run_regex (lc_mc_search, user_data, start_search, end_search, found_len);
130 /* --------------------------------------------------------------------------------------------- */
132 GString *
133 mc_search_hex_prepare_replace_str (mc_search_t * lc_mc_search, GString * replace_str)
135 (void) lc_mc_search;
136 return g_string_new_len (replace_str->str, replace_str->len);
139 /* --------------------------------------------------------------------------------------------- */