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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* 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 "SchemaRestrictionContext.hxx"
#include "xformsapi.hxx"
#include <xmloff/xmltoken.hxx>
#include <xmloff/nmspmap.hxx>
#include <xmloff/xmlnmspe.hxx>
#include <xmloff/xmltkmap.hxx>
#include <xmloff/xmlimp.hxx>
#include <sax/tools/converter.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/uno/Type.hxx>
#include <com/sun/star/util/Date.hpp>
#include <com/sun/star/util/Time.hpp>
#include <com/sun/star/util/DateTime.hpp>
#include <com/sun/star/util/Duration.hpp>
#include <com/sun/star/xforms/XDataTypeRepository.hpp>
#include <com/sun/star/xsd/DataTypeClass.hpp>
#include <com/sun/star/xsd/WhiteSpaceTreatment.hpp>
#include <tools/debug.hxx>
using rtl::OUString;
using com::sun::star::uno::Reference;
using com::sun::star::uno::Exception;
using com::sun::star::uno::Any;
using com::sun::star::uno::makeAny;
using com::sun::star::uno::UNO_QUERY;
using com::sun::star::util::Date;
using com::sun::star::util::DateTime;
using com::sun::star::util::Duration;
using com::sun::star::xml::sax::XAttributeList;
using com::sun::star::beans::XPropertySet;
using com::sun::star::beans::XPropertySetInfo;
using com::sun::star::xforms::XDataTypeRepository;
using namespace xmloff::token;
static SvXMLTokenMapEntry aAttributes[] =
{
TOKEN_MAP_ENTRY( NONE, BASE ),
XML_TOKEN_MAP_END
};
static SvXMLTokenMapEntry aChildren[] =
{
TOKEN_MAP_ENTRY( XSD, LENGTH ),
TOKEN_MAP_ENTRY( XSD, MINLENGTH ),
TOKEN_MAP_ENTRY( XSD, MAXLENGTH ),
TOKEN_MAP_ENTRY( XSD, MININCLUSIVE ),
TOKEN_MAP_ENTRY( XSD, MINEXCLUSIVE ),
TOKEN_MAP_ENTRY( XSD, MAXINCLUSIVE ),
TOKEN_MAP_ENTRY( XSD, MAXEXCLUSIVE ),
TOKEN_MAP_ENTRY( XSD, PATTERN ),
// ??? XML_ENUMERATION
TOKEN_MAP_ENTRY( XSD, WHITESPACE ),
TOKEN_MAP_ENTRY( XSD, TOTALDIGITS ),
TOKEN_MAP_ENTRY( XSD, FRACTIONDIGITS ),
XML_TOKEN_MAP_END
};
SchemaRestrictionContext::SchemaRestrictionContext(
SvXMLImport& rImport,
sal_uInt16 nPrefix,
const OUString& rLocalName,
Reference<com::sun::star::xforms::XDataTypeRepository>& rRepository,
const OUString& sTypeName ) :
TokenContext( rImport, nPrefix, rLocalName, aAttributes, aChildren ),
mxRepository( rRepository ),
msTypeName( sTypeName ),
msBaseName()
{
DBG_ASSERT( mxRepository.is(), "need repository" );
}
SchemaRestrictionContext::~SchemaRestrictionContext()
{
}
void SchemaRestrictionContext::CreateDataType()
{
// only do something if we don't have a data type already
if( mxDataType.is() )
return;
DBG_ASSERT( msBaseName.getLength() > 0, "no base name?" );
DBG_ASSERT( mxRepository.is(), "no repository?" );
try
{
mxDataType =
Reference<XPropertySet>(
mxRepository->cloneDataType(
lcl_getBasicTypeName( mxRepository,
GetImport().GetNamespaceMap(),
msBaseName ),
msTypeName ),
UNO_QUERY );
}
catch( const Exception& )
{
OSL_FAIL( "exception during type creation" );
}
DBG_ASSERT( mxDataType.is(), "can't create type" );
}
void SchemaRestrictionContext::HandleAttribute(
sal_uInt16 nToken,
const OUString& rValue )
{
if( nToken == XML_BASE )
{
msBaseName = rValue;
}
}
typedef Any (*convert_t)( const OUString& );
Any lcl_string( const OUString& rValue )
{
return makeAny( rValue );
}
Any lcl_int32( const OUString& rValue )
{
sal_Int32 nValue;
bool bSuccess = ::sax::Converter::convertNumber( nValue, rValue );
return bSuccess ? makeAny( nValue ) : Any();
}
Any lcl_int16( const OUString& rValue )
{
sal_Int32 nValue;
bool bSuccess = ::sax::Converter::convertNumber( nValue, rValue );
return bSuccess ? makeAny( static_cast<sal_Int16>( nValue ) ) : Any();
}
Any lcl_whitespace( const OUString& rValue )
{
Any aValue;
if( IsXMLToken( rValue, XML_PRESERVE ) )
aValue <<= com::sun::star::xsd::WhiteSpaceTreatment::Preserve;
else if( IsXMLToken( rValue, XML_REPLACE ) )
aValue <<= com::sun::star::xsd::WhiteSpaceTreatment::Replace;
else if( IsXMLToken( rValue, XML_COLLAPSE ) )
aValue <<= com::sun::star::xsd::WhiteSpaceTreatment::Collapse;
return aValue;
}
Any lcl_double( const OUString& rValue )
{
double fValue;
bool bSuccess = ::sax::Converter::convertDouble( fValue, rValue );
return bSuccess ? makeAny( fValue ) : Any();
}
Any lcl_date( const OUString& rValue )
{
Any aAny;
// parse ISO date
sal_Int32 nPos1 = rValue.indexOf( sal_Unicode('-') );
sal_Int32 nPos2 = rValue.indexOf( sal_Unicode('-'), nPos1 + 1 );
if( nPos1 > 0 && nPos2 > 0 )
{
Date aDate;
aDate.Year = static_cast<sal_uInt16>(
rValue.copy( 0, nPos1 ).toInt32() );
aDate.Month = static_cast<sal_uInt16>(
rValue.copy( nPos1 + 1, nPos2 - nPos1 - 1 ).toInt32() );
aDate.Day = static_cast<sal_uInt16>(
rValue.copy( nPos2 + 1 ).toInt32() );
aAny <<= aDate;
}
return aAny;
}
Any lcl_dateTime( const OUString& rValue )
{
DateTime aDateTime;
bool const bSuccess = ::sax::Converter::convertDateTime(aDateTime, rValue);
return bSuccess ? makeAny( aDateTime ) : Any();
}
Any lcl_time( const OUString& rValue )
{
Any aAny;
Duration aDuration;
if (::sax::Converter::convertDuration( aDuration, rValue ))
{
com::sun::star::util::Time aTime;
aTime.Hours = aDuration.Hours;
aTime.Minutes = aDuration.Minutes;
aTime.Seconds = aDuration.Seconds;
aTime.HundredthSeconds = aDuration.MilliSeconds / 10;
aAny <<= aTime;
}
return aAny;
}
SvXMLImportContext* SchemaRestrictionContext::HandleChild(
sal_uInt16 nToken,
sal_uInt16 nPrefix,
const OUString& rLocalName,
const Reference<XAttributeList>& xAttrList )
{
// find value
OUString sValue;
sal_Int16 nLength = xAttrList->getLength();
for( sal_Int16 n = 0; n < nLength; n++ )
{
if( IsXMLToken( xAttrList->getNameByIndex( n ), XML_VALUE ) )
sValue = xAttrList->getValueByIndex( n );
}
// determine property name + suitable converter
OUString sPropertyName;
convert_t pConvert = NULL;
switch( nToken )
{
case XML_LENGTH:
sPropertyName = OUString(RTL_CONSTASCII_USTRINGPARAM("Length"));
pConvert = &lcl_int32;
break;
case XML_MINLENGTH:
sPropertyName = OUString(RTL_CONSTASCII_USTRINGPARAM("MinLength"));
pConvert = &lcl_int32;
break;
case XML_MAXLENGTH:
sPropertyName = OUString(RTL_CONSTASCII_USTRINGPARAM("MaxLength"));
pConvert = &lcl_int32;
break;
case XML_TOTALDIGITS:
sPropertyName = OUString(RTL_CONSTASCII_USTRINGPARAM("TotalDigits"));
pConvert = &lcl_int32;
break;
case XML_FRACTIONDIGITS:
sPropertyName =OUString(RTL_CONSTASCII_USTRINGPARAM("FractionDigits"));
pConvert = &lcl_int32;
break;
case XML_PATTERN:
sPropertyName = OUString(RTL_CONSTASCII_USTRINGPARAM("Pattern"));
pConvert = &lcl_string;
break;
case XML_WHITESPACE:
sPropertyName = OUString(RTL_CONSTASCII_USTRINGPARAM("WhiteSpace"));
pConvert = &lcl_whitespace;
break;
case XML_MININCLUSIVE:
case XML_MINEXCLUSIVE:
case XML_MAXINCLUSIVE:
case XML_MAXEXCLUSIVE:
{
// these attributes are mapped to different properties.
// To determine the property name, we use an attribute
// dependent prefix and a type dependent suffix. The
// converter is only type dependent.
// first, attribute-dependent prefix
switch( nToken )
{
case XML_MININCLUSIVE:
sPropertyName = OUString(RTL_CONSTASCII_USTRINGPARAM("MinInclusive"));
break;
case XML_MINEXCLUSIVE:
sPropertyName = OUString(RTL_CONSTASCII_USTRINGPARAM("MinExclusive"));
break;
case XML_MAXINCLUSIVE:
sPropertyName = OUString(RTL_CONSTASCII_USTRINGPARAM("MaxInclusive"));
break;
case XML_MAXEXCLUSIVE:
sPropertyName = OUString(RTL_CONSTASCII_USTRINGPARAM("MaxExclusive"));
break;
}
// second, type-dependent suffix + converter
switch( lcl_getTypeClass( mxRepository,
GetImport().GetNamespaceMap(),
msBaseName ) )
{
case com::sun::star::xsd::DataTypeClass::DECIMAL:
case com::sun::star::xsd::DataTypeClass::DOUBLE:
case com::sun::star::xsd::DataTypeClass::FLOAT:
sPropertyName += OUString(RTL_CONSTASCII_USTRINGPARAM("Double"));
pConvert = &lcl_double;
break;
case com::sun::star::xsd::DataTypeClass::DATETIME:
sPropertyName += OUString(RTL_CONSTASCII_USTRINGPARAM("DateTime"));
pConvert = &lcl_dateTime;
break;
case com::sun::star::xsd::DataTypeClass::DATE:
sPropertyName += OUString(RTL_CONSTASCII_USTRINGPARAM("Date"));
pConvert = &lcl_date;
break;
case com::sun::star::xsd::DataTypeClass::TIME:
sPropertyName += OUString(RTL_CONSTASCII_USTRINGPARAM("Time"));
pConvert = &lcl_time;
break;
case com::sun::star::xsd::DataTypeClass::gYear:
case com::sun::star::xsd::DataTypeClass::gDay:
case com::sun::star::xsd::DataTypeClass::gMonth:
sPropertyName += OUString(RTL_CONSTASCII_USTRINGPARAM("Int"));
pConvert = &lcl_int16;
break;
case com::sun::star::xsd::DataTypeClass::STRING:
case com::sun::star::xsd::DataTypeClass::anyURI:
case com::sun::star::xsd::DataTypeClass::BOOLEAN:
// invalid: These shouldn't have min/max-inclusive
break;
/* data types not yet supported:
case com::sun::star::xsd::DataTypeClass::DURATION:
case com::sun::star::xsd::DataTypeClass::gYearMonth:
case com::sun::star::xsd::DataTypeClass::gMonthDay:
case com::sun::star::xsd::DataTypeClass::hexBinary:
case com::sun::star::xsd::DataTypeClass::base64Binary:
case com::sun::star::xsd::DataTypeClass::QName:
case com::sun::star::xsd::DataTypeClass::NOTATION:
*/
}
}
break;
default:
OSL_FAIL( "unknown facet" );
}
// finally, set the property
CreateDataType();
if( mxDataType.is()
&& sPropertyName.getLength() > 0
&& pConvert != NULL
&& mxDataType->getPropertySetInfo()->hasPropertyByName(sPropertyName) )
{
try
{
mxDataType->setPropertyValue( sPropertyName, pConvert( sValue ) );
}
catch( const Exception& )
{
; // can't set property? Then ignore.
}
}
return new SvXMLImportContext( GetImport(), nPrefix, rLocalName );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|