OSDN Git Service

fix copyright year.
[bbk/bchan.git] / src / parser.h
1 /*
2  * parser.h
3  *
4  * Copyright (c) 2009-2010 project bchan
5  *
6  * This software is provided 'as-is', without any express or implied
7  * warranty. In no event will the authors be held liable for any damages
8  * arising from the use of this software.
9  *
10  * Permission is granted to anyone to use this software for any purpose,
11  * including commercial applications, and to alter it and redistribute it
12  * freely, subject to the following restrictions:
13  *
14  * 1. The origin of this software must not be misrepresented; you must not
15  *    claim that you wrote the original software. If you use this software
16  *    in a product, an acknowledgment in the product documentation would be
17  *    appreciated but is not required.
18  *
19  * 2. Altered source versions must be plainly marked as such, and must not be
20  *    misrepresented as being the original software.
21  *
22  * 3. This notice may not be removed or altered from any source
23  *    distribution.
24  *
25  */
26
27 #include    <basic.h>
28 #include        <btron/tf.h>
29
30 #include    "cache.h"
31
32 #ifndef __PARSER_H__
33 #define __PARSER_H__
34
35 typedef struct datparser_t_ datparser_t;
36 typedef struct datparser_res_t_ datparser_res_t;
37 struct datparser_res_t_ {
38         TC *name;
39         W name_len;
40         TC *mail;
41         W mail_len;
42         TC *date;
43         W date_len;
44         TC *body;
45         W body_len;
46         TC *title;
47         W title_len;
48         struct {
49                 TC *date;
50                 W date_len;
51                 TC *id;
52                 W id_len;
53                 TC *beid;
54                 W beid_len;
55         } dateinfo;
56 };
57
58 IMPORT datparser_t* datparser_new(datcache_t *parser);
59 IMPORT VOID datparser_delete(datparser_t *parser);
60 IMPORT W datparser_getnextres(datparser_t *parser, datparser_res_t **res);
61 IMPORT VOID datparser_clear(datparser_t *parser);
62
63 IMPORT datparser_res_t* datparser_res_new();
64 IMPORT VOID datparser_res_delete(datparser_res_t *res);
65
66 #endif