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 */
94 mc_search_matchinfo_t
*regex_match_info
;
95 GString
*regex_buffer
;
96 #ifdef SEARCH_TYPE_PCRE
97 int iovector
[MC_SEARCH__NUM_REPLACE_ARGS
* 2];
98 #endif /* SEARCH_TYPE_PCRE */
102 /* prepared conditions */
103 GPtrArray
*conditions
;
105 /* original search string */
109 /* error code after search */
110 mc_search_error_t error
;
114 typedef struct mc_search_type_str_struct
117 mc_search_type_t type
;
118 } mc_search_type_str_t
;
120 /*** global variables defined in .c file *********************************************************/
122 /*** declarations of public functions ************************************************************/
124 mc_search_t
*mc_search_new (const gchar
* original
, gsize original_len
);
126 void mc_search_free (mc_search_t
* lc_mc_search
);
128 gboolean
mc_search_prepare (mc_search_t
* mc_search
);
130 gboolean
mc_search_run (mc_search_t
* mc_search
, const void *user_data
, gsize start_search
,
131 gsize end_search
, gsize
* found_len
);
133 gboolean
mc_search_is_type_avail (mc_search_type_t
);
135 const mc_search_type_str_t
*mc_search_types_list_get (size_t * num
);
137 GString
*mc_search_prepare_replace_str (mc_search_t
* mc_search
, GString
* replace_str
);
138 char *mc_search_prepare_replace_str2 (mc_search_t
*, char *);
140 gboolean
mc_search_is_fixed_search_str (mc_search_t
*);
142 gchar
**mc_search_get_types_strings_array (size_t * num
);
144 gboolean
mc_search (const gchar
*, const gchar
*, mc_search_type_t
);
146 int mc_search_getstart_result_by_num (mc_search_t
*, int);
147 int mc_search_getend_result_by_num (mc_search_t
*, int);