diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2007-11-09 07:16:22 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2007-11-09 07:16:22 +0000 |
commit | e81a972228d706ea64192e3bc0a37da65e72d1b2 (patch) | |
tree | 6f147fd0f40c1eb665ece50c87cb2ef0a9ad263f /dbaccess | |
parent | 79a82759251ada39dc8461bcd3f2cf2f502ed6aa (diff) |
INTEGRATION: CWS dbodf12import (1.1.2); FILE ADDED
2007/11/01 09:15:00 oj 1.1.2.1: #i83190# new elements
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/filter/xml/xmlDatabaseDescription.cxx | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/dbaccess/source/filter/xml/xmlDatabaseDescription.cxx b/dbaccess/source/filter/xml/xmlDatabaseDescription.cxx new file mode 100644 index 000000000..c4794b26c --- /dev/null +++ b/dbaccess/source/filter/xml/xmlDatabaseDescription.cxx @@ -0,0 +1,130 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: xmlDatabaseDescription.cxx,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: rt $ $Date: 2007-11-09 08:16:22 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + ************************************************************************/ + +// MARKER(update_precomp.py): autogen include statement, do not remove +#include "precompiled_dbaccess.hxx" +#ifndef DBA_XMLDATABASEDESCRIPTION_HXX_INCLUDED +#include "xmlDatabaseDescription.hxx" +#endif +#ifndef DBA_XMLLOGIN_HXX +#include "xmlLogin.hxx" +#endif +#ifndef DBA_XMLFILTER_HXX +#include "xmlfilter.hxx" +#endif +#ifndef _XMLOFF_XMLTOKEN_HXX +#include <xmloff/xmltoken.hxx> +#endif +#ifndef _XMLOFF_XMLNMSPE_HXX +#include <xmloff/xmlnmspe.hxx> +#endif +#ifndef _XMLOFF_NMSPMAP_HXX +#include <xmloff/nmspmap.hxx> +#endif +#include "xmlEnums.hxx" +#include "xmlFileBasedDatabase.hxx" +#include "xmlServerDatabase.hxx" +#include "xmlstrings.hrc" +#ifndef _TOOLS_DEBUG_HXX +#include <tools/debug.hxx> +#endif +#ifndef TOOLS_DIAGNOSE_EX_H +#include <tools/diagnose_ex.h> +#endif + +namespace dbaxml +{ + using namespace ::com::sun::star::uno; + using namespace ::com::sun::star::xml::sax; +DBG_NAME(OXMLDatabaseDescription) + +OXMLDatabaseDescription::OXMLDatabaseDescription( ODBFilter& rImport, + sal_uInt16 nPrfx, const ::rtl::OUString& _sLocalName) : + SvXMLImportContext( rImport, nPrfx, _sLocalName ) + ,m_bFoundOne(false) +{ + DBG_CTOR(OXMLDatabaseDescription,NULL); +} +// ----------------------------------------------------------------------------- + +OXMLDatabaseDescription::~OXMLDatabaseDescription() +{ + + DBG_DTOR(OXMLDatabaseDescription,NULL); +} +// ----------------------------------------------------------------------------- + +SvXMLImportContext* OXMLDatabaseDescription::CreateChildContext( + sal_uInt16 nPrefix, + const ::rtl::OUString& rLocalName, + const Reference< XAttributeList > & xAttrList ) +{ + SvXMLImportContext *pContext = 0; + const SvXMLTokenMap& rTokenMap = GetOwnImport().GetDatabaseDescriptionElemTokenMap(); + + switch( rTokenMap.Get( nPrefix, rLocalName ) ) + { + case XML_TOK_FILE_BASED_DATABASE: + if ( !m_bFoundOne ) + { + m_bFoundOne = true; + GetOwnImport().GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP ); + pContext = new OXMLFileBasedDatabase( GetOwnImport(), nPrefix, rLocalName,xAttrList ); + } + break; + case XML_TOK_SERVER_DATABASE: + if ( !m_bFoundOne ) + { + m_bFoundOne = true; + GetOwnImport().GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP ); + pContext = new OXMLServerDatabase( GetOwnImport(), nPrefix, rLocalName,xAttrList ); + } + break; + } + + if( !pContext ) + pContext = new SvXMLImportContext( GetImport(), nPrefix, rLocalName ); + + return pContext; +} +// ----------------------------------------------------------------------------- +ODBFilter& OXMLDatabaseDescription::GetOwnImport() +{ + return static_cast<ODBFilter&>(GetImport()); +} +// ----------------------------------------------------------------------------- +//---------------------------------------------------------------------------- +} // namespace dbaxml +// ----------------------------------------------------------------------------- |