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
|
// -*- C++ -*-
//=============================================================================
/**
* @file Debug_Element_Builder.h
*
* $Id: Debug_Element_Builder.h 91257 2010-08-03 11:54:04Z johnnyw $
*
* @author Nanbor Wang <nanbor@cs.wustl.edu>
*/
//=============================================================================
#ifndef _ACEXML_DEBUG_ELEMENT_BUILDER_H_
#define _ACEXML_DEBUG_ELEMENT_BUILDER_H_
#include /**/ "ace/pre.h"
#include "ACEXML/parser/debug_validator/Debug_DTD_Manager_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ACEXML/common/Element_Def_Builder.h"
#include "ACEXML/parser/debug_validator/Element_Tree.h"
/**
* @class ACEXML_Debug_Element_Builder Debug_Element_Builder.h "parser/debug_validator/Debug_Element_Builder.h"
*
* This class prints out the element definition for debugging purpose.
*
* @todo This class is not namespace-aware.
*/
class ACEXML_DEBUG_DTD_MANAGER_Export ACEXML_Debug_Element_Builder
: public ACEXML_Element_Def_Builder
{
public:
ACEXML_Debug_Element_Builder ();
virtual ~ACEXML_Debug_Element_Builder ();
/**
* 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);
/**
* Define the content type of the element.
*
* @retval 0 if valid, -1 otherwise.
*/
virtual int setContentType (CONTENT_TYPE type);
/**
* Insert one more element into Mixed definition.
*/
virtual int insertMixedElement (const ACEXML_Char *namespaceURI,
const ACEXML_Char *localName,
const ACEXML_Char *qName);
/**
* Start a new group of children.
*/
virtual int startChildGroup ();
/**
* End a new group of children.
*
* @retval 0 on success.
*/
virtual int endChildGroup (CARDINALITY card);
/**
* 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 ();
/**
* 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 ();
/**
* 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)
;
/**
* Dump the content of the attribute definition.
*/
virtual void dump (void);
private:
CONTENT_TYPE type_;
ACEXML_String element_;
ACEXML_Element_Tree_List_Node *root_;
ACEXML_Element_Tree_List_Stack active_list_;
};
#include /**/ "ace/post.h"
#endif /* _ACEXML_DEBUG_ELEMENT_BUILDER_H_ */
|