[GME-commit] GMESRC/GME/Include/xercesc/parsers AbstractDOMParser.cpp, NONE, 1.1 DOMBuilderImpl.cpp, NONE, 1.1 Makefile.in, NONE, 1.1 SAX2XMLFilterImpl.cpp, NONE, 1.1 SAX2XMLFilterImpl.hpp, NONE, 1.1 SAX2XMLReaderImpl.cpp, NONE, 1.1 SAXParser.cpp, NONE, 1.1 XercesDOMParser.cpp, NONE, 1.1 AbstractDOMParser.hpp, 1.1.1.1, 1.2 DOMBuilderImpl.hpp, 1.1.1.1, 1.2 SAX2XMLReaderImpl.hpp, 1.1.1.1, 1.2 SAXParser.hpp, 1.1.1.1, 1.2 XercesDOMParser.hpp, 1.1.1.1, 1.2

Log messages of CVS commits gme-commit at list.isis.vanderbilt.edu
Tue Feb 19 14:16:30 CST 2008


Update of /project/gme-repository/GMESRC/GME/Include/xercesc/parsers
In directory escher:/tmp/cvs-serv26529/parsers

Modified Files:
	AbstractDOMParser.hpp DOMBuilderImpl.hpp SAX2XMLReaderImpl.hpp 
	SAXParser.hpp XercesDOMParser.hpp 
Added Files:
	AbstractDOMParser.cpp DOMBuilderImpl.cpp Makefile.in 
	SAX2XMLFilterImpl.cpp SAX2XMLFilterImpl.hpp 
	SAX2XMLReaderImpl.cpp SAXParser.cpp XercesDOMParser.cpp 
Log Message:
Xerces2.7 includes checkin.


CVS User: Zoltan Molnar, ISIS (zolmol)

--- NEW FILE: SAXParser.cpp ---
/*
 * Copyright 1999-2004 The Apache Software Foundation.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*
 * $Id: SAXParser.cpp,v 1.1 2008/02/19 20:16:28 zolmol Exp $
 */
[...1322 lines suppressed...]
        resetInProgress.release();

        throw;
    }

    return grammar;
}

void SAXParser::resetInProgress()
{
    fParseInProgress = false;
}

void SAXParser::resetCachedGrammarPool()
{
    fGrammarResolver->resetCachedGrammar();
}

XERCES_CPP_NAMESPACE_END


--- NEW FILE: Makefile.in ---
#
# Copyright 1999-2001,2004 The Apache Software Foundation.
# 
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# 
#      http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
#
# $Id: Makefile.in,v 1.1 2008/02/19 20:16:27 zolmol Exp $
#

PLATFORM = @platform@
CC  = @cc@
CXX = @cxx@
CXXVER = @cxxver@
GCC = @GCC@
GXX = @GXX@
CXXFLAGS = @cxxflags@
CFLAGS = @cflags@
PREFIX = @prefix@
PREFIX_INCLUDE = @prefix_include@
LDFLAGS = @ldflags@
LIBS = @libs@
OSVER = @osver@
USELIBWWW = @uselibwww@
MESSAGELOADER = @messageloader@
TRANSCODER = @transcoder@
THREADS = @threads@

include ../Makefile.incl

MODULE = parsers

PARSERS_CPP_PUBHEADERS = \
	AbstractDOMParser.hpp \
	DOMBuilderImpl.hpp \
	XercesDOMParser.hpp \
	SAXParser.hpp \
	SAX2XMLReaderImpl.hpp \
	SAX2XMLFilterImpl.hpp

PARSERS_CPP_PRIVHEADERS =

PARSERS_C_FILES =

PARSERS_CPP_OBJECTS = \
	AbstractDOMParser.$(TO) \
	DOMBuilderImpl.$(TO) \
	XercesDOMParser.$(TO) \
	SAXParser.$(TO) \
	SAX2XMLReaderImpl.$(TO) \
	SAX2XMLFilterImpl.$(TO)

XML_INCL := $(XML_INCL) -I$(XERCESCROOT)/src

all::	includes $(PARSERS_CPP_OBJECTS)

includes::	pubheaders $(PARSERS_C_FILES)

pubheaders::
	$Qmkdir -p $(XML_INC_DIR)/$(MODULE)
	@echo "  (CP)  $(XML_INC_DIR)/$(MODULE)"
	$Q$(CP) $(PARSERS_CPP_PUBHEADERS) $(PARSERS_C_FILES) $(XML_INC_DIR)/$(MODULE)

# this may generate unnecessary dependencies, but it makes life easier
depend:: includes
	@echo "  (DEP)"
	$Q$(MAKE_DEPEND) $(XML_INCL) *.cpp > $(DEPFILE)

clean::
	@echo "Making clean in $(MODULE) ..."
	$(RM2) $(addprefix $(XML_OBJ_DIR)/,$(PARSERS_CPP_OBJECTS))

distclean::	clean
	$(RM) Makefile $(DEPFILE)
	@echo "Removing all $(MODULE) header files ..."
	$(RM2) $(addprefix $(XML_INC_DIR)/$(MODULE)/,$(PARSERS_CPP_PUBHEADERS))

install::
	-mkdir -p $(DESTDIR)$(PREFIX_INCLUDE)/$(MODULE)
	$(CP) $(PARSERS_CPP_PUBHEADERS) $(PARSERS_C_FILES) $(DESTDIR)$(PREFIX_INCLUDE)/$(MODULE)

--- NEW FILE: SAX2XMLReaderImpl.cpp ---
/*
 * Copyright 1999-2004 The Apache Software Foundation.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*
 * $Id: SAX2XMLReaderImpl.cpp,v 1.1 2008/02/19 20:16:28 zolmol Exp $
 */
[...1521 lines suppressed...]
}

void SAX2XMLReaderImpl::resetCachedGrammarPool()
{
    fGrammarResolver->resetCachedGrammar();
}

void SAX2XMLReaderImpl::setInputBufferSize(const size_t bufferSize)
{
    fScanner->setInputBufferSize(bufferSize);
}

Grammar* SAX2XMLReaderImpl::getGrammar(const XMLCh* const nameSpaceKey)
{
    return fGrammarResolver->getGrammar(nameSpaceKey);
}


XERCES_CPP_NAMESPACE_END




--- NEW FILE: SAX2XMLFilterImpl.hpp ---



--- NEW FILE: AbstractDOMParser.cpp ---

--- NEW FILE: DOMBuilderImpl.cpp ---


--- NEW FILE: SAX2XMLFilterImpl.cpp ---

--- NEW FILE: XercesDOMParser.cpp ---



More information about the GME-commit mailing list