summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/xsddatatypes.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/propctrlr/xsddatatypes.cxx')
-rw-r--r--extensions/source/propctrlr/xsddatatypes.cxx252
1 files changed, 252 insertions, 0 deletions
diff --git a/extensions/source/propctrlr/xsddatatypes.cxx b/extensions/source/propctrlr/xsddatatypes.cxx
new file mode 100644
index 000000000000..c536c6f98f9a
--- /dev/null
+++ b/extensions/source/propctrlr/xsddatatypes.cxx
@@ -0,0 +1,252 @@
+/* -*- 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.
+ *
+ ************************************************************************/
+
+// MARKER(update_precomp.py): autogen include statement, do not remove
+#include "precompiled_extensions.hxx"
+#include "xsddatatypes.hxx"
+#include "formstrings.hxx"
+
+/** === begin UNO includes === **/
+#include <com/sun/star/xsd/DataTypeClass.hpp>
+#include <com/sun/star/xsd/XDataType.hpp>
+#include <com/sun/star/beans/XPropertySet.hpp>
+/** === end UNO includes === **/
+#include <tools/debug.hxx>
+
+//........................................................................
+namespace pcr
+{
+//........................................................................
+
+ using namespace ::com::sun::star::uno;
+ using namespace ::com::sun::star::xsd;
+ using namespace ::com::sun::star::beans;
+
+ //====================================================================
+ //= helper
+ //====================================================================
+ //--------------------------------------------------------------------
+ template< typename INTERFACE, typename ARGUMENT >
+ void setSave( INTERFACE* pObject, void ( SAL_CALL INTERFACE::*pSetter )( ARGUMENT ), ARGUMENT _rArg )
+ {
+ try
+ {
+ (pObject->*pSetter)( _rArg );
+ }
+ catch( const Exception& )
+ {
+ OSL_FAIL( "XSDDataType: setSave: caught an exception!" );
+ }
+ }
+
+ //--------------------------------------------------------------------
+ template< typename INTERFACE, typename ARGUMENT >
+ ARGUMENT getSave( INTERFACE* pObject, ARGUMENT ( SAL_CALL INTERFACE::*pGetter )( ) )
+ {
+ ARGUMENT aReturn = ARGUMENT();
+ try
+ {
+ aReturn = (pObject->*pGetter)( );
+ }
+ catch( const Exception& )
+ {
+ OSL_FAIL( "XSDDataType: getSave: caught an exception!" );
+ }
+ return aReturn;
+ }
+
+ template< typename FACETTYPE >
+ FACETTYPE getFacet( const Reference< XPropertySet >& _rxFacets, const ::rtl::OUString& _rFacetName ) SAL_THROW(())
+ {
+ FACETTYPE aReturn;
+ try
+ {
+ OSL_VERIFY( _rxFacets->getPropertyValue( _rFacetName ) >>= aReturn );
+ }
+ catch( const Exception& )
+ {
+ OSL_FAIL( "XSDDataType: getFacet: caught an exception!" );
+ }
+ return aReturn;
+ }
+
+ //====================================================================
+ //= XSDDataType
+ //====================================================================
+ //--------------------------------------------------------------------
+ XSDDataType::XSDDataType( const Reference< XDataType >& _rxDataType )
+ :m_xDataType( _rxDataType )
+ ,m_refCount( 0 )
+ {
+ DBG_ASSERT( m_xDataType.is(), "XSDDataType::XSDDataType: invalid UNO object!" );
+ if ( m_xDataType.is() )
+ m_xFacetInfo = m_xDataType->getPropertySetInfo();
+ }
+
+ //--------------------------------------------------------------------
+ oslInterlockedCount SAL_CALL XSDDataType::acquire()
+ {
+ return osl_incrementInterlockedCount( &m_refCount );
+ }
+
+ //--------------------------------------------------------------------
+ oslInterlockedCount SAL_CALL XSDDataType::release()
+ {
+ if ( 0 == osl_decrementInterlockedCount( &m_refCount ) )
+ {
+ delete this;
+ return 0;
+ }
+ return m_refCount;
+ }
+
+ //--------------------------------------------------------------------
+ XSDDataType::~XSDDataType()
+ {
+ }
+
+ //--------------------------------------------------------------------
+ sal_Int16 XSDDataType::classify() const SAL_THROW(())
+ {
+ sal_Int16 nTypeClass = DataTypeClass::STRING;
+ try
+ {
+ if ( m_xDataType.is() )
+ nTypeClass = m_xDataType->getTypeClass();
+ }
+ catch( const Exception& )
+ {
+ OSL_FAIL( "XSDDataType::classify: caught an exception!" );
+ }
+ return nTypeClass;
+ }
+
+ //--------------------------------------------------------------------
+ bool XSDDataType::isBasicType() const SAL_THROW(())
+ {
+ return getSave( m_xDataType.get(), &XDataType::getIsBasic );
+ }
+
+ //--------------------------------------------------------------------
+ ::rtl::OUString XSDDataType::getName() const SAL_THROW(())
+ {
+ return getSave( m_xDataType.get(), &XDataType::getName );
+ }
+
+ //--------------------------------------------------------------------
+ void XSDDataType::setFacet( const ::rtl::OUString& _rFacetName, const Any& _rValue ) SAL_THROW(())
+ {
+ try
+ {
+ m_xDataType->setPropertyValue( _rFacetName, _rValue );
+ }
+ catch( const Exception& )
+ {
+ OSL_FAIL( "XSDDataType::setFacet: caught an exception - sure this is the right data type class for this property?" );
+ }
+ }
+
+ //--------------------------------------------------------------------
+ bool XSDDataType::hasFacet( const ::rtl::OUString& _rFacetName ) const SAL_THROW(())
+ {
+ bool bReturn = false;
+ try
+ {
+ bReturn = m_xFacetInfo.is() && m_xFacetInfo->hasPropertyByName( _rFacetName );
+ }
+ catch( const Exception& )
+ {
+ OSL_FAIL( "XSDDataType::hasFacet: caught an exception!" );
+ }
+ return bReturn;
+ }
+ //--------------------------------------------------------------------
+ Any XSDDataType::getFacet( const ::rtl::OUString& _rFacetName ) SAL_THROW(())
+ {
+ Any aReturn;
+ try
+ {
+ aReturn = m_xDataType->getPropertyValue( _rFacetName );
+ }
+ catch( const Exception& )
+ {
+ OSL_FAIL( "XSDDataType::getFacet: caught an exception - sure this is the right data type class for this property?" );
+ }
+ return aReturn;
+ }
+
+ //--------------------------------------------------------------------
+ namespace
+ {
+ void lcl_copyProperties( const Reference< XPropertySet >& _rxSource, const Reference< XPropertySet >& _rxDest )
+ {
+ Reference< XPropertySetInfo > xSourceInfo;
+ if ( _rxSource.is() )
+ xSourceInfo = _rxSource->getPropertySetInfo();
+ Reference< XPropertySetInfo > xDestInfo;
+ if ( _rxDest.is() )
+ xDestInfo = _rxDest->getPropertySetInfo();
+ OSL_ENSURE( xSourceInfo.is() && xDestInfo.is(), "lcl_copyProperties: invalid property set( info)s!" );
+ if ( !xSourceInfo.is() || !xDestInfo.is() )
+ return;
+
+ Sequence< Property > aProperties( xSourceInfo->getProperties() );
+ const Property* pProperties = aProperties.getConstArray();
+ const Property* pPropertiesEnd = pProperties + aProperties.getLength();
+ for ( ; pProperties != pPropertiesEnd; ++pProperties )
+ {
+ if ( xDestInfo->hasPropertyByName( pProperties->Name ) )
+ _rxDest->setPropertyValue( pProperties->Name, _rxSource->getPropertyValue( pProperties->Name ) );
+ }
+ }
+ }
+
+ //--------------------------------------------------------------------
+ void XSDDataType::copyFacetsFrom( const ::rtl::Reference< XSDDataType >& _pSourceType )
+ {
+ OSL_ENSURE( _pSourceType.is(), "XSDDataType::copyFacetsFrom: invalid source type!" );
+ if ( !_pSourceType.is() )
+ return;
+
+ try
+ {
+ Reference< XPropertySet > xSource( _pSourceType->getUnoDataType(), UNO_QUERY );
+ Reference< XPropertySet > xDest( getUnoDataType(), UNO_QUERY );
+ lcl_copyProperties( xSource, xDest );
+ }
+ catch( const Exception& )
+ {
+ OSL_FAIL( "XSDDataType::copyFacetsFrom: caught an exception!" );
+ }
+ }
+
+//........................................................................
+} // namespace pcr
+//........................................................................
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */