Home | History | Annotate | Line # | Download | only in lib
      1 /*
      2                             __  __            _
      3                          ___\ \/ /_ __   __ _| |_
      4                         / _ \\  /| '_ \ / _` | __|
      5                        |  __//  \| |_) | (_| | |_
      6                         \___/_/\_\ .__/ \__,_|\__|
      7                                  |_| XML parser
      8 
      9    Copyright (c) 1997-2000 Thai Open Source Software Center Ltd
     10    Copyright (c) 2000      Clark Cooper <coopercc (at) users.sourceforge.net>
     11    Copyright (c) 2002      Karl Waclawek <karl (at) waclawek.net>
     12    Copyright (c) 2002      Fred L. Drake, Jr. <fdrake (at) users.sourceforge.net>
     13    Copyright (c) 2017-2025 Sebastian Pipping <sebastian (at) pipping.org>
     14    Licensed under the MIT license:
     15 
     16    Permission is  hereby granted,  free of charge,  to any  person obtaining
     17    a  copy  of  this  software   and  associated  documentation  files  (the
     18    "Software"),  to  deal in  the  Software  without restriction,  including
     19    without  limitation the  rights  to use,  copy,  modify, merge,  publish,
     20    distribute, sublicense, and/or sell copies of the Software, and to permit
     21    persons  to whom  the Software  is  furnished to  do so,  subject to  the
     22    following conditions:
     23 
     24    The above copyright  notice and this permission notice  shall be included
     25    in all copies or substantial portions of the Software.
     26 
     27    THE  SOFTWARE  IS  PROVIDED  "AS  IS",  WITHOUT  WARRANTY  OF  ANY  KIND,
     28    EXPRESS  OR IMPLIED,  INCLUDING  BUT  NOT LIMITED  TO  THE WARRANTIES  OF
     29    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
     30    NO EVENT SHALL THE AUTHORS OR  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
     31    DAMAGES OR  OTHER LIABILITY, WHETHER  IN AN  ACTION OF CONTRACT,  TORT OR
     32    OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
     33    USE OR OTHER DEALINGS IN THE SOFTWARE.
     34 */
     35 
     36 #ifndef XmlRole_INCLUDED
     37 #  define XmlRole_INCLUDED 1
     38 
     39 #  include "xmltok.h"
     40 
     41 #  ifdef __cplusplus
     42 extern "C" {
     43 #  endif
     44 
     45 enum {
     46   XML_ROLE_ERROR = -1,
     47   XML_ROLE_NONE = 0,
     48   XML_ROLE_XML_DECL,
     49   XML_ROLE_INSTANCE_START,
     50   XML_ROLE_DOCTYPE_NONE,
     51   XML_ROLE_DOCTYPE_NAME,
     52   XML_ROLE_DOCTYPE_SYSTEM_ID,
     53   XML_ROLE_DOCTYPE_PUBLIC_ID,
     54   XML_ROLE_DOCTYPE_INTERNAL_SUBSET,
     55   XML_ROLE_DOCTYPE_CLOSE,
     56   XML_ROLE_GENERAL_ENTITY_NAME,
     57   XML_ROLE_PARAM_ENTITY_NAME,
     58   XML_ROLE_ENTITY_NONE,
     59   XML_ROLE_ENTITY_VALUE,
     60   XML_ROLE_ENTITY_SYSTEM_ID,
     61   XML_ROLE_ENTITY_PUBLIC_ID,
     62   XML_ROLE_ENTITY_COMPLETE,
     63   XML_ROLE_ENTITY_NOTATION_NAME,
     64   XML_ROLE_NOTATION_NONE,
     65   XML_ROLE_NOTATION_NAME,
     66   XML_ROLE_NOTATION_SYSTEM_ID,
     67   XML_ROLE_NOTATION_NO_SYSTEM_ID,
     68   XML_ROLE_NOTATION_PUBLIC_ID,
     69   XML_ROLE_ATTRIBUTE_NAME,
     70   XML_ROLE_ATTRIBUTE_TYPE_CDATA,
     71   XML_ROLE_ATTRIBUTE_TYPE_ID,
     72   XML_ROLE_ATTRIBUTE_TYPE_IDREF,
     73   XML_ROLE_ATTRIBUTE_TYPE_IDREFS,
     74   XML_ROLE_ATTRIBUTE_TYPE_ENTITY,
     75   XML_ROLE_ATTRIBUTE_TYPE_ENTITIES,
     76   XML_ROLE_ATTRIBUTE_TYPE_NMTOKEN,
     77   XML_ROLE_ATTRIBUTE_TYPE_NMTOKENS,
     78   XML_ROLE_ATTRIBUTE_ENUM_VALUE,
     79   XML_ROLE_ATTRIBUTE_NOTATION_VALUE,
     80   XML_ROLE_ATTLIST_NONE,
     81   XML_ROLE_ATTLIST_ELEMENT_NAME,
     82   XML_ROLE_IMPLIED_ATTRIBUTE_VALUE,
     83   XML_ROLE_REQUIRED_ATTRIBUTE_VALUE,
     84   XML_ROLE_DEFAULT_ATTRIBUTE_VALUE,
     85   XML_ROLE_FIXED_ATTRIBUTE_VALUE,
     86   XML_ROLE_ELEMENT_NONE,
     87   XML_ROLE_ELEMENT_NAME,
     88   XML_ROLE_CONTENT_ANY,
     89   XML_ROLE_CONTENT_EMPTY,
     90   XML_ROLE_CONTENT_PCDATA,
     91   XML_ROLE_GROUP_OPEN,
     92   XML_ROLE_GROUP_CLOSE,
     93   XML_ROLE_GROUP_CLOSE_REP,
     94   XML_ROLE_GROUP_CLOSE_OPT,
     95   XML_ROLE_GROUP_CLOSE_PLUS,
     96   XML_ROLE_GROUP_CHOICE,
     97   XML_ROLE_GROUP_SEQUENCE,
     98   XML_ROLE_CONTENT_ELEMENT,
     99   XML_ROLE_CONTENT_ELEMENT_REP,
    100   XML_ROLE_CONTENT_ELEMENT_OPT,
    101   XML_ROLE_CONTENT_ELEMENT_PLUS,
    102   XML_ROLE_PI,
    103   XML_ROLE_COMMENT,
    104 #  ifdef XML_DTD
    105   XML_ROLE_TEXT_DECL,
    106   XML_ROLE_IGNORE_SECT,
    107   XML_ROLE_INNER_PARAM_ENTITY_REF,
    108 #  endif /* XML_DTD */
    109   XML_ROLE_PARAM_ENTITY_REF
    110 };
    111 
    112 typedef struct prolog_state {
    113   int(PTRCALL *handler)(struct prolog_state *state, int tok, const char *ptr,
    114                         const char *end, const ENCODING *enc);
    115   unsigned level;
    116   int role_none;
    117 #  ifdef XML_DTD
    118   unsigned includeLevel;
    119   int documentEntity;
    120   int inEntityValue;
    121 #  endif /* XML_DTD */
    122 } PROLOG_STATE;
    123 
    124 void XmlPrologStateInit(PROLOG_STATE *state);
    125 #  ifdef XML_DTD
    126 void XmlPrologStateInitExternalEntity(PROLOG_STATE *state);
    127 #  endif /* XML_DTD */
    128 
    129 #  define XmlTokenRole(state, tok, ptr, end, enc)                              \
    130     (((state)->handler)(state, tok, ptr, end, enc))
    131 
    132 #  ifdef __cplusplus
    133 }
    134 #  endif
    135 
    136 #endif /* not XmlRole_INCLUDED */
    137