Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / camel-url-scanner.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  *  Authors: Jeffrey Stedfast <fejj@ximian.com>
4  *
5  *  Copyright 2002 Ximian, Inc. (www.ximian.com)
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU Lesser General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  */
22
23
24 #ifndef __CAMEL_URL_SCANNER_H__
25 #define __CAMEL_URL_SCANNER_H__
26
27 #include <glib.h>
28 #include <sys/types.h>
29
30 G_BEGIN_DECLS
31
32 typedef struct {
33         const char *pattern;
34         const char *prefix;
35         off_t um_so;
36         off_t um_eo;
37 } urlmatch_t;
38
39 typedef gboolean (*CamelUrlScanFunc) (const char *in, const char *pos, const char *inend, urlmatch_t *match);
40
41 /* some default CamelUrlScanFunc's */
42 gboolean camel_url_file_start (const char *in, const char *pos, const char *inend, urlmatch_t *match);
43 gboolean camel_url_file_end (const char *in, const char *pos, const char *inend, urlmatch_t *match);
44 gboolean camel_url_web_start (const char *in, const char *pos, const char *inend, urlmatch_t *match);
45 gboolean camel_url_web_end (const char *in, const char *pos, const char *inend, urlmatch_t *match);
46 gboolean camel_url_addrspec_start (const char *in, const char *pos, const char *inend, urlmatch_t *match);
47 gboolean camel_url_addrspec_end (const char *in, const char *pos, const char *inend, urlmatch_t *match);
48
49 typedef struct {
50         char *pattern;
51         char *prefix;
52         CamelUrlScanFunc start;
53         CamelUrlScanFunc end;
54 } urlpattern_t;
55
56 typedef struct _CamelUrlScanner CamelUrlScanner;
57
58 CamelUrlScanner *camel_url_scanner_new (void);
59 void camel_url_scanner_free (CamelUrlScanner *scanner);
60
61 void camel_url_scanner_add (CamelUrlScanner *scanner, urlpattern_t *pattern);
62
63 gboolean camel_url_scanner_scan (CamelUrlScanner *scanner, const char *in, size_t inlen, urlmatch_t *match);
64
65 G_END_DECLS
66
67 #endif /* __CAMEL_URL_SCANNER_H__ */