|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.xml.sax.helpers.DefaultHandler
org.apache.openjpa.lib.meta.XMLMetaDataParser
org.apache.openjpa.lib.meta.CFMetaDataParser
org.apache.openjpa.persistence.XMLPersistenceMetaDataParser
public class XMLPersistenceMetaDataParser
Custom SAX parser used by the system to quickly parse persistence i metadata files.
Field Summary | |
---|---|
protected static String |
ELEM_ACCESS
|
protected static String |
ELEM_ATTRS
|
protected static String |
ELEM_CASCADE
|
protected static String |
ELEM_CASCADE_ALL
|
protected static String |
ELEM_CASCADE_MER
|
protected static String |
ELEM_CASCADE_PER
|
protected static String |
ELEM_CASCADE_REF
|
protected static String |
ELEM_CASCADE_REM
|
protected static String |
ELEM_LISTENER
|
protected static String |
ELEM_PKG
|
protected static String |
ELEM_PU_DEF
|
protected static String |
ELEM_PU_META
|
protected static String |
ELEM_XML_MAP_META_COMPLETE
|
Constructor Summary | |
---|---|
XMLPersistenceMetaDataParser(OpenJPAConfiguration conf)
Constructor; supply configuration. |
Method Summary | |
---|---|
protected Class |
classForName(String name)
Instantiate the given class, taking into account the default package. |
protected Object |
currentElement()
Return the current element being parsed. |
protected Object |
currentParent()
Return the tag of the current parent element. |
protected PersistenceStrategy |
currentStrategy()
Return the current PersistenceStrategy if any. |
protected void |
endClass(String elem)
|
protected void |
endClassElement(String name)
|
protected void |
endClassMapping(ClassMetaData mapping)
Implement to finalize class mapping. |
protected void |
endClassMappingElement(String name)
Implement to parse a mapping element within a class. |
protected void |
endEmbeddedId()
|
protected void |
endFieldMapping(FieldMetaData field)
Implement to finalize field mapping. |
protected void |
endGeneratedValue()
|
protected void |
endId()
|
protected void |
endIdClass()
|
protected void |
endLob()
|
protected void |
endNamedNativeQuery()
|
protected void |
endNamedQuery()
|
protected void |
endQueryHint()
|
protected void |
endQueryString()
|
protected void |
endSequenceGenerator()
|
protected void |
endSystemElement(String name)
|
protected void |
endSystemMappingElement(String name)
Implement to parse a mapping element outside of any class. |
protected void |
endVersion()
|
AnnotationPersistenceMetaDataParser |
getAnnotationParser()
The annotation parser. |
protected String |
getClassAttributeName()
|
protected int |
getClassElementDepth()
|
OpenJPAConfiguration |
getConfiguration()
Configuration supplied on construction. |
ClassLoader |
getEnvClassLoader()
Return the environmental class loader to pass on to parsed metadata instances. |
boolean |
getMappingOverride()
Whether to allow later parses of mapping information to override earlier information for the same class. |
int |
getMode()
The parse mode according to the expected document type. |
protected String |
getPackageAttributeName()
|
MetaDataRepository |
getRepository()
Returns the repository for this parser. |
protected Object |
getSchemaSource()
|
protected boolean |
isClassElementName(String name)
|
protected boolean |
isMappingMode()
Convenience method for interpreting getMode() . |
protected boolean |
isMappingOverrideMode()
Returns true if we're in mapping mode or in metadata mode with mapping override enabled. |
protected boolean |
isMetaDataMode()
Convenience method for interpreting getMode() . |
protected boolean |
isQueryMode()
Convenience method for interpreting getMode() . |
protected boolean |
isRuntime()
Return whether we're running the parser at runtime. |
protected void |
parseBasic(FieldMetaData fmd,
Attributes attrs)
Parse basic. |
protected void |
parseEmbedded(FieldMetaData fmd,
Attributes attrs)
Parse embedded. |
protected void |
parseManyToMany(FieldMetaData fmd,
Attributes attrs)
Parse many-to-many. |
protected void |
parseManyToOne(FieldMetaData fmd,
Attributes attrs)
Parse many-to-one. |
protected void |
parseOneToMany(FieldMetaData fmd,
Attributes attrs)
Parse one-to-many. |
protected void |
parseOneToOne(FieldMetaData fmd,
Attributes attrs)
Parse one-to-one. |
protected Object |
popElement()
Pop a parse element from the stack. |
protected void |
pushElement(Object elem)
Push a parse element onto the stack. |
protected void |
reset()
|
void |
setAnnotationParser(AnnotationPersistenceMetaDataParser parser)
The annotation parser. |
protected void |
setCascades(FieldMetaData fmd)
Set the cached cascades into the field. |
void |
setEnvClassLoader(ClassLoader loader)
Set the environmental class loader to pass on to parsed metadata instances. |
void |
setMappingOverride(boolean override)
Whether to allow later parses of mapping information to override earlier information for the same class. |
void |
setMode(int mode)
The parse mode according to the expected document type. |
void |
setMode(int mode,
boolean on)
The parse mode according to the expected document type. |
void |
setRepository(MetaDataRepository repos)
Set the metadata repository for this parser. |
protected boolean |
startCascade(Object tag,
Attributes attrs)
Lazily parse cascades. |
protected boolean |
startClass(String elem,
Attributes attrs)
|
protected boolean |
startClassElement(String name,
Attributes attrs)
|
protected void |
startClassMapping(ClassMetaData mapping,
boolean mappedSuper,
Attributes attrs)
Implement to add mapping attributes to class. |
protected Object |
startClassMappingElement(String name,
Attributes attrs)
Implement to parse a mapping element within a class. |
protected boolean |
startEmbeddedId(Attributes attrs)
Parse embedded-id. |
protected void |
startFieldMapping(FieldMetaData field,
Attributes attrs)
Implement to add field mapping data. |
protected boolean |
startGeneratedValue(Attributes attrs)
Parse generated-value. |
protected boolean |
startId(Attributes attrs)
Parse id. |
protected boolean |
startIdClass(Attributes attrs)
Parse id-class. |
protected boolean |
startLob(Attributes attrs)
Parse lob. |
protected boolean |
startNamedNativeQuery(Attributes attrs)
Parse native-named-query. |
protected boolean |
startNamedQuery(Attributes attrs)
Parse named-query. |
protected boolean |
startQueryHint(Attributes attrs)
Parse query-hint. |
protected boolean |
startQueryString(Attributes attrs)
|
protected boolean |
startSequenceGenerator(Attributes attrs)
Parse sequence-generator. |
protected boolean |
startSystemElement(String name,
Attributes attrs)
|
protected Object |
startSystemMappingElement(String name,
Attributes attrs)
Implement to parse a mapping element outside of any class. |
protected boolean |
startVersion(Attributes attrs)
Parse version. |
Methods inherited from class org.apache.openjpa.lib.meta.CFMetaDataParser |
---|
classForName, classForName, currentClassName, currentPackage, endElement, endPackage, endPackageElement, getPackageElementDepth, isPackageElementName, startElement, startPackage, startPackageElement |
Methods inherited from class org.apache.openjpa.lib.meta.XMLMetaDataParser |
---|
addComments, addResult, characters, clear, comment, currentClassLoader, currentComments, currentDepth, currentLocation, currentText, endCDATA, endDTD, endElement, endEntity, error, fatalError, finish, getClassLoader, getDocType, getException, getException, getException, getLexicalHandler, getLocation, getLog, getParseComments, getParseText, getResults, getSourceFile, getSourceIsSystemId, getSourceName, getSuffix, ignoreContent, isCaching, isValidating, parse, parse, parse, parse, parse, parse, parsed, parseNewResource, setCaching, setClassLoader, setDocumentLocator, setLexicalHandler, setLocation, setLog, setParseComments, setParseText, setSourceIsSystemId, setSuffix, setValidating, startCDATA, startDTD, startElement, startEntity |
Methods inherited from class org.xml.sax.helpers.DefaultHandler |
---|
endDocument, endPrefixMapping, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warning |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.openjpa.lib.meta.MetaDataParser |
---|
clear, getResults, parse, parse, parse, parse, parse, parse, setClassLoader |
Field Detail |
---|
protected static final String ELEM_PKG
protected static final String ELEM_ACCESS
protected static final String ELEM_ATTRS
protected static final String ELEM_LISTENER
protected static final String ELEM_CASCADE
protected static final String ELEM_CASCADE_ALL
protected static final String ELEM_CASCADE_PER
protected static final String ELEM_CASCADE_MER
protected static final String ELEM_CASCADE_REM
protected static final String ELEM_CASCADE_REF
protected static final String ELEM_PU_META
protected static final String ELEM_PU_DEF
protected static final String ELEM_XML_MAP_META_COMPLETE
Constructor Detail |
---|
public XMLPersistenceMetaDataParser(OpenJPAConfiguration conf)
Method Detail |
---|
public OpenJPAConfiguration getConfiguration()
public AnnotationPersistenceMetaDataParser getAnnotationParser()
public void setAnnotationParser(AnnotationPersistenceMetaDataParser parser)
public MetaDataRepository getRepository()
getRepository
in interface AbstractCFMetaDataFactory.Parser
public void setRepository(MetaDataRepository repos)
public ClassLoader getEnvClassLoader()
public void setEnvClassLoader(ClassLoader loader)
public boolean getMappingOverride()
public void setMappingOverride(boolean override)
public int getMode()
public void setMode(int mode, boolean on)
public void setMode(int mode)
setMode
in interface AbstractCFMetaDataFactory.Parser
protected boolean isMetaDataMode()
getMode()
.
protected boolean isQueryMode()
getMode()
.
protected boolean isMappingMode()
getMode()
.
protected boolean isMappingOverrideMode()
protected void pushElement(Object elem)
protected Object popElement()
protected Object currentElement()
protected PersistenceStrategy currentStrategy()
PersistenceStrategy
if any.
protected Object currentParent()
protected boolean isRuntime()
protected Object getSchemaSource()
getSchemaSource
in class org.apache.openjpa.lib.meta.XMLMetaDataParser
protected String getPackageAttributeName()
getPackageAttributeName
in class org.apache.openjpa.lib.meta.CFMetaDataParser
protected String getClassAttributeName()
getClassAttributeName
in class org.apache.openjpa.lib.meta.CFMetaDataParser
protected int getClassElementDepth()
getClassElementDepth
in class org.apache.openjpa.lib.meta.CFMetaDataParser
protected boolean isClassElementName(String name)
isClassElementName
in class org.apache.openjpa.lib.meta.CFMetaDataParser
protected void reset()
reset
in class org.apache.openjpa.lib.meta.CFMetaDataParser
protected boolean startSystemElement(String name, Attributes attrs) throws SAXException
startSystemElement
in class org.apache.openjpa.lib.meta.CFMetaDataParser
SAXException
protected void endSystemElement(String name) throws SAXException
endSystemElement
in class org.apache.openjpa.lib.meta.CFMetaDataParser
SAXException
protected Object startSystemMappingElement(String name, Attributes attrs) throws SAXException
SAXException
protected void endSystemMappingElement(String name) throws SAXException
SAXException
protected boolean startClassElement(String name, Attributes attrs) throws SAXException
startClassElement
in class org.apache.openjpa.lib.meta.CFMetaDataParser
SAXException
protected void endClassElement(String name) throws SAXException
endClassElement
in class org.apache.openjpa.lib.meta.CFMetaDataParser
SAXException
protected Object startClassMappingElement(String name, Attributes attrs) throws SAXException
SAXException
protected void endClassMappingElement(String name) throws SAXException
SAXException
protected boolean startClass(String elem, Attributes attrs) throws SAXException
startClass
in class org.apache.openjpa.lib.meta.CFMetaDataParser
SAXException
protected void endClass(String elem) throws SAXException
endClass
in class org.apache.openjpa.lib.meta.CFMetaDataParser
SAXException
protected void startClassMapping(ClassMetaData mapping, boolean mappedSuper, Attributes attrs) throws SAXException
SAXException
protected void endClassMapping(ClassMetaData mapping) throws SAXException
SAXException
protected boolean startSequenceGenerator(Attributes attrs)
protected void endSequenceGenerator()
protected boolean startId(Attributes attrs) throws SAXException
SAXException
protected void endId() throws SAXException
SAXException
protected boolean startEmbeddedId(Attributes attrs) throws SAXException
SAXException
protected void endEmbeddedId() throws SAXException
SAXException
protected boolean startIdClass(Attributes attrs) throws SAXException
SAXException
protected void endIdClass() throws SAXException
SAXException
protected boolean startLob(Attributes attrs) throws SAXException
SAXException
protected void endLob() throws SAXException
SAXException
protected boolean startGeneratedValue(Attributes attrs) throws SAXException
SAXException
protected void endGeneratedValue() throws SAXException
SAXException
protected boolean startCascade(Object tag, Attributes attrs) throws SAXException
SAXException
protected void setCascades(FieldMetaData fmd)
protected void startFieldMapping(FieldMetaData field, Attributes attrs) throws SAXException
SAXException
protected void endFieldMapping(FieldMetaData field) throws SAXException
SAXException
protected boolean startVersion(Attributes attrs) throws SAXException
SAXException
protected void endVersion() throws SAXException
SAXException
protected void parseBasic(FieldMetaData fmd, Attributes attrs) throws SAXException
SAXException
protected void parseEmbedded(FieldMetaData fmd, Attributes attrs) throws SAXException
SAXException
protected void parseOneToOne(FieldMetaData fmd, Attributes attrs) throws SAXException
SAXException
protected void parseManyToOne(FieldMetaData fmd, Attributes attrs) throws SAXException
SAXException
protected void parseManyToMany(FieldMetaData fmd, Attributes attrs) throws SAXException
SAXException
protected void parseOneToMany(FieldMetaData fmd, Attributes attrs) throws SAXException
SAXException
protected boolean startNamedQuery(Attributes attrs) throws SAXException
SAXException
protected void endNamedQuery() throws SAXException
SAXException
protected boolean startQueryString(Attributes attrs) throws SAXException
SAXException
protected void endQueryString() throws SAXException
SAXException
protected boolean startQueryHint(Attributes attrs) throws SAXException
SAXException
protected void endQueryHint() throws SAXException
SAXException
protected boolean startNamedNativeQuery(Attributes attrs) throws SAXException
SAXException
protected void endNamedNativeQuery() throws SAXException
SAXException
protected Class classForName(String name) throws SAXException
SAXException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |