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
|
/* -*- 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 <sal/config.h>
#include <sal/log.hxx>
#include <map>
#include "xmlDataSourceSetting.hxx"
#include <sax/tools/converter.hxx>
#include "xmlfilter.hxx"
#include <xmloff/xmltoken.hxx>
#include <xmloff/ProgressBarHelper.hxx>
#include "xmlEnums.hxx"
#include <osl/diagnose.h>
namespace dbaxml
{
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::xml::sax;
OXMLDataSourceSetting::OXMLDataSourceSetting( ODBFilter& rImport
,const Reference< XFastAttributeList > & _xAttrList
,OXMLDataSourceSetting* _pContainer) :
SvXMLImportContext( rImport )
,m_pContainer(_pContainer)
,m_bIsList(false)
{
m_aPropType = cppu::UnoType<void>::get();
for (auto &aIter : sax_fastparser::castToFastAttributeList( _xAttrList ))
{
switch( aIter.getToken() & TOKEN_MASK )
{
case XML_DATA_SOURCE_SETTING_IS_LIST:
m_bIsList = aIter.toView() == "true";
break;
case XML_DATA_SOURCE_SETTING_TYPE:
{
// needs to be translated into a css::uno::Type
static std::map< OUString, css::uno::Type > s_aTypeNameMap = []()
{
std::map< OUString, css::uno::Type > tmp;
tmp[GetXMLToken( XML_BOOLEAN)] = cppu::UnoType<bool>::get();
// Not a copy paste error, see comment xmloff/source/forms/propertyimport.cxx lines 244-248
tmp[GetXMLToken( XML_FLOAT)] = ::cppu::UnoType<double>::get();
tmp[GetXMLToken( XML_DOUBLE)] = ::cppu::UnoType<double>::get();
tmp[GetXMLToken( XML_STRING)] = ::cppu::UnoType<OUString>::get();
tmp[GetXMLToken( XML_INT)] = ::cppu::UnoType<sal_Int32>::get();
tmp[GetXMLToken( XML_SHORT)] = ::cppu::UnoType<sal_Int16>::get();
tmp[GetXMLToken( XML_VOID)] = cppu::UnoType<void>::get();
return tmp;
}();
const std::map< OUString, css::uno::Type >::const_iterator aTypePos = s_aTypeNameMap.find(aIter.toString());
OSL_ENSURE(s_aTypeNameMap.end() != aTypePos, "OXMLDataSourceSetting::OXMLDataSourceSetting: invalid type!");
if (s_aTypeNameMap.end() != aTypePos)
m_aPropType = aTypePos->second;
}
break;
case XML_DATA_SOURCE_SETTING_NAME:
m_aSetting.Name = aIter.toString();
break;
default:
XMLOFF_WARN_UNKNOWN("dbaccess", aIter);
}
}
}
OXMLDataSourceSetting::~OXMLDataSourceSetting()
{
}
css::uno::Reference< css::xml::sax::XFastContextHandler > OXMLDataSourceSetting::createFastChildContext(
sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
{
SvXMLImportContext *pContext = nullptr;
switch( nElement & TOKEN_MASK )
{
case XML_DATA_SOURCE_SETTING:
GetOwnImport().GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP );
pContext = new OXMLDataSourceSetting( GetOwnImport(), xAttrList);
break;
case XML_DATA_SOURCE_SETTING_VALUE:
GetOwnImport().GetProgressBarHelper()->Increment( PROGRESS_BAR_STEP );
pContext = new OXMLDataSourceSetting( GetOwnImport(), xAttrList,this );
break;
}
return pContext;
}
void OXMLDataSourceSetting::endFastElement(sal_Int32 )
{
if ( !m_aSetting.Name.isEmpty() )
{
if ( m_bIsList && m_aInfoSequence.hasElements() )
m_aSetting.Value <<= m_aInfoSequence;
// if our property is of type string, but was empty, ensure that
// we don't add a VOID value
if ( !m_bIsList && ( m_aPropType.getTypeClass() == TypeClass_STRING ) && !m_aSetting.Value.hasValue() )
m_aSetting.Value <<= OUString();
GetOwnImport().addInfo(m_aSetting);
}
}
void OXMLDataSourceSetting::characters( const OUString& rChars )
{
if ( m_pContainer )
m_pContainer->addValue(rChars);
}
void OXMLDataSourceSetting::addValue(const OUString& _sValue)
{
Any aValue;
if( TypeClass_VOID != m_aPropType.getTypeClass() )
aValue = convertString(m_aPropType, _sValue);
if ( !m_bIsList )
m_aSetting.Value = std::move(aValue);
else
{
sal_Int32 nPos = m_aInfoSequence.getLength();
m_aInfoSequence.realloc(nPos+1);
m_aInfoSequence.getArray()[nPos] = std::move(aValue);
}
}
ODBFilter& OXMLDataSourceSetting::GetOwnImport()
{
return static_cast<ODBFilter&>(GetImport());
}
Any OXMLDataSourceSetting::convertString(const css::uno::Type& _rExpectedType, const OUString& _rReadCharacters)
{
Any aReturn;
switch (_rExpectedType.getTypeClass())
{
case TypeClass_BOOLEAN: // sal_Bool
{
bool bValue(false);
bool const bSuccess =
::sax::Converter::convertBool(bValue, _rReadCharacters);
SAL_WARN_IF(!bSuccess, "dbaccess",
"OXMLDataSourceSetting::convertString: could not convert \""
<< _rReadCharacters << "\" into a boolean!");
aReturn <<= bValue;
}
break;
case TypeClass_SHORT: // sal_Int16
{ // it's a real int16 property
sal_Int32 nValue(0);
bool const bSuccess =
::sax::Converter::convertNumber(nValue, _rReadCharacters,
SAL_MIN_INT16, SAL_MAX_INT16);
SAL_WARN_IF(!bSuccess, "dbaccess",
"OXMLDataSourceSetting::convertString: could not convert \""
<< _rReadCharacters << "\" into a sal_Int16!");
aReturn <<= static_cast<sal_Int16>(nValue);
break;
}
case TypeClass_LONG: // sal_Int32
{ // it's a real int32 property
sal_Int32 nValue(0);
bool const bSuccess =
::sax::Converter::convertNumber(nValue, _rReadCharacters);
SAL_WARN_IF(!bSuccess, "dbaccess",
"OXMLDataSourceSetting::convertString: could not convert \""
<< _rReadCharacters << "\" into a sal_Int32!");
aReturn <<= nValue;
break;
}
case TypeClass_HYPER:
{
OSL_FAIL("OXMLDataSourceSetting::convertString: 64-bit integers not implemented yet!");
}
break;
case TypeClass_DOUBLE:
{
double nValue = 0.0;
bool const bSuccess =
::sax::Converter::convertDouble(nValue, _rReadCharacters);
SAL_WARN_IF(!bSuccess, "dbaccess",
"OXMLDataSourceSetting::convertString: could not convert \""
<< _rReadCharacters << "\" into a double!");
aReturn <<= nValue;
}
break;
case TypeClass_STRING:
aReturn <<= _rReadCharacters;
break;
default:
SAL_WARN("dbaccess",
"OXMLDataSourceSetting::convertString: invalid type class!");
}
return aReturn;
}
} // namespace dbaxml
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|