summaryrefslogtreecommitdiff
path: root/reportdesign/source/filter/xml/xmlSection.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign/source/filter/xml/xmlSection.cxx')
-rw-r--r--reportdesign/source/filter/xml/xmlSection.cxx158
1 files changed, 158 insertions, 0 deletions
diff --git a/reportdesign/source/filter/xml/xmlSection.cxx b/reportdesign/source/filter/xml/xmlSection.cxx
new file mode 100644
index 000000000000..d888ed5f9cf4
--- /dev/null
+++ b/reportdesign/source/filter/xml/xmlSection.cxx
@@ -0,0 +1,158 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org 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 version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+#include "precompiled_reportdesign.hxx"
+#include "xmlSection.hxx"
+#include "xmlfilter.hxx"
+#include <xmloff/xmltoken.hxx>
+#include <xmloff/xmlnmspe.hxx>
+#include <xmloff/nmspmap.hxx>
+#include <xmloff/xmluconv.hxx>
+#include "xmlHelper.hxx"
+#include "xmlEnums.hxx"
+#ifndef RPT_XMLCOLUMN_HXX
+#include "xmlColumn.hxx"
+#endif
+#ifndef RPT_XMLCondPrtExpr_HXX
+#include "xmlCondPrtExpr.hxx"
+#endif
+#include "xmlStyleImport.hxx"
+#include <connectivity/dbtools.hxx>
+#include <tools/debug.hxx>
+#include <com/sun/star/report/ReportPrintOption.hpp>
+#ifndef REPORTDESIGN_SHARED_XMLSTRINGS_HRC
+#include "xmlstrings.hrc"
+#endif
+#include "xmlTable.hxx"
+
+
+namespace rptxml
+{
+ using namespace ::xmloff;
+ using namespace ::com::sun::star;
+ using namespace ::com::sun::star::uno;
+ using namespace ::com::sun::star::xml::sax;
+
+ sal_uInt16 lcl_getReportPrintOption(const ::rtl::OUString& _sValue)
+ {
+ sal_uInt16 nRet = report::ReportPrintOption::ALL_PAGES;
+ const SvXMLEnumMapEntry* aXML_EnumMap = OXMLHelper::GetReportPrintOptions();
+ SvXMLUnitConverter::convertEnum( nRet, _sValue, aXML_EnumMap );
+ return nRet;
+ }
+
+
+DBG_NAME( rpt_OXMLSection )
+
+OXMLSection::OXMLSection( ORptFilter& rImport,
+ sal_uInt16 nPrfx, const ::rtl::OUString& _sLocalName,
+ const uno::Reference< xml::sax::XAttributeList > & _xAttrList
+ ,const uno::Reference< report::XSection >& _xSection
+ ,sal_Bool _bPageHeader)
+:SvXMLImportContext( rImport, nPrfx, _sLocalName )
+,m_xSection(_xSection)
+,m_bPageHeader(_bPageHeader)
+{
+ DBG_CTOR( rpt_OXMLSection,NULL);
+
+ OSL_ENSURE(_xAttrList.is(),"Attribute list is NULL!");
+ const SvXMLNamespaceMap& rMap = rImport.GetNamespaceMap();
+ const SvXMLTokenMap& rTokenMap = rImport.GetSectionElemTokenMap();
+
+ const sal_Int16 nLength = (m_xSection.is() && _xAttrList.is()) ? _xAttrList->getLength() : 0;
+ static const ::rtl::OUString s_sTRUE = ::xmloff::token::GetXMLToken(XML_TRUE);
+ try
+ {
+ for(sal_Int16 i = 0; i < nLength; ++i)
+ {
+ rtl::OUString sLocalName;
+ const rtl::OUString sAttrName = _xAttrList->getNameByIndex( i );
+ const sal_uInt16 nPrefix = rMap.GetKeyByAttrName( sAttrName,&sLocalName );
+ const rtl::OUString sValue = _xAttrList->getValueByIndex( i );
+
+ switch( rTokenMap.Get( nPrefix, sLocalName ) )
+ {
+
+ case XML_TOK_PAGE_PRINT_OPTION:
+ if ( _bPageHeader )
+ m_xSection->getReportDefinition()->setPageHeaderOption(lcl_getReportPrintOption(sValue));
+ else
+ m_xSection->getReportDefinition()->setPageFooterOption(lcl_getReportPrintOption(sValue));
+ break;
+ case XML_TOK_REPEAT_SECTION:
+ m_xSection->setRepeatSection(sValue == s_sTRUE );
+ break;
+
+ default:
+ OSL_ENSURE(0,"OXMLSection: Unknown attribute!");
+ }
+ }
+ }
+ catch(Exception&)
+ {
+ OSL_ENSURE(0,"Exception catched while filling the section props");
+ }
+}
+// -----------------------------------------------------------------------------
+OXMLSection::~OXMLSection()
+{
+ DBG_DTOR( rpt_OXMLSection,NULL);
+}
+// -----------------------------------------------------------------------------
+
+SvXMLImportContext* OXMLSection::CreateChildContext(
+ sal_uInt16 _nPrefix,
+ const ::rtl::OUString& _rLocalName,
+ const uno::Reference< xml::sax::XAttributeList > & xAttrList )
+{
+ SvXMLImportContext *pContext = 0;
+ ORptFilter& rImport = GetOwnImport();
+ const SvXMLTokenMap& rTokenMap = rImport.GetSectionElemTokenMap();
+ uno::Reference<lang::XMultiServiceFactory> xFactor = rImport.getServiceFactory();
+
+ switch( rTokenMap.Get( _nPrefix, _rLocalName ) )
+ {
+ case XML_TOK_TABLE:
+ pContext = new OXMLTable( rImport, _nPrefix, _rLocalName,xAttrList,m_xSection);
+ break;
+ default:
+ break;
+ }
+
+ if( !pContext )
+ pContext = new SvXMLImportContext( rImport, _nPrefix, _rLocalName );
+
+ return pContext;
+}
+// -----------------------------------------------------------------------------
+ORptFilter& OXMLSection::GetOwnImport()
+{
+ return static_cast<ORptFilter&>(GetImport());
+}
+// -----------------------------------------------------------------------------
+// -----------------------------------------------------------------------------
+} // namespace rptxml
+// -----------------------------------------------------------------------------