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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
// -*- C++ -*-
//=============================================================================
/**
* @file Element_Def_Builder.h
*
* @author Nanbor Wang <nanbor@cs.wustl.edu>
*/
//=============================================================================
#ifndef _ACEXML_ELEMENT_DEF_BUILDER_H_
#define _ACEXML_ELEMENT_DEF_BUILDER_H_
#include /**/ "ace/pre.h"
#include "ACEXML/common/ACEXML_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ACEXML/common/XML_Types.h"
#include "ACEXML/common/SAXExceptions.h"
#include <memory>
/**
* @class ACEXML_Element_Def_Builder
*
* @brief An abstract virtual class that defines the interface to define an
* element definition.
*
* This class defines how to define an element definition after parsing a
* DTD.
*/
class ACEXML_Export ACEXML_Element_Def_Builder
{
public:
typedef std::unique_ptr<ACEXML_Element_Def_Builder> VAR;
typedef enum {
EMPTY,
ANY,
MIXED,
CHILDREN,
UNDEFINED
} CONTENT_TYPE;
typedef enum {
ONE,
ZERO_OR_MORE,
ONE_OR_MORE,
ONE_OR_ZERO
} CARDINALITY;
virtual ~ACEXML_Element_Def_Builder () = 0;
/**
* Define the name of the element.
*
* @retval 0 if valid, -1 otherwise.
*/
virtual int setElementName (const ACEXML_Char *namespaceURI,
const ACEXML_Char *localName,
const ACEXML_Char *qName) = 0;
/**
* Define the content type of the element.
*
* @retval 0 if valid, -1 otherwise.
*/
virtual int setContentType (CONTENT_TYPE type) = 0;
/**
* Insert one more element into Mixed definition.
*/
virtual int insertMixedElement (const ACEXML_Char *namespaceURI,
const ACEXML_Char *localName,
const ACEXML_Char *qName) = 0;
/**
* Start a new group of children.
*/
virtual int startChildGroup () = 0;
/**
* End a new group of children.
*
* @retval 0 on success.
*/
virtual int endChildGroup (CARDINALITY card) = 0;
/**
* Set the type of current child group to Choice.
*
* @retval 0 on success, -1 if the type of the child group has
* already been set and this action conflicts with the previous
* setting.
*/
virtual int setChoice () = 0;
/**
* Set the type of current child group to Sequence.
*
* @retval 0 on success, -1 if the type of the child group has
* already been set and this action conflicts with the previous
* setting.
*/
virtual int setSequence () = 0;
/**
* Insert an new element into the current child group.
*
* @retval 0 on success, -1 otherwise.
*/
virtual int insertElement (const ACEXML_Char *namespaceURI,
const ACEXML_Char *localName,
const ACEXML_Char *qName) = 0;
/**
* Dump the content of the attribute definition.
*/
virtual void dump () = 0;
};
#include /**/ "ace/post.h"
#endif /* _ACEXML_ELEMENT_DEF_BUILDER_H_ */
|