6 #include "lib/global.h" /* <glib.h> */
10 #ifdef SEARCH_TYPE_PCRE
14 /*** typedefs(not structures) and defined constants **********************************************/
16 typedef int (*mc_search_fn
) (const void *user_data
, gsize char_offset
);
18 #define MC_SEARCH__NUM_REPLACE_ARGS 64
20 #ifdef SEARCH_TYPE_GLIB
21 #define mc_search_matchinfo_t GMatchInfo
23 #define mc_search_matchinfo_t pcre_extra
26 /*** enums ***************************************************************************************/
32 MC_SEARCH_E_REGEX_COMPILE
,
34 MC_SEARCH_E_REGEX_REPLACE
,
49 MC_SEARCH_CB_INVALID
= -1,
50 MC_SEARCH_CB_ABORT
= -2,
51 MC_SEARCH_CB_SKIP
= -3
55 /*** structures declarations (and typedefs of structures)*****************************************/
57 typedef struct mc_search_struct
59 /* public input data */
61 /* search in all charsets */
62 gboolean is_all_charsets
;
64 /* case sensitive search */
65 gboolean is_case_sensitive
;
67 /* search only once. Is this for replace? */
68 gboolean is_once_only
;
70 /* search only whole words (from begin to end). Used only with NORMAL search type */
73 /* search entire string (from begin to end). Used only with GLOB search type */
74 gboolean is_entire_line
;
76 /* function, used for getting data. NULL if not used */
77 mc_search_fn search_fn
;
79 /* function, used for updatin current search status. NULL if not used */
80 mc_search_fn update_fn
;
83 mc_search_type_t search_type
;
86 /* public output data */
88 /* some data for normal */
92 /* some data for regexp */
95 mc_search_matchinfo_t
*regex_match_info
;
96 GString
*regex_buffer
;
97 #ifdef SEARCH_TYPE_PCRE
98 int iovector
[MC_SEARCH__NUM_REPLACE_ARGS
* 2];
99 #endif /* SEARCH_TYPE_PCRE */
103 /* prepared conditions */
104 GPtrArray
*conditions
;
106 /* original search string */
110 /* error code after search */
111 mc_search_error_t error
;
115 typedef struct mc_search_type_str_struct
118 mc_search_type_t type
;
119 } mc_search_type_str_t
;
121 /*** global variables defined in .c file *********************************************************/
123 /*** declarations of public functions ************************************************************/
125 mc_search_t
*mc_search_new (const gchar
* original
, gsize original_len
);
127 void mc_search_free (mc_search_t
* lc_mc_search
);
129 gboolean
mc_search_prepare (mc_search_t
* mc_search
);
131 gboolean
mc_search_run (mc_search_t
* mc_search
, const void *user_data
, gsize start_search
,
132 gsize end_search
, gsize
* found_len
);
134 gboolean
mc_search_is_type_avail (mc_search_type_t
);
136 const mc_search_type_str_t
*mc_search_types_list_get (size_t * num
);
138 GString
*mc_search_prepare_replace_str (mc_search_t
* mc_search
, GString
* replace_str
);
139 char *mc_search_prepare_replace_str2 (mc_search_t
*, char *);
141 gboolean
mc_search_is_fixed_search_str (mc_search_t
*);
143 gchar
**mc_search_get_types_strings_array (size_t * num
);
145 gboolean
mc_search (const gchar
*, const gchar
*, mc_search_type_t
);
147 int mc_search_getstart_result_by_num (mc_search_t
*, int);
148 int mc_search_getend_result_by_num (mc_search_t
*, int);