3 Common share code for module.
5 Copyright (C) 2009-2016
6 Free Software Foundation, Inc.
9 Slava Zanko <slavazanko@gmail.com>, 2009, 2011
10 Andrew Borodin <aborodin@vmail.ru>, 2013
12 This file is part of the Midnight Commander.
14 The Midnight Commander is free software: you can redistribute it
15 and/or modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation, either version 3 of the License,
17 or (at your option) any later version.
19 The Midnight Commander is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>.
31 #include <sys/types.h>
33 #include "lib/global.h"
34 #include "lib/strutil.h"
35 #include "lib/search.h"
37 #include "lib/charsets.h"
42 /*** global variables ****************************************************************************/
44 const char *STR_E_NOTFOUND
= N_("Search string not found");
45 const char *STR_E_UNKNOWN_TYPE
= N_("Not implemented yet");
46 const char *STR_E_RPL_NOT_EQ_TO_FOUND
=
47 N_("Num of replace tokens not equal to num of found tokens");
48 const char *STR_E_RPL_INVALID_TOKEN
= N_("Invalid token number %d");
50 /*** file scope macro definitions ****************************************************************/
52 /*** file scope type declarations ****************************************************************/
54 /*** file scope variables ************************************************************************/
56 /*** file scope functions ************************************************************************/
58 /*** public functions ****************************************************************************/
61 mc_search__recode_str (const char *str
, gsize str_len
,
62 const char *charset_from
, const char *charset_to
, gsize
* bytes_written
)
68 if (charset_from
== NULL
|| charset_to
== NULL
69 || g_ascii_strcasecmp (charset_to
, charset_from
) == 0)
71 *bytes_written
= str_len
;
72 return g_strndup (str
, str_len
);
75 conv
= g_iconv_open (charset_to
, charset_from
);
76 if (conv
== INVALID_CONV
)
78 *bytes_written
= str_len
;
79 return g_strndup (str
, str_len
);
82 ret
= g_convert_with_iconv (str
, str_len
, conv
, &bytes_read
, bytes_written
, NULL
);
87 *bytes_written
= str_len
;
88 return g_strndup (str
, str_len
);
94 /* --------------------------------------------------------------------------------------------- */
97 mc_search__get_one_symbol (const char *charset
, const char *str
, gsize str_len
,
98 gboolean
* just_letters
)
100 gchar
*converted_str
, *next_char
;
104 gsize converted_str_len
;
105 gchar
*converted_str2
;
110 converted_str
= mc_search__recode_str (str
, str_len
, charset
, cp_display
, &converted_str_len
);
114 converted_str
= g_strndup (str
, str_len
);
117 next_char
= (char *) str_cget_next_char (converted_str
);
119 tmp_len
= next_char
- converted_str
;
121 converted_str
[tmp_len
] = '\0';
125 mc_search__recode_str (converted_str
, tmp_len
, cp_display
, charset
, &converted_str_len
);
129 if (str_isalnum (converted_str
) && !str_isdigit (converted_str
))
130 *just_letters
= TRUE
;
132 *just_letters
= FALSE
;
135 g_free (converted_str
);
136 return converted_str2
;
138 return converted_str
;
142 /* --------------------------------------------------------------------------------------------- */
145 mc_search__tolower_case_str (const char *charset
, const char *str
, gsize str_len
)
149 gchar
*converted_str
, *tmp_str1
, *tmp_str2
, *tmp_str3
;
150 gsize converted_str_len
;
156 tmp_str2
= converted_str
=
157 mc_search__recode_str (str
, str_len
, charset
, cp_display
, &converted_str_len
);
159 tmp_len
= converted_str_len
+ 1;
161 tmp_str3
= tmp_str1
= g_strdup (converted_str
);
163 while (str_tolower (tmp_str1
, &tmp_str2
, &tmp_len
))
164 tmp_str1
+= str_length_char (tmp_str1
);
168 mc_search__recode_str (converted_str
, converted_str_len
, cp_display
, charset
, &tmp_len
);
169 g_free (converted_str
);
171 ret
= g_string_new_len (tmp_str2
, tmp_len
);
175 const gchar
*tmp_str1
= str
;
176 gchar
*converted_str
, *tmp_str2
;
177 gsize converted_str_len
= str_len
+ 1;
181 tmp_str2
= converted_str
= g_strndup (str
, str_len
);
183 while (str_tolower (tmp_str1
, &tmp_str2
, &converted_str_len
))
184 tmp_str1
+= str_length_char (tmp_str1
);
186 ret
= g_string_new_len (converted_str
, str_len
);
187 g_free (converted_str
);
192 /* --------------------------------------------------------------------------------------------- */
195 mc_search__toupper_case_str (const char *charset
, const char *str
, gsize str_len
)
199 gchar
*converted_str
, *tmp_str1
, *tmp_str2
, *tmp_str3
;
200 gsize converted_str_len
;
206 tmp_str2
= converted_str
=
207 mc_search__recode_str (str
, str_len
, charset
, cp_display
, &converted_str_len
);
209 tmp_len
= converted_str_len
+ 1;
211 tmp_str3
= tmp_str1
= g_strdup (converted_str
);
213 while (str_toupper (tmp_str1
, &tmp_str2
, &tmp_len
))
214 tmp_str1
+= str_length_char (tmp_str1
);
219 mc_search__recode_str (converted_str
, converted_str_len
, cp_display
, charset
, &tmp_len
);
220 g_free (converted_str
);
222 ret
= g_string_new_len (tmp_str2
, tmp_len
);
227 const gchar
*tmp_str1
= str
;
228 gchar
*converted_str
, *tmp_str2
;
229 gsize converted_str_len
= str_len
+ 1;
233 tmp_str2
= converted_str
= g_strndup (str
, str_len
);
235 while (str_toupper (tmp_str1
, &tmp_str2
, &converted_str_len
))
236 tmp_str1
+= str_length_char (tmp_str1
);
238 ret
= g_string_new_len (converted_str
, str_len
);
239 g_free (converted_str
);
244 /* --------------------------------------------------------------------------------------------- */
247 mc_search_get_types_strings_array (size_t * num
)
253 const mc_search_type_str_t
*type_str
;
254 const mc_search_type_str_t
*types_str
= mc_search_types_list_get (&n
);
256 ret
= g_try_new0 (char *, n
+ 1);
260 for (lc_index
= 0, type_str
= types_str
; type_str
->str
!= NULL
; type_str
++, lc_index
++)
261 ret
[lc_index
] = g_strdup (type_str
->str
);
263 /* don't count last NULL item */
265 *num
= (size_t) lc_index
;
270 /* --------------------------------------------------------------------------------------------- */