Daniel Veillard | be70ff7 | 1999-07-05 16:50:46 +0000 | [diff] [blame] | 1 | /* |
| 2 | * HTMLparser.h : inf=terface for an HTML 4.0 non-verifying parser |
| 3 | * |
| 4 | * See Copyright for the status of this software. |
| 5 | * |
| 6 | * Daniel.Veillard@w3.org |
| 7 | */ |
| 8 | |
| 9 | #ifndef __HTML_PARSER_H__ |
| 10 | #define __HTML_PARSER_H__ |
Daniel Veillard | 361d845 | 2000-04-03 19:48:13 +0000 | [diff] [blame] | 11 | #include <libxml/parser.h> |
Daniel Veillard | be70ff7 | 1999-07-05 16:50:46 +0000 | [diff] [blame] | 12 | |
Daniel Veillard | f600e25 | 1999-12-18 15:32:46 +0000 | [diff] [blame] | 13 | #ifdef __cplusplus |
Daniel Veillard | 5cb5ab8 | 1999-12-21 15:35:29 +0000 | [diff] [blame] | 14 | extern "C" { |
Daniel Veillard | f600e25 | 1999-12-18 15:32:46 +0000 | [diff] [blame] | 15 | #endif |
| 16 | |
Daniel Veillard | 5233ffc | 1999-07-06 22:25:25 +0000 | [diff] [blame] | 17 | /* |
| 18 | * Most of the back-end structures from XML and HTML are shared |
| 19 | */ |
Daniel Veillard | be70ff7 | 1999-07-05 16:50:46 +0000 | [diff] [blame] | 20 | typedef xmlParserCtxt htmlParserCtxt; |
| 21 | typedef xmlParserCtxtPtr htmlParserCtxtPtr; |
| 22 | typedef xmlParserNodeInfo htmlParserNodeInfo; |
| 23 | typedef xmlSAXHandler htmlSAXHandler; |
| 24 | typedef xmlSAXHandlerPtr htmlSAXHandlerPtr; |
| 25 | typedef xmlParserInput htmlParserInput; |
| 26 | typedef xmlParserInputPtr htmlParserInputPtr; |
| 27 | typedef xmlDocPtr htmlDocPtr; |
| 28 | typedef xmlNodePtr htmlNodePtr; |
| 29 | |
Daniel Veillard | 5233ffc | 1999-07-06 22:25:25 +0000 | [diff] [blame] | 30 | /* |
| 31 | * Internal description of an HTML element |
| 32 | */ |
Daniel Veillard | 71b656e | 2000-01-05 14:46:17 +0000 | [diff] [blame] | 33 | typedef struct _htmlElemDesc htmlElemDesc; |
| 34 | typedef htmlElemDesc *htmlElemDescPtr; |
| 35 | struct _htmlElemDesc { |
Daniel Veillard | b96e643 | 1999-08-29 21:02:19 +0000 | [diff] [blame] | 36 | const char *name; /* The tag name */ |
Daniel Veillard | 5233ffc | 1999-07-06 22:25:25 +0000 | [diff] [blame] | 37 | int startTag; /* Whether the start tag can be implied */ |
| 38 | int endTag; /* Whether the end tag can be implied */ |
| 39 | int empty; /* Is this an empty element ? */ |
| 40 | int depr; /* Is this a deprecated element ? */ |
| 41 | int dtd; /* 1: only in Loose DTD, 2: only Frameset one */ |
| 42 | const char *desc; /* the description */ |
Daniel Veillard | 71b656e | 2000-01-05 14:46:17 +0000 | [diff] [blame] | 43 | }; |
Daniel Veillard | 5233ffc | 1999-07-06 22:25:25 +0000 | [diff] [blame] | 44 | |
| 45 | /* |
| 46 | * Internal description of an HTML entity |
| 47 | */ |
Daniel Veillard | 71b656e | 2000-01-05 14:46:17 +0000 | [diff] [blame] | 48 | typedef struct _htmlEntityDesc htmlEntityDesc; |
| 49 | typedef htmlEntityDesc *htmlEntityDescPtr; |
| 50 | struct _htmlEntityDesc { |
Daniel Veillard | 5233ffc | 1999-07-06 22:25:25 +0000 | [diff] [blame] | 51 | int value; /* the UNICODE value for the character */ |
Daniel Veillard | b96e643 | 1999-08-29 21:02:19 +0000 | [diff] [blame] | 52 | const char *name; /* The entity name */ |
Daniel Veillard | 5233ffc | 1999-07-06 22:25:25 +0000 | [diff] [blame] | 53 | const char *desc; /* the description */ |
Daniel Veillard | 71b656e | 2000-01-05 14:46:17 +0000 | [diff] [blame] | 54 | }; |
Daniel Veillard | 5233ffc | 1999-07-06 22:25:25 +0000 | [diff] [blame] | 55 | |
| 56 | /* |
| 57 | * There is only few public functions. |
| 58 | */ |
Daniel Veillard | 5cb5ab8 | 1999-12-21 15:35:29 +0000 | [diff] [blame] | 59 | htmlElemDescPtr htmlTagLookup (const xmlChar *tag); |
| 60 | htmlEntityDescPtr htmlEntityLookup(const xmlChar *name); |
Daniel Veillard | 82150d8 | 1999-07-07 07:32:15 +0000 | [diff] [blame] | 61 | |
Daniel Veillard | 5cb5ab8 | 1999-12-21 15:35:29 +0000 | [diff] [blame] | 62 | int htmlIsAutoClosed(htmlDocPtr doc, |
| 63 | htmlNodePtr elem); |
| 64 | int htmlAutoCloseTag(htmlDocPtr doc, |
| 65 | const xmlChar *name, |
| 66 | htmlNodePtr elem); |
| 67 | htmlEntityDescPtr htmlParseEntityRef(htmlParserCtxtPtr ctxt, |
| 68 | xmlChar **str); |
| 69 | int htmlParseCharRef(htmlParserCtxtPtr ctxt); |
| 70 | void htmlParseElement(htmlParserCtxtPtr ctxt); |
Daniel Veillard | be70ff7 | 1999-07-05 16:50:46 +0000 | [diff] [blame] | 71 | |
Daniel Veillard | 5cb5ab8 | 1999-12-21 15:35:29 +0000 | [diff] [blame] | 72 | htmlDocPtr htmlSAXParseDoc (xmlChar *cur, |
| 73 | const char *encoding, |
| 74 | htmlSAXHandlerPtr sax, |
| 75 | void *userData); |
| 76 | htmlDocPtr htmlParseDoc (xmlChar *cur, |
| 77 | const char *encoding); |
| 78 | htmlDocPtr htmlSAXParseFile(const char *filename, |
| 79 | const char *encoding, |
| 80 | htmlSAXHandlerPtr sax, |
| 81 | void *userData); |
| 82 | htmlDocPtr htmlParseFile (const char *filename, |
| 83 | const char *encoding); |
Daniel Veillard | 32bc74e | 2000-07-14 14:49:25 +0000 | [diff] [blame^] | 84 | int UTF8ToHtml (unsigned char* out, |
| 85 | int *outlen, |
| 86 | const unsigned char* in, |
| 87 | int *inlen); |
Daniel Veillard | be70ff7 | 1999-07-05 16:50:46 +0000 | [diff] [blame] | 88 | |
Daniel Veillard | 5e5c623 | 1999-12-29 12:49:06 +0000 | [diff] [blame] | 89 | /** |
| 90 | * Interfaces for the Push mode |
| 91 | */ |
| 92 | void htmlFreeParserCtxt (htmlParserCtxtPtr ctxt); |
| 93 | htmlParserCtxtPtr htmlCreatePushParserCtxt(htmlSAXHandlerPtr sax, |
| 94 | void *user_data, |
| 95 | const char *chunk, |
| 96 | int size, |
| 97 | const char *filename, |
| 98 | xmlCharEncoding enc); |
| 99 | int htmlParseChunk (htmlParserCtxtPtr ctxt, |
| 100 | const char *chunk, |
| 101 | int size, |
| 102 | int terminate); |
Daniel Veillard | f600e25 | 1999-12-18 15:32:46 +0000 | [diff] [blame] | 103 | #ifdef __cplusplus |
| 104 | } |
| 105 | #endif |
| 106 | |
Daniel Veillard | be70ff7 | 1999-07-05 16:50:46 +0000 | [diff] [blame] | 107 | #endif /* __HTML_PARSER_H__ */ |