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
|
/*
Header for our common utilities for XML-based formats.
Copyright (C) 2004, 2005 Robert Lipe, robertlipe@usa.net
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111 USA
*/
typedef enum {
cb_start = 1,
cb_cdata,
cb_end,
} xg_cb_type;
typedef void (xg_callback) (const char *, const char **);
typedef struct xg_tag_mapping {
xg_callback *tag_cb;
xg_cb_type cb_type;
const char *tag_name;
} xg_tag_mapping;
void write_xml_entity(FILE *ofd, const char *indent,
const char *tag, const char *value);
void write_xml_entity_begin0(FILE *ofd, const char *indent,
const char *tag);
void write_xml_entity_begin1(FILE *ofd, const char *indent, const char *tag,
const char *attr1, const char *attrval1);
void write_xml_entity_begin2(FILE *ofd, const char *indent, const char *tag,
const char *attr1, const char *attrval1,
const char *attr2, const char *attrval2);
void write_xml_entity_end(FILE *ofd, const char *indent, const char *tag);
void write_optional_xml_entity(FILE *ofd, const char *indent,
const char *tag, const char *value);
void xml_write_time(FILE *ofd, const time_t timep, char *elname);
void xml_fill_in_time(char *time_string, const time_t timep,
int long_or_short);
void write_xml_header(FILE *ofd);
void xml_ignore_tags(const char **taglist);
void xml_init(const char *fname, xg_tag_mapping *tbl,const char *encoding);
void xml_read(void);
void xml_readstring(char *str);
void xml_deinit(void);
|