normal.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. Search text engine.
  3. Plain search
  4. Copyright (C) 2009, 2011
  5. The Free Software Foundation, Inc.
  6. Written by:
  7. Slava Zanko <slavazanko@gmail.com>, 2009.
  8. This file is part of the Midnight Commander.
  9. The Midnight Commander is free software: you can redistribute it
  10. and/or modify it under the terms of the GNU General Public License as
  11. published by the Free Software Foundation, either version 3 of the License,
  12. or (at your option) any later version.
  13. The Midnight Commander is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. GNU General Public License for more details.
  17. You should have received a copy of the GNU General Public License
  18. along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #include <config.h>
  21. #include "lib/global.h"
  22. #include "lib/strutil.h"
  23. #include "lib/search.h"
  24. #include "lib/charsets.h"
  25. #include "internal.h"
  26. /*** global variables ****************************************************************************/
  27. /*** file scope macro definitions ****************************************************************/
  28. /*** file scope type declarations ****************************************************************/
  29. /*** file scope variables ************************************************************************/
  30. /*** file scope functions ************************************************************************/
  31. static GString *
  32. mc_search__normal_translate_to_regex (const GString * astr)
  33. {
  34. const char *str = astr->str;
  35. GString *buff;
  36. gsize loop;
  37. buff = g_string_sized_new (32);
  38. for (loop = 0; loop < astr->len; loop++)
  39. switch (str[loop])
  40. {
  41. case '*':
  42. case '?':
  43. case ',':
  44. case '{':
  45. case '}':
  46. case '[':
  47. case ']':
  48. case '\\':
  49. case '+':
  50. case '.':
  51. case '$':
  52. case '(':
  53. case ')':
  54. case '^':
  55. case '-':
  56. case '|':
  57. g_string_append_c (buff, '\\');
  58. /* fall through */
  59. default:
  60. g_string_append_c (buff, str[loop]);
  61. break;
  62. }
  63. return buff;
  64. }
  65. /*** public functions ****************************************************************************/
  66. void
  67. mc_search__cond_struct_new_init_normal (const char *charset, mc_search_t * lc_mc_search,
  68. mc_search_cond_t * mc_search_cond)
  69. {
  70. GString *tmp;
  71. tmp = mc_search__normal_translate_to_regex (mc_search_cond->str);
  72. g_string_free (mc_search_cond->str, TRUE);
  73. if (lc_mc_search->whole_words)
  74. {
  75. /* NOTE: \b as word boundary doesn't allow search
  76. * whole words with non-ASCII symbols */
  77. g_string_prepend (tmp, "(^|[^\\p{L}\\p{N}_])(");
  78. g_string_append (tmp, ")([^\\p{L}\\p{N}_]|$)");
  79. }
  80. mc_search_cond->str = tmp;
  81. mc_search__cond_struct_new_init_regex (charset, lc_mc_search, mc_search_cond);
  82. }
  83. /* --------------------------------------------------------------------------------------------- */
  84. gboolean
  85. mc_search__run_normal (mc_search_t * lc_mc_search, const void *user_data,
  86. gsize start_search, gsize end_search, gsize * found_len)
  87. {
  88. return mc_search__run_regex (lc_mc_search, user_data, start_search, end_search, found_len);
  89. }
  90. /* --------------------------------------------------------------------------------------------- */
  91. GString *
  92. mc_search_normal_prepare_replace_str (mc_search_t * lc_mc_search, GString * replace_str)
  93. {
  94. (void) lc_mc_search;
  95. return g_string_new_len (replace_str->str, replace_str->len);
  96. }