|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xml.utils.XMLReaderManager
public class XMLReaderManager
Creates XMLReader objects and caches them for re-use. This class follows the singleton pattern.
Field Summary | |
---|---|
private java.util.Hashtable |
m_inUse
Keeps track of whether an XMLReader object is in use. |
private static javax.xml.parsers.SAXParserFactory |
m_parserFactory
Parser factory to be used to construct XMLReader objects |
private java.lang.ThreadLocal |
m_readers
Cache of XMLReader objects |
private static XMLReaderManager |
m_singletonManager
|
private static java.lang.String |
NAMESPACE_PREFIXES_FEATURE
|
private static java.lang.String |
NAMESPACES_FEATURE
|
Constructor Summary | |
---|---|
private |
XMLReaderManager()
Hidden constructor |
Method Summary | |
---|---|
static XMLReaderManager |
getInstance()
Retrieves the singleton reader manager |
org.xml.sax.XMLReader |
getXMLReader()
Retrieves a cached XMLReader for this thread, or creates a new XMLReader, if the existing reader is in use. |
void |
releaseXMLReader(org.xml.sax.XMLReader reader)
Mark the cached XMLReader as available. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private static final java.lang.String NAMESPACES_FEATURE
private static final java.lang.String NAMESPACE_PREFIXES_FEATURE
private static final XMLReaderManager m_singletonManager
private static javax.xml.parsers.SAXParserFactory m_parserFactory
private java.lang.ThreadLocal m_readers
private java.util.Hashtable m_inUse
Constructor Detail |
---|
private XMLReaderManager()
Method Detail |
---|
public static XMLReaderManager getInstance()
public org.xml.sax.XMLReader getXMLReader() throws org.xml.sax.SAXException
releaseXMLReader(org.xml.sax.XMLReader)
.
org.xml.sax.SAXException
public void releaseXMLReader(org.xml.sax.XMLReader reader)
reader
- The XMLReader that's being released.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |