Skip to content
Snippets Groups Projects
Commit d6204614 authored by Neil Graham's avatar Neil Graham
Browse files

update XSModel and XSObject interface so that IDs can be used to query...

update XSModel and XSObject interface so that IDs can be used to query components in XSModels, and so that those IDs can be recovered from components


git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@175274 13f79535-47bb-0310-9956-ffa450edef68
parent 77389921
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $Log$
* Revision 1.2 2003/10/10 18:37:51 neilg
* update XSModel and XSObject interface so that IDs can be used to query components in XSModels, and so that those IDs can be recovered from components
*
* Revision 1.1 2003/09/16 14:33:36 neilg * Revision 1.1 2003/09/16 14:33:36 neilg
* PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them
* *
...@@ -65,7 +68,30 @@ ...@@ -65,7 +68,30 @@
XERCES_CPP_NAMESPACE_BEGIN XERCES_CPP_NAMESPACE_BEGIN
XSModel::XSModel( MemoryManager* const manager ): /**
* The constructor to be used wen a grammar pool contains all needed info
*
* @param grammarPool the grammar pool containing the underlying data structures
* @param manager The configurable memory manager
*/
XSModel::XSModel( XMLGrammarPool *grammarPool
, MemoryManager* const manager ):
fMemoryManager(manager)
{
}
/**
* The constructor to be used when the XSModel must represent all
* components in the union of an existing XSModel and a newly-created
* Grammar
*
* @param baseModel the XSModel upon which this one is based
* @param grammar the newly-created grammar whose components are to be merged
* @param manager The configurable memory manager
*/
XSModel::XSModel( XSModel *baseModel
, Grammar *grammar
, MemoryManager* const manager ):
fMemoryManager(manager) fMemoryManager(manager)
{ {
} }
...@@ -227,6 +253,21 @@ XSNotationDeclaration *XSModel::getNotationDeclaration(const XMLCh *name ...@@ -227,6 +253,21 @@ XSNotationDeclaration *XSModel::getNotationDeclaration(const XMLCh *name
return 0; return 0;
} }
/**
* Optional. Return a component given a component type and a unique Id.
* May not be supported for all component types.
* @param compId unique Id of the component within its type
* @param compType type of the component
* @return the component of the given type with the given Id, or 0
* if no such component exists or this is unsupported for
* this type of component.
*/
XSObject *XSModel::getXSObjectById(unsigned int compId
, XSConstants::COMPONENT_TYPE compType)
{
return 0;
}
XERCES_CPP_NAMESPACE_END XERCES_CPP_NAMESPACE_END
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $Log$
* Revision 1.2 2003/10/10 18:37:51 neilg
* update XSModel and XSObject interface so that IDs can be used to query components in XSModels, and so that those IDs can be recovered from components
*
* Revision 1.1 2003/09/16 14:33:36 neilg * Revision 1.1 2003/09/16 14:33:36 neilg
* PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them
* *
...@@ -83,6 +86,8 @@ XERCES_CPP_NAMESPACE_BEGIN ...@@ -83,6 +86,8 @@ XERCES_CPP_NAMESPACE_BEGIN
*/ */
// forward declarations // forward declarations
class Grammar;
class XMLGrammarPool;
class XSAnnotation; class XSAnnotation;
class XSAttributeDeclaration; class XSAttributeDeclaration;
class XSAttributeGroupDefinition; class XSAttributeGroupDefinition;
...@@ -102,12 +107,26 @@ public: ...@@ -102,12 +107,26 @@ public:
//@{ //@{
/** /**
* The default constructor * The constructor to be used wen a grammar pool contains all needed info
* *
* @param grammarPool the grammar pool containing the underlying data structures
* @param manager The configurable memory manager * @param manager The configurable memory manager
*/ */
XSModel( XSModel( XMLGrammarPool *grammarPool
MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager); , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
/**
* The constructor to be used when the XSModel must represent all
* components in the union of an existing XSModel and a newly-created
* Grammar
*
* @param baseModel the XSModel upon which this one is based
* @param grammar the newly-created grammar whose components are to be merged
* @param manager The configurable memory manager
*/
XSModel( XSModel *baseModel
, Grammar *grammar
, MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
//@}; //@};
...@@ -232,6 +251,18 @@ public: ...@@ -232,6 +251,18 @@ public:
XSNotationDeclaration *getNotationDeclaration(const XMLCh *name XSNotationDeclaration *getNotationDeclaration(const XMLCh *name
, const XMLCh *compNamespace); , const XMLCh *compNamespace);
/**
* Optional. Return a component given a component type and a unique Id.
* May not be supported for all component types.
* @param compId unique Id of the component within its type
* @param compType type of the component
* @return the component of the given type with the given Id, or 0
* if no such component exists or this is unsupported for
* this type of component.
*/
XSObject *getXSObjectById(unsigned int compId
, XSConstants::COMPONENT_TYPE compType);
// @} // @}
//---------------------------------- //----------------------------------
......
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $Log$
* Revision 1.3 2003/10/10 18:37:51 neilg
* update XSModel and XSObject interface so that IDs can be used to query components in XSModels, and so that those IDs can be recovered from components
*
* Revision 1.2 2003/09/17 17:45:37 neilg * Revision 1.2 2003/09/17 17:45:37 neilg
* remove spurious inlines; hopefully this will make Solaris/AIX compilers happy. * remove spurious inlines; hopefully this will make Solaris/AIX compilers happy.
* *
...@@ -95,6 +98,17 @@ XSNamespaceItem *XSObject::getNamespaceItem() ...@@ -95,6 +98,17 @@ XSNamespaceItem *XSObject::getNamespaceItem()
return 0; return 0;
} }
/**
* Optional. return a unique identifier for a component within this XSModel, to
* optimize querying. May not be defined for all component types.
* @return id unique for this type of component within this XSModel
* or 0 to indicate that this is unsupported for this type of component.
*/
inline unsigned int XSObject::getId() const
{
return 0;
}
XERCES_CPP_NAMESPACE_END XERCES_CPP_NAMESPACE_END
...@@ -56,6 +56,9 @@ ...@@ -56,6 +56,9 @@
/* /*
* $Log$ * $Log$
* Revision 1.2 2003/10/10 18:37:51 neilg
* update XSModel and XSObject interface so that IDs can be used to query components in XSModels, and so that those IDs can be recovered from components
*
* Revision 1.1 2003/09/16 14:33:36 neilg * Revision 1.1 2003/09/16 14:33:36 neilg
* PSVI/schema component model classes, with Makefile/configuration changes necessary to build them * PSVI/schema component model classes, with Makefile/configuration changes necessary to build them
* *
...@@ -134,6 +137,14 @@ public: ...@@ -134,6 +137,14 @@ public:
*/ */
virtual XSNamespaceItem *getNamespaceItem(); virtual XSNamespaceItem *getNamespaceItem();
/**
* Optional. Return a unique identifier for a component within this XSModel, to
* optimize querying. May not be defined for all types of component.
* @return id unique for this type of component within this XSModel or 0
* to indicate that this is not supported for this type of component.
*/
virtual unsigned int getId() const;
//@} //@}
//---------------------------------- //----------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment