Newer
Older
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 1999-2004 The Apache Software Foundation. All rights
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
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Xerces" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache\@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation, and was
* originally based on software copyright (c) 1999, International
* Business Machines, Inc., http://www.ibm.com . For more information
* on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
/*
* $Log$
* Revision 1.17 2004/01/13 16:34:20 cargilld
* Misc memory management changes.
*
David Abram Cargill
committed
* Revision 1.16 2003/12/17 00:18:34 cargilld
* Update to memory management so that the static memory manager (one used to call Initialize) is only for static data.
*
* Revision 1.15 2003/11/25 18:18:39 knoaman
* Check for out of memory exception. Thanks to David Cargill.
*
* Revision 1.14 2003/11/21 22:38:50 neilg
* Enable grammar pools and grammar resolvers to manufacture
* XSModels. This also cleans up handling in the
* parser classes by eliminating the need to tell
* the grammar pool that schema compoments need to be produced.
* Thanks to David Cargill.
*
Neil Graham
committed
* Revision 1.13 2003/11/14 22:34:20 neilg
* removed methods made unnecessary by new XSModel implementation design; thanks to David Cargill
*
* Revision 1.12 2003/11/07 20:30:28 neilg
* fix compilation errors on AIX and HPUX; thanks to David Cargill
*
* Revision 1.11 2003/11/06 21:53:52 neilg
* update grammar pool interface so that cacheGrammar(Grammar) can tell the caller whether the grammar was accepted. Also fix some documentation errors.
*
* Revision 1.10 2003/11/06 15:30:06 neilg
* first part of PSVI/schema component model implementation, thanks to David Cargill. This covers setting the PSVIHandler on parser objects, as well as implementing XSNotation, XSSimpleTypeDefinition, XSIDCDefinition, and most of XSWildcard, XSComplexTypeDefinition, XSElementDeclaration, XSAttributeDeclaration and XSAttributeUse.
*
* Revision 1.9 2003/11/05 18:20:20 peiyongz
* cleanup deserialized grammars if exception thrown during loading
*
* Revision 1.8 2003/10/29 16:16:08 peiyongz
* GrammarPool' serialization/deserialization support
*
Neil Graham
committed
* Revision 1.7 2003/10/10 18:36:41 neilg
* update XMLGrammarPool default implementation to reflect recent modifications to the base interface.
*
Neil Graham
committed
* Revision 1.6 2003/10/09 13:54:25 neilg
* modify grammar pool implementation to that, once locked, a thread-safe StringPool is used
*
Neil Graham
committed
* Revision 1.5 2003/09/16 18:30:54 neilg
* make Grammar pool be responsible for creating and owning URI string pools. This is one more step towards having grammars be independent of the parsers involved in their creation
*
* Revision 1.4 2003/09/02 08:59:02 gareth
* Added API to get enumerator of grammars.
*
* Revision 1.3 2003/07/31 17:05:03 peiyongz
* Grammar embed Grammar Description
* using getGrammar(URI)
* update GrammarDescription info
*
* Revision 1.2 2003/06/20 22:19:30 peiyongz
* Stateless Grammar Pool :: Part I
*
* Revision 1.1 2003/06/20 18:38:39 peiyongz
* Stateless Grammar Pool :: Part I
*
* $Id$
*
*/
// ---------------------------------------------------------------------------
// Includes
// ---------------------------------------------------------------------------
#include <xercesc/internal/XMLGrammarPoolImpl.hpp>
#include <xercesc/internal/XSerializeEngine.hpp>
#include <xercesc/internal/XTemplateSerializer.hpp>
#include <xercesc/validators/DTD/DTDGrammar.hpp>
#include <xercesc/validators/DTD/XMLDTDDescriptionImpl.hpp>
#include <xercesc/validators/schema/SchemaGrammar.hpp>
#include <xercesc/validators/schema/XMLSchemaDescriptionImpl.hpp>
#include <xercesc/util/OutOfMemoryException.hpp>
#include <xercesc/util/SynchronizedStringPool.hpp>
// private function used to update fXSModel
void XMLGrammarPoolImpl::createXSModel()
{
David Abram Cargill
committed
RefHashTableOfEnumerator<Grammar> grammarEnum(fGrammarRegistry, false, getMemoryManager());
if (fXSModel)
{
// Need to guarantee that we return a different address...
if (grammarEnum.hasMoreElements())
{
XSModel* xsModel = new (getMemoryManager()) XSModel(this, getMemoryManager());
delete fXSModel;
fXSModel = xsModel;
}
else
{
// its empty...
delete fXSModel;
fXSModel = 0;
}
}
else if (grammarEnum.hasMoreElements())
{
fXSModel = new (getMemoryManager()) XSModel(this, getMemoryManager());
}
fXSModelIsValid = true;
}
// ---------------------------------------------------------------------------
// XMLGrammarPoolImpl: constructor and destructor
// ---------------------------------------------------------------------------
XMLGrammarPoolImpl::~XMLGrammarPoolImpl()
{
delete fGrammarRegistry;
Neil Graham
committed
delete fStringPool;
Neil Graham
committed
if(fSynchronizedStringPool)
delete fSynchronizedStringPool;
if(fXSModel)
delete fXSModel;
}
XMLGrammarPoolImpl::XMLGrammarPoolImpl(MemoryManager* const memMgr)
:XMLGrammarPool(memMgr)
,fGrammarRegistry(0)
Neil Graham
committed
,fStringPool(0)
Neil Graham
committed
,fSynchronizedStringPool(0)
,fLocked(false)
,fXSModelIsValid(false)
,fXSModel(0)
fGrammarRegistry = new (memMgr) RefHashTableOf<Grammar>(29, true, memMgr);
Neil Graham
committed
fStringPool = new (memMgr) XMLStringPool(109, memMgr);
}
// -----------------------------------------------------------------------
// Implementation of Grammar Pool Interface
// -----------------------------------------------------------------------
bool XMLGrammarPoolImpl::cacheGrammar(Grammar* const gramToCache )
if(fLocked || !gramToCache)
return false;
const XMLCh* grammarKey = gramToCache->getGrammarDescription()->getGrammarKey();
if (fGrammarRegistry->containsKey(grammarKey))
{
David Abram Cargill
committed
ThrowXMLwithMemMgr(RuntimeException, XMLExcepts::GC_ExistingGrammar, getMemoryManager());
fGrammarRegistry->put((void*) grammarKey, gramToCache);
fXSModelIsValid = false;
return true;
}
Grammar* XMLGrammarPoolImpl::retrieveGrammar(XMLGrammarDescription* const gramDesc)
{
if (!gramDesc)
return 0;
/***
* This implementation simply use GrammarKey
*/
return fGrammarRegistry->get(gramDesc->getGrammarKey());
Grammar* XMLGrammarPoolImpl::orphanGrammar(const XMLCh* const nameSpaceKey)
if (!fLocked)
{
fXSModelIsValid = false;
return fGrammarRegistry->orphanKey(nameSpaceKey);
}
return 0;
RefHashTableOfEnumerator<Grammar>
XMLGrammarPoolImpl::getGrammarEnumerator() const
{
David Abram Cargill
committed
return RefHashTableOfEnumerator<Grammar>(fGrammarRegistry, false, fGrammarRegistry->getMemoryManager());
bool XMLGrammarPoolImpl::clear()
if (!fLocked)
{
fGrammarRegistry->removeAll();
fXSModelIsValid = false;
if (fXSModel)
{
delete fXSModel;
fXSModel = 0;
}
return true;
}
return false;
}
void XMLGrammarPoolImpl::lockPool()
{
Neil Graham
committed
{
fLocked = true;
MemoryManager *memMgr = getMemoryManager();
if(!fSynchronizedStringPool)
{
fSynchronizedStringPool = new (memMgr) XMLSynchronizedStringPool(fStringPool, 109, memMgr);
}
if (!fXSModelIsValid)
{
createXSModel();
}
}
}
void XMLGrammarPoolImpl::unlockPool()
{
{
fLocked = false;
if(fSynchronizedStringPool)
{
fSynchronizedStringPool->flushAll();
// if user calls Lock again, need to have null fSynchronizedStringPool
delete fSynchronizedStringPool;
fSynchronizedStringPool = 0;
}
fXSModelIsValid = false;
if (fXSModel)
{
delete fXSModel;
fXSModel = 0;
}
}
}
// -----------------------------------------------------------------------
// Implementation of Factory Interface
// -----------------------------------------------------------------------
DTDGrammar* XMLGrammarPoolImpl::createDTDGrammar()
{
return new (getMemoryManager()) DTDGrammar(getMemoryManager());
}
SchemaGrammar* XMLGrammarPoolImpl::createSchemaGrammar()
{
return new (getMemoryManager()) SchemaGrammar(getMemoryManager());
}
XMLDTDDescription* XMLGrammarPoolImpl::createDTDDescription(const XMLCh* const rootName)
{
return new (getMemoryManager()) XMLDTDDescriptionImpl(rootName, getMemoryManager());
}
XMLSchemaDescription* XMLGrammarPoolImpl::createSchemaDescription(const XMLCh* const targetNamespace)
{
return new (getMemoryManager()) XMLSchemaDescriptionImpl(targetNamespace, getMemoryManager());
}
XSModel *XMLGrammarPoolImpl::getXSModel()
Neil Graham
committed
{
if (fLocked)
return fXSModel;
if (fXSModelIsValid)
return fXSModel;
createXSModel();
return fXSModel;
Neil Graham
committed
}
XMLStringPool *XMLGrammarPoolImpl::getURIStringPool()
Neil Graham
committed
{
Neil Graham
committed
if(fLocked)
return fSynchronizedStringPool;
Neil Graham
committed
return fStringPool;
}
// -----------------------------------------------------------------------
// serialization and deserialization support
// -----------------------------------------------------------------------
/***
*
* don't serialize
*
* XMLSynchronizedStringPool* fSynchronizedStringPool;
*/
/***
* .non-empty gramamrRegistry
***/
void XMLGrammarPoolImpl::serializeGrammars(BinOutputStream* const binOut)
{
David Abram Cargill
committed
RefHashTableOfEnumerator<Grammar> grammarEnum(fGrammarRegistry, false, getMemoryManager());
if (!(grammarEnum.hasMoreElements()))
David Abram Cargill
committed
ThrowXMLwithMemMgr(XSerializationException, XMLExcepts::XSer_GrammarPool_Empty, getMemoryManager());
XSerializeEngine serEng(binOut, getMemoryManager());
//version information
serEng<<gXercesMajVersion;
serEng<<gXercesMinVersion;
serEng<<gXercesRevision;
serEng<<(unsigned int)XERCES_GRAMMAR_SERIALIZATION_LEVEL;
//lock status
serEng<<fLocked;
//StringPool, don't use <<
fStringPool->serialize(serEng);
/***
* Serialize RefHashTableOf<Grammar>* fGrammarRegistry;
***/
XTemplateSerializer::storeObject(fGrammarRegistry, serEng);
}
/***
* .empty stringPool
* .empty gramamrRegistry
***/
void XMLGrammarPoolImpl::deserializeGrammars(BinInputStream* const binIn)
{
David Abram Cargill
committed
MemoryManager *memMgr = getMemoryManager();
unsigned int stringCount = fStringPool->getStringCount();
if (stringCount)
{
/***
* it contains only the four predefined one, that is ok
* but we need to reset the string before deserialize it
*
***/
if ( stringCount <= 4 )
{
fStringPool->flushAll();
}
else
{
David Abram Cargill
committed
ThrowXMLwithMemMgr(XSerializationException, XMLExcepts::XSer_StringPool_NotEmpty, memMgr);
David Abram Cargill
committed
RefHashTableOfEnumerator<Grammar> grammarEnum(fGrammarRegistry, false, memMgr);
if (grammarEnum.hasMoreElements())
{
David Abram Cargill
committed
ThrowXMLwithMemMgr(XSerializationException, XMLExcepts::XSer_GrammarPool_NotEmpty, memMgr);
David Abram Cargill
committed
XSerializeEngine serEng(binIn, memMgr);
//version information
unsigned int MajVer;
unsigned int MinVer;
unsigned int Revision;
unsigned int SerializationLevel;
serEng>>MajVer;
serEng>>MinVer;
serEng>>Revision;
serEng>>SerializationLevel;
//we may change the logic once we have more
//versions
if ((MajVer != gXercesMajVersion) ||
(MinVer != gXercesMinVersion) ||
(Revision != gXercesRevision) ||
(SerializationLevel != (unsigned int) XERCES_GRAMMAR_SERIALIZATION_LEVEL))
XMLCh MajVerChar[5];
XMLCh MinVerChar[5];
XMLCh RevisionChar[5];
David Abram Cargill
committed
XMLString::binToText(MajVer, MajVerChar, 4, 10, memMgr);
XMLString::binToText(MinVer, MinVerChar, 4, 10, memMgr);
XMLString::binToText(Revision, RevisionChar, 4, 10, memMgr);
David Abram Cargill
committed
ThrowXMLwithMemMgr3(XSerializationException
, XMLExcepts::XSer_BinaryData_Version_NotSupported
, MajVerChar
, MinVerChar
David Abram Cargill
committed
, RevisionChar
, memMgr);
//lock status
serEng>>fLocked;
//StringPool, don't use >>
fStringPool->serialize(serEng);
/***
* Deserialize RefHashTableOf<Grammar>* fGrammarRegistry;
***/
XTemplateSerializer::loadObject(&fGrammarRegistry, 29, true, serEng);
}
catch(const OutOfMemoryException&)
{
throw;
}
fLocked = false; // need to unset it so we can clean it out..
clear(); //clear all deserialized grammars
if (fLocked)
{
createXSModel();
}