Xerces-C++ 3.2.5
Public Types | Static Public Attributes | List of all members
XMLElementDecl Class Referenceabstract

This class defines the core information of an element declaration. More...

#include <xercesc/framework/XMLElementDecl.hpp>

Inheritance diagram for XMLElementDecl:
XMemory

Public Types

enum  CreateReasons {
  NoReason , Declared , AttList , InContentModel ,
  AsRootElem , JustFaultIn
}
 
enum  CharDataOpts { NoCharData , SpacesOk , AllCharData }
 

Public Member Functions

Destructor
virtual ~XMLElementDecl ()
 
Virual ElementDecl interface
virtual XMLAttDefListgetAttDefList () const =0
 Get a list of attributes defined for this element.
 
virtual CharDataOpts getCharDataOpts () const =0
 The character data options for this element type.
 
virtual bool hasAttDefs () const =0
 Indicate whether this element type defined any attributes.
 
virtual const ContentSpecNode * getContentSpec () const =0
 Get a pointer to the content spec node.
 
virtual ContentSpecNode * getContentSpec ()=0
 Get a pointer to the content spec node.
 
virtual void setContentSpec (ContentSpecNode *toAdopt)=0
 Set the content spec node object for this element type.
 
virtual XMLContentModelgetContentModel ()=0
 Get a pointer to the abstract content model.
 
virtual void setContentModel (XMLContentModel *const newModelToAdopt)=0
 Set the content model object for this element type.
 
virtual const XMLChgetFormattedContentModel () const =0
 Geta formatted string of the content model.
 
Getter methods
const XMLChgetBaseName () const
 Get the base name of this element type.
 
XMLChgetBaseName ()
 
unsigned int getURI () const
 Get the URI id of this element type.
 
const QNamegetElementName () const
 Get the QName of this element type.
 
QNamegetElementName ()
 
const XMLChgetFullName () const
 Get the full name of this element type.
 
CreateReasons getCreateReason () const
 Get the create reason for this element type.
 
XMLSize_t getId () const
 Get the element decl pool id for this element type.
 
bool isDeclared () const
 Indicate whether this element type has been declared yet.
 
bool isExternal () const
 Indicate whether this element type has been declared externally.
 
MemoryManagergetMemoryManager () const
 Get the memory manager.
 
Setter methods
void setElementName (const XMLCh *const prefix, const XMLCh *const localPart, const int uriId)
 Set the element name object for this element type.
 
void setElementName (const XMLCh *const rawName, const int uriId)
 Set the element name object for this element type.
 
void setElementName (const QName *const elementName)
 Set the element name object for this element type.
 
void setCreateReason (const CreateReasons newReason)
 Update the create reason for this element type.
 
void setId (const XMLSize_t newId)
 Set the element decl pool id for this element type.
 
void setExternalElemDeclaration (const bool aValue)
 Set the element decl to indicate external declaration.
 
- Public Member Functions inherited from XMemory
void * operator new (size_t size)
 This method overrides operator new.
 
void * operator new (size_t size, MemoryManager *memMgr)
 This method defines a custom operator new, that will use the provided memory manager to perform the allocation.
 
void * operator new (size_t size, void *ptr)
 This method overrides placement operator new.
 
void operator delete (void *p)
 This method overrides operator delete.
 
void operator delete (void *p, MemoryManager *memMgr)
 This method provides a matching delete for the custom operator new.
 
void operator delete (void *p, void *ptr)
 This method provides a matching delete for the placement new.
 

Static Public Attributes

static const unsigned int fgInvalidElemId
 
static const unsigned int fgPCDataElemId
 
static const XMLCh fgPCDataElemName []
 

Miscellaneous methods

enum  objectType { Schema , DTD , UnKnown }
 
virtual XMLElementDecl::objectType getObjectType () const =0
 
static void storeElementDecl (XSerializeEngine &serEng, XMLElementDecl *const element)
 
static XMLElementDeclloadElementDecl (XSerializeEngine &serEng)
 
 XMLElementDecl (MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)
 

Additional Inherited Members

- Protected Member Functions inherited from XMemory
 XMemory ()
 Protected default constructor.
 

Detailed Description

This class defines the core information of an element declaration.

Each validator (DTD, Schema, etc...) will have its own information that it associations with the declaration of an element, but they must all share at least this core information, i.e. they must all derive from this class. The set of info enforced at this level is driven by the needs of XML 1.0 spec validation and well formedness checks.

This class defines some special element id values for invalid elements and PCDATA elements, as well as a string for the special PCDATA element name. All validators must honor these special values in order to allow content models to work generically (i.e. to let code know when its dealing with invalid or PCDATA element ids without having to know what type of validator its messing with.)

Member Enumeration Documentation

◆ CharDataOpts

Enumerator
NoCharData 
SpacesOk 
AllCharData 

◆ CreateReasons

Enumerator
NoReason 
Declared 
AttList 
InContentModel 
AsRootElem 
JustFaultIn 

◆ objectType

Enumerator
Schema 
DTD 
UnKnown 

Constructor & Destructor Documentation

◆ ~XMLElementDecl()

virtual XMLElementDecl::~XMLElementDecl ( )
virtual

◆ XMLElementDecl()

XMLElementDecl::XMLElementDecl ( MemoryManager *const  manager = XMLPlatformUtils::fgMemoryManager)
protected

Member Function Documentation

◆ getAttDefList()

virtual XMLAttDefList & XMLElementDecl::getAttDefList ( ) const
pure virtual

Get a list of attributes defined for this element.

The derived class should return a reference to some member object which implements the XMLAttDefList interface. This object gives the scanner the ability to look through the attributes defined for this element.

It is done this way for efficiency, though of course this is not thread safe. The scanner guarantees that it won't ever call this method in any nested way, but the outside world must be careful about when it calls this method, and optimally never would.

◆ getBaseName() [1/2]

XMLCh * XMLElementDecl::getBaseName ( )

References QName::getLocalPart().

◆ getBaseName() [2/2]

const XMLCh * XMLElementDecl::getBaseName ( ) const

Get the base name of this element type.

Return the base name part of the element's name. This is the same regardless of whether namespaces are enabled or not.

Returns
A const pointer to the base name of the element decl.

References QName::getLocalPart().

◆ getCharDataOpts()

virtual CharDataOpts XMLElementDecl::getCharDataOpts ( ) const
pure virtual

The character data options for this element type.

The derived class should return an appropriate character data opts value which correctly represents its tolerance towards whitespace or character data inside of its instances. This allows the scanner to do all of the validation of character data.

◆ getContentModel()

virtual XMLContentModel * XMLElementDecl::getContentModel ( )
pure virtual

Get a pointer to the abstract content model.

This method will return a const pointer to the content model object of this element. This class is a simple abstraction that allows an element to define and use multiple, specialized content model types internally but still allow the outside world to do simple stuff with them.

Returns
A pointer to the element's content model, via the basic abstract content model type.

◆ getContentSpec() [1/2]

virtual const ContentSpecNode * XMLElementDecl::getContentSpec ( ) const
pure virtual

Get a pointer to the content spec node.

This method will return a const pointer to the content spec node object of this element.

Returns
A const pointer to the element's content spec node

◆ getContentSpec() [2/2]

virtual ContentSpecNode * XMLElementDecl::getContentSpec ( )
pure virtual

Get a pointer to the content spec node.

This method is identical to the previous one, except that it is non const.

◆ getCreateReason()

XMLElementDecl::CreateReasons XMLElementDecl::getCreateReason ( ) const

Get the create reason for this element type.

This method returns an enumeration which indicates why this element declaration exists. Elements can be used before they are actually declared, so they will often be faulted into the pool and marked as to why they are there.

Returns
An enumerated value that indicates the reason why this element was added to the element decl pool.

◆ getElementName() [1/2]

QName * XMLElementDecl::getElementName ( )

◆ getElementName() [2/2]

const QName * XMLElementDecl::getElementName ( ) const

Get the QName of this element type.

Return the QName part of the element's name. This is the same regardless of whether namespaces are enabled or not.

Returns
A const pointer to the QName of the element decl.

◆ getFormattedContentModel()

virtual const XMLCh * XMLElementDecl::getFormattedContentModel ( ) const
pure virtual

Geta formatted string of the content model.

This method is a convenience method which will create a formatted representation of the content model of the element. It will not always exactly recreate the original model, since some normalization or or reformatting may occur. But, it will be a technically accurate representation of the original content model.

Returns
A pointer to an internal buffer which contains the formatted content model. The caller does not own this buffer and should copy it if it needs to be kept around.

◆ getFullName()

const XMLCh * XMLElementDecl::getFullName ( ) const

Get the full name of this element type.

Return the full name of the element. If namespaces are not enabled, then this is the qName. Else it is the {uri}baseName form. For those validators that always require namespace processing, it will always be in the latter form because namespace processing will always be on.

References QName::getRawName().

◆ getId()

XMLSize_t XMLElementDecl::getId ( ) const

Get the element decl pool id for this element type.

This method will return the element decl pool id of this element declaration. This uniquely identifies this element type within the parse event that it is declared within. This value is assigned by the grammar whose decl pool this object belongs to.

Returns
The element decl id of this element declaration.

◆ getMemoryManager()

MemoryManager * XMLElementDecl::getMemoryManager ( ) const

Get the memory manager.

This method returns the configurable memory manager used by the element declaration for dynamic allocation/deallocation.

Returns
the memory manager

◆ getObjectType()

virtual XMLElementDecl::objectType XMLElementDecl::getObjectType ( ) const
pure virtual

◆ getURI()

unsigned int XMLElementDecl::getURI ( ) const

Get the URI id of this element type.

Return the URI Id of this element.

Returns
The URI Id of the element decl, or the emptyNamespaceId if not applicable.

References QName::getURI().

◆ hasAttDefs()

virtual bool XMLElementDecl::hasAttDefs ( ) const
pure virtual

Indicate whether this element type defined any attributes.

The derived class should return a boolean that indicates whether this element has any attributes defined for it or not. This is an optimization that allows the scanner to skip some work if no attributes exist.

◆ isDeclared()

bool XMLElementDecl::isDeclared ( ) const

Indicate whether this element type has been declared yet.

This method returns a boolean that indicates whether this element has been declared yet. There are a number of reasons why an element declaration can be faulted in, but eventually it must be declared or its an error. See the CreateReasons enumeration.

Returns
true if this element has been declared, else false.

References Declared.

◆ isExternal()

bool XMLElementDecl::isExternal ( ) const

Indicate whether this element type has been declared externally.

This method returns a boolean that indicates whether this element has been declared externally.

Returns
true if this element has been declared externally, else false.

◆ loadElementDecl()

static XMLElementDecl * XMLElementDecl::loadElementDecl ( XSerializeEngine &  serEng)
static

◆ setContentModel()

virtual void XMLElementDecl::setContentModel ( XMLContentModel *const  newModelToAdopt)
pure virtual

Set the content model object for this element type.

This method will adopt the based content model object. This is called by the actual validator which is parsing its DTD or Schema or whatever a creating an element decl. It will build what it feels is the correct content model type object and store it on the element decl object via this method.

Parameters
newModelToAdoptThis method will adopt the passed content model object. Any previous object is destroyed.

◆ setContentSpec()

virtual void XMLElementDecl::setContentSpec ( ContentSpecNode *  toAdopt)
pure virtual

Set the content spec node object for this element type.

This method will adopt the based content spec node object. This is called by the actual validator which is parsing its DTD or Schema or whatever and store it on the element decl object via this method.

Parameters
toAdoptThis method will adopt the passed content node spec object. Any previous object is destroyed.

◆ setCreateReason()

void XMLElementDecl::setCreateReason ( const CreateReasons  newReason)

Update the create reason for this element type.

This method will update the 'create reason' field for this element decl object. As the validator parses its DTD, Schema, etc... it will encounter various references to an element declaration, which will cause the element declaration to either be declared or to be faulted into the pool in preparation for some future declaration. As it does so,it will update this field to indicate the current status of the decl object.

◆ setElementName() [1/3]

void XMLElementDecl::setElementName ( const QName *const  elementName)

Set the element name object for this element type.

This method will adopt the based content spec node object. This is called by the actual validator which is parsing its DTD or Schema or whatever and store it on the element decl object via this method.

Parameters
elementNameQName of the element

◆ setElementName() [2/3]

void XMLElementDecl::setElementName ( const XMLCh *const  prefix,
const XMLCh *const  localPart,
const int  uriId 
)

Set the element name object for this element type.

This method will adopt the based content spec node object. This is called by the actual validator which is parsing its DTD or Schema or whatever and store it on the element decl object via this method.

Parameters
prefixPrefix of the element
localPartBase Name of the element
uriIdThe uriId of the element

◆ setElementName() [3/3]

void XMLElementDecl::setElementName ( const XMLCh *const  rawName,
const int  uriId 
)

Set the element name object for this element type.

This method will adopt the based content spec node object. This is called by the actual validator which is parsing its DTD or Schema or whatever and store it on the element decl object via this method.

Parameters
rawNameFull Name of the element
uriIdThe uriId of the element

◆ setExternalElemDeclaration()

void XMLElementDecl::setExternalElemDeclaration ( const bool  aValue)

Set the element decl to indicate external declaration.

◆ setId()

void XMLElementDecl::setId ( const XMLSize_t  newId)

Set the element decl pool id for this element type.

This method will set the pool id of this element decl. This is called by the grammar which created this object, and will provide this decl object with a unique id within the parse event that created it.

◆ storeElementDecl()

static void XMLElementDecl::storeElementDecl ( XSerializeEngine &  serEng,
XMLElementDecl *const  element 
)
static

Member Data Documentation

◆ fgInvalidElemId

const unsigned int XMLElementDecl::fgInvalidElemId
static

◆ fgPCDataElemId

const unsigned int XMLElementDecl::fgPCDataElemId
static

◆ fgPCDataElemName

const XMLCh XMLElementDecl::fgPCDataElemName[]
static

The documentation for this class was generated from the following file: