1 2 3 4 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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you 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 .
*/
#include "xmlTable.hxx"
#include "xmlfilter.hxx"
#include <utility>
#include <xmloff/xmltoken.hxx>
#include <xmloff/ProgressBarHelper.hxx>
#include "xmlEnums.hxx"
#include "xmlStyleImport.hxx"
#include "xmlHierarchyCollection.hxx"
#include <strings.hxx>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
#include <com/sun/star/container/XNameContainer.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <comphelper/propertysequence.hxx>
#include <comphelper/diagnose_ex.hxx>
namespace dbaxml
{
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::sdbcx;
using namespace ::com::sun::star::xml::sax;
OXMLTable::OXMLTable( ODBFilter& _rImport
,const uno::Reference< XFastAttributeList > & _xAttrList
,uno::Reference< css::container::XNameAccess > _xParentContainer
,const OUString& _sServiceName
)
:SvXMLImportContext( _rImport )
,m_xParentContainer(std::move(_xParentContainer))
,m_bApplyFilter(false)
,m_bApplyOrder(false)
{
for (auto &aIter : sax_fastparser::castToFastAttributeList( _xAttrList ))
{
OUString sValue = aIter.toString();
switch( aIter.getToken() & TOKEN_MASK )
{
case XML_NAME:
m_sName = sValue;
break;
case XML_CATALOG_NAME:
m_sCatalog = sValue;
break;
case XML_SCHEMA_NAME:
m_sSchema = sValue;
break;
case XML_STYLE_NAME:
m_sStyleName = sValue;
break;
case XML_APPLY_FILTER:
m_bApplyFilter = sValue == "true";
break;
case XML_APPLY_ORDER:
m_bApplyOrder = sValue == "true";
break;
default:
XMLOFF_WARN_UNKNOWN("dbaccess", aIter);
}
}
uno::Sequence<uno::Any> aArguments(comphelper::InitAnyPropertySequence(
{
{"Name", uno::Any(m_sName)}, // set as folder
{"Parent", uno::Any(m_xParentContainer)}
}));
m_xTable.set(
GetOwnImport().GetComponentContext()->getServiceManager()->createInstanceWithArgumentsAndContext(_sServiceName,aArguments, GetOwnImport().GetComponentContext()),
UNO_QUERY);
}
OXMLTable::~OXMLTable()
{
}
css::uno::Reference< css::xml::sax::XFastContextHandler > OXMLTable::createFastChildContext(
sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
{
SvXMLImportContext *pContext = nullptr;
switch( nElement & TOKEN_MASK )
{
case XML_FILTER_STATEMENT:
{
GetOwnImport().GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP );
OUString s1,s2,s3;
fillAttributes(xAttrList,m_sFilterStatement,s1,s2,s3);
}
break;
case XML_ORDER_STATEMENT:
{
GetOwnImport().GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP );
OUString s1,s2,s3;
fillAttributes(xAttrList,m_sOrderStatement,s1,s2,s3);
}
break;
case XML_COLUMNS:
{
GetOwnImport().GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP );
uno::Reference< XColumnsSupplier > xColumnsSup(m_xTable,UNO_QUERY);
uno::Reference< XNameAccess > xColumns;
if ( xColumnsSup.is() )
{
xColumns = xColumnsSup->getColumns();
}
pContext = new OXMLHierarchyCollection( GetOwnImport(), xColumns,m_xTable);
}
break;
}
return pContext;
}
ODBFilter& OXMLTable::GetOwnImport()
{
return static_cast<ODBFilter&>(GetImport());
}
void OXMLTable::setProperties(uno::Reference< XPropertySet > & _xProp )
{
try
{
if ( _xProp.is() )
{
_xProp->setPropertyValue(PROPERTY_APPLYFILTER,Any(m_bApplyFilter));
_xProp->setPropertyValue(PROPERTY_FILTER,Any(m_sFilterStatement));
if ( _xProp->getPropertySetInfo()->hasPropertyByName(PROPERTY_APPLYORDER) )
_xProp->setPropertyValue(PROPERTY_APPLYORDER,Any(m_bApplyOrder));
_xProp->setPropertyValue(PROPERTY_ORDER,Any(m_sOrderStatement));
}
}
catch(Exception&)
{
TOOLS_WARN_EXCEPTION( "dbaccess", "OXMLTable::EndElement -> exception caught");
}
}
void OXMLTable::endFastElement(sal_Int32 )
{
uno::Reference<XNameContainer> xNameContainer(m_xParentContainer,UNO_QUERY);
if ( !xNameContainer.is() )
return;
try
{
if ( m_xTable.is() )
{
setProperties(m_xTable);
if ( !m_sStyleName.isEmpty() )
{
const SvXMLStylesContext* pAutoStyles = GetOwnImport().GetAutoStyles();
if ( pAutoStyles )
{
OTableStyleContext* pAutoStyle = const_cast<OTableStyleContext*>(dynamic_cast< const OTableStyleContext* >(pAutoStyles->FindStyleChildContext(XmlStyleFamily::TABLE_TABLE,m_sStyleName)));
if ( pAutoStyle )
{
pAutoStyle->FillPropertySet(m_xTable);
}
}
}
xNameContainer->insertByName(m_sName,Any(m_xTable));
}
}
catch(Exception&)
{
TOOLS_WARN_EXCEPTION( "dbaccess", "OXMLQuery::EndElement");
}
}
void OXMLTable::fillAttributes(const uno::Reference< XFastAttributeList > & _xAttrList
,OUString& _rsCommand
,OUString& _rsTableName
,OUString& _rsTableSchema
,OUString& _rsTableCatalog
)
{
for (auto &aIter : sax_fastparser::castToFastAttributeList( _xAttrList ))
{
OUString sValue = aIter.toString();
switch( aIter.getToken() & TOKEN_MASK )
{
case XML_COMMAND:
_rsCommand = sValue;
break;
case XML_CATALOG_NAME:
_rsTableCatalog = sValue;
break;
case XML_SCHEMA_NAME:
_rsTableSchema = sValue;
break;
case XML_QUERY_NAME:
_rsTableName = sValue;
break;
default:
XMLOFF_WARN_UNKNOWN("dbaccess", aIter);
}
}
}
} // namespace dbaxml
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|