File: filter.c

package info (click to toggle)
sylfilter 0.8-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 2,124 kB
  • sloc: ansic: 12,806; sh: 8,910; makefile: 349
file content (398 lines) | stat: -rw-r--r-- 8,097 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/* SylFilter - a message filter
 *
 * Copyright (C) 2011 Hiroyuki Yamamoto
 * Copyright (C) 2011 Sylpheed Development Team
 */

#include <stdio.h>
#include <string.h>
#include <glib.h>

#include "filter.h"
#include "filter-private.h"
#include "filter-utils.h"


static XFilterAppMode xfilter_app_mode = 0;
static int xfilter_init_done = 0;
static int xfilter_debug_mode = 0;


int xfilter_init(XFilterAppMode mode)
{
	if (!xfilter_init_done) {
		xfilter_app_mode = mode;
		xfilter_init_done = 1;
	}

	return 0;
}

void xfilter_done(void)
{
	xfilter_conf_value_clear();
}

int xfilter_get_app_mode(void)
{
	return xfilter_app_mode;
}

XFilter *xfilter_new(XFilterType type, const char *name)
{
	XFilter *filter;

	if (type == XF_CONTENT) {
		filter = XFILTER(g_new0(XContentFilter, 1));
	} else {
		filter = XFILTER(g_new0(XTestFilter, 1));
	}

	filter->type = type;
	filter->name = g_strdup(name);

	return filter;
}

void xfilter_free(XFilter *filter)
{
	if (!filter)
		return;
	g_free(filter->name);
	g_free(filter);
}

XFilterType xfilter_get_type(XFilter *filter)
{
	g_return_val_if_fail(filter != NULL, -1);

	return filter->type;
}

const char *xfilter_get_name(XFilter *filter)
{
	g_return_val_if_fail(filter != NULL, NULL);

	return filter->name;
}

void xfilter_set_input_mime_types(XFilter *filter, const char **types)
{
}

void xfilter_set_output_mime_type(XFilter *filter, const char *type)
{
}

XMessageData *xfilter_message_data_new(const char *src, const char *mime_type)
{
	XMessageData *data;

	g_return_val_if_fail(mime_type != NULL, NULL);

	data = g_new0(XMessageData, 1);
	data->file = NULL;
	data->content = g_strdup(src);
	data->mime_type = g_strdup(mime_type);
	return data;
}

XMessageData *xfilter_message_data_read_file(const char *file, const char *mime_type)
{
	XMessageData *data;

	g_return_val_if_fail(file != NULL, NULL);
	g_return_val_if_fail(mime_type != NULL, NULL);

	data = g_new0(XMessageData, 1);
#ifdef G_OS_WIN32
	data->file = g_locale_to_utf8(file, -1, NULL, NULL, NULL);
#else
	data->file = g_strdup(file);
#endif
	data->content = NULL;
	data->mime_type = g_strdup(mime_type);
	return data;
}

void xfilter_message_data_free(XMessageData *msgdata)
{
	if (!msgdata)
		return;

	g_free(msgdata->mime_type);
	g_free(msgdata->file);
	g_free(msgdata->content);
	g_free(msgdata->from);
	g_free(msgdata->to);
	g_free(msgdata->cc);
	g_free(msgdata->subject);

	g_free(msgdata);
}

void xfilter_message_data_set_file(XMessageData *msgdata, const char *file)
{
	g_return_if_fail(msgdata != NULL);

	xfilter_message_data_set_content(msgdata, NULL);
	g_free(msgdata->file);
#ifdef G_OS_WIN32
	msgdata->file = g_locale_to_utf8(file, -1, NULL, NULL, NULL);
#else
	msgdata->file = g_strdup(file);
#endif
}

void xfilter_message_data_set_content(XMessageData *msgdata, char *content)
{
	if (msgdata->content)
		g_free(msgdata->content);
	msgdata->content = content;
}

void xfilter_message_data_set_attribute(XMessageData *msgdata, XMessageAttr attr, const char *value, int append)
{
	int len;

#define APPEND_STR(d, s)				\
	if (d) {					\
		len = strlen(d);			\
		d = g_realloc(d, len + strlen(s) + 2);	\
		d[len] = '\n';				\
		strcpy(d + len + 1, s);			\
	} else						\
		d = g_strdup(s);

#define SET_STR(d, s)	{ g_free(d); d = g_strdup(s); }

	if (!value)
		return;

	switch (attr) {
	case XM_FROM:
		if (append) {
			APPEND_STR(msgdata->from, value);
		} else {
			SET_STR(msgdata->from, value);
		}
		break;
	case XM_TO:
		if (append) {
			APPEND_STR(msgdata->to, value);
		} else {
			SET_STR(msgdata->to, value);
		}
		break;
	case XM_CC:
		if (append) {
			APPEND_STR(msgdata->cc, value);
		} else {
			SET_STR(msgdata->cc, value);
		}
		break;
	case XM_SUBJECT:
		if (append) {
			APPEND_STR(msgdata->subject, value);
		} else {
			SET_STR(msgdata->subject, value);
		}
		break;
	case XM_RECEIVED:
		if (append) {
			APPEND_STR(msgdata->received, value);
		} else {
			SET_STR(msgdata->received, value);
		}
	default:
		break;
	}

#undef APPEND_STR
#undef SET_STR
}

void xfilter_message_data_copy_attributes(XMessageData *msgdata, const XMessageData *srcdata)
{
	g_free(msgdata->from);
	msgdata->from = g_strdup(srcdata->from);
	g_free(msgdata->to);
	msgdata->to = g_strdup(srcdata->to);
	g_free(msgdata->cc);
	msgdata->cc = g_strdup(srcdata->cc);
	g_free(msgdata->subject);
	msgdata->subject = g_strdup(srcdata->subject);
}

const char *xfilter_message_data_get_attribute(const XMessageData *msgdata, XMessageAttr attr)
{
	g_return_val_if_fail(msgdata != NULL, NULL);

	switch (attr) {
	case XM_FROM:
		return msgdata->from;
	case XM_TO:
		return msgdata->to;
	case XM_CC:
		return msgdata->cc;
	case XM_SUBJECT:
		return msgdata->subject;
	case XM_RECEIVED:
		return msgdata->received;
	default:
		break;
	}

	return NULL;
}

const char *xfilter_message_data_get_mime_type(const XMessageData *msgdata)
{
	g_return_val_if_fail(msgdata != NULL, NULL);

	return msgdata->mime_type;
}

const char *xfilter_message_data_get_file(const XMessageData *msgdata)
{
	g_return_val_if_fail(msgdata != NULL, NULL);

	return msgdata->file;
}

const char *xfilter_message_data_get_content(const XMessageData *msgdata)
{
	g_return_val_if_fail(msgdata != NULL, NULL);

	if (msgdata->content)
		return msgdata->content;

	if (msgdata->file) {
		char *content;

		xfilter_debug_print("xfilter_message_data_get_content: getting file content: %s\n", msgdata->file);
		content = xfilter_utils_get_file_contents(msgdata->file);
		if (content)
			((XMessageData *)msgdata)->content = content;

		return content;
	}

	return NULL;
}

void xfilter_set_content_filter_func(XContentFilter *filter, XContentFilterFunc func)
{
	g_return_if_fail(XFILTER(filter)->type == XF_CONTENT);

	filter->content_filter_func = func;
}

void xfilter_set_test_filter_func(XTestFilter *filter, XTestFilterFunc func)
{
	g_return_if_fail(XFILTER(filter)->type == XF_TEST);

	filter->test_filter_func = func;
}

XFilterStatus xfilter_exec(XFilter *filter, const XMessageData *msgdata, XFilterResult *result)
{
	g_return_val_if_fail(filter != NULL, XF_ERROR);
	g_return_val_if_fail(msgdata != NULL, XF_ERROR);

	if (filter->type == XF_CONTENT) {
		if (!X_CONTENT_FILTER(filter)->content_filter_func)
			return XF_ERROR;
		return X_CONTENT_FILTER(filter)->content_filter_func(filter, msgdata, result);
	} else {
		if (!X_TEST_FILTER(filter)->test_filter_func)
			return XF_ERROR;
		return X_TEST_FILTER(filter)->test_filter_func(filter, msgdata, result);
	}
}

void xfilter_result_print(XFilterResult *result)
{
	printf("XFilterResult: status = %d, probability = %f\n", result->status, result->probability);
}

XFilterResult *xfilter_result_new(void)
{
	XFilterResult *res;

	res = g_new0(XFilterResult, 1);
	res->status = XF_NONE;
	res->probability = 0.5;
	return res;
}

void xfilter_result_set_status(XFilterResult *result, XFilterStatus status)
{
	result->status = status;
}

void xfilter_result_set_message_data(XFilterResult *result, XMessageData *msgdata)
{
	if (result->msgdata)
		xfilter_message_data_free(result->msgdata);
	result->msgdata = msgdata;
}

void xfilter_result_set_probability(XFilterResult *result, double prob)
{
	result->probability = prob;
}

XFilterStatus xfilter_result_get_status(XFilterResult *result)
{
	g_return_val_if_fail(result != NULL, XF_ERROR);

	return result->status;
}

XMessageData *xfilter_result_get_message_data(XFilterResult *result)
{
	g_return_val_if_fail(result != NULL, NULL);

	return result->msgdata;
}

double xfilter_result_get_probability(XFilterResult *result)
{
	g_return_val_if_fail(result != NULL, 0.0);

	return result->probability;
}

void xfilter_result_free(XFilterResult *result)
{
	if (!result)
		return;
	xfilter_message_data_free(result->msgdata);
	g_free(result);
}

void xfilter_set_debug_mode(int mode)
{
	xfilter_debug_mode = mode;
}

int xfilter_get_debug_mode(void)
{
	return xfilter_debug_mode;
}

void xfilter_debug_print(const char *format, ...)
{
	va_list args;
	char buf[1024];

	if (!xfilter_debug_mode)
		return;

	va_start(args, format);
	g_vsnprintf(buf, sizeof(buf), format, args);
	va_end(args);

	fputs(buf, stderr);
}