summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-06-25 10:57:23 +0000
committerKurt Zenker <kz@openoffice.org>2008-06-25 10:57:23 +0000
commitd3ec666a15b5efcf1345ec9ae998aa1a800e76bc (patch)
treea9a91125e0fd2820589d7e0aa1e793ed0a744a42 /forms
parent4b75a3c386fd8e353513043f9cd129f28b31732f (diff)
INTEGRATION: CWS dba30d (1.45.10); FILE MERGED
2008/05/28 19:17:23 fs 1.45.10.2: #i87514# don't updateNull if the field we're bound to is not NULLABLE 2008/05/27 12:28:02 fs 1.45.10.1: #i89657# refactoring, so that our binding's getValue is only called when our mutex is not locked
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/FormattedField.cxx182
1 files changed, 80 insertions, 102 deletions
diff --git a/forms/source/component/FormattedField.cxx b/forms/source/component/FormattedField.cxx
index fa21c0e17fd1..263a64ef4a87 100644
--- a/forms/source/component/FormattedField.cxx
+++ b/forms/source/component/FormattedField.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: FormattedField.cxx,v $
- * $Revision: 1.45 $
+ * $Revision: 1.46 $
*
* This file is part of OpenOffice.org.
*
@@ -68,6 +68,9 @@
#include <cppuhelper/weakref.hxx>
#include <unotools/desktopterminationobserver.hxx>
+#include <list>
+#include <algorithm>
+
using namespace dbtools;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::sdb;
@@ -574,15 +577,24 @@ void OFormattedModel::_propertyChanged( const com::sun::star::beans::PropertyCha
{
try
{
- Reference<XNumberFormatsSupplier> xSupplier(calcFormatsSupplier());
- m_nKeyType = getNumberFormatType(xSupplier->getNumberFormats(), getINT32(evt.NewValue));
+ ::osl::MutexGuard aGuard( m_aMutex );
+
+ Reference<XNumberFormatsSupplier> xSupplier( calcFormatsSupplier() );
+ m_nKeyType = getNumberFormatType(xSupplier->getNumberFormats(), getINT32( evt.NewValue ) );
+
// as m_aSaveValue (which is used by commitControlValueToDbColumn) is format dependent we have
// to recalc it, which is done by translateDbColumnToControlValue
if ( m_xColumn.is() && m_xAggregateFastSet.is() )
{
- ::osl::MutexGuard aGuard( m_aMutex ); // setControlValue expects that
setControlValue( translateDbColumnToControlValue(), eOther );
}
+
+ // if we're connected to an external value binding, then re-calculate the type
+ // used to exchange the value - it depends on the format, too
+ if ( hasExternalValueBinding() )
+ {
+ calculateExternalValueType();
+ }
}
catch(Exception&)
{
@@ -1027,6 +1039,7 @@ sal_Bool OFormattedModel::commitControlValueToDbColumn( bool /*_bPostReset*/ )
|| ( ( aControlValue.getValueType().getTypeClass() == TypeClass_STRING )
&& ( getString( aControlValue ).getLength() == 0 )
&& m_bEmptyIsNull
+ && !isRequired()
)
)
m_xColumnUpdate->updateNull();
@@ -1063,112 +1076,57 @@ void OFormattedModel::onConnectedExternalValue( )
}
//------------------------------------------------------------------------------
-Type OFormattedModel::getExternalValueType() const
+Any OFormattedModel::translateExternalValueToControlValue( const Any& _rExternalValue ) const
{
- OSL_PRECOND( hasExternalValueBinding(),
- "OFormattedModel::getExternalValueType: There *is* no binding!" );
-
- Type aExchangeType( ::getCppuType( static_cast< double* >( NULL ) ) );
-
- Type aPreferredType;
- if ( hasExternalValueBinding() )
+ Any aControlValue;
+ switch( _rExternalValue.getValueTypeClass() )
{
- switch ( m_nKeyType & ~NumberFormat::DEFINED )
- {
- case NumberFormat::DATE:
- aPreferredType = ::getCppuType( static_cast< UNODate* >( NULL ) );
- break;
- case NumberFormat::TIME:
- aPreferredType = ::getCppuType( static_cast< UNOTime* >( NULL ) );
- break;
- case NumberFormat::DATETIME:
- aPreferredType = ::getCppuType( static_cast< UNODateTime* >( NULL ) );
- break;
-
- case NumberFormat::TEXT:
- aPreferredType = ::getCppuType( static_cast< ::rtl::OUString* >( NULL ) );
- break;
-
- case NumberFormat::LOGICAL:
- aPreferredType = ::getCppuType( static_cast< sal_Bool* >( NULL ) );
- break;
+ case TypeClass_VOID:
+ break;
- case NumberFormat::CURRENCY:
- case NumberFormat::NUMBER:
- case NumberFormat::SCIENTIFIC:
- case NumberFormat::FRACTION:
- case NumberFormat::PERCENT:
- // no need to change the default "double"
- break;
- }
+ case TypeClass_STRING:
+ aControlValue = _rExternalValue;
+ break;
- if ( aPreferredType.getTypeClass() != TypeClass_VOID )
- {
- if ( getExternalValueBinding()->supportsType( aPreferredType ) )
- aExchangeType = aPreferredType;
- }
+ case TypeClass_BOOLEAN:
+ {
+ sal_Bool bExternalValue = sal_False;
+ _rExternalValue >>= bExternalValue;
+ aControlValue <<= (double)( bExternalValue ? 1 : 0 );
}
- return aExchangeType;
-}
-
-//------------------------------------------------------------------------------
-Any OFormattedModel::translateExternalValueToControlValue( ) const
-{
- OSL_PRECOND( hasExternalValueBinding(),
- "OFormattedModel::translateExternalValueToControlValue: precondition not met!" );
+ break;
- Any aControlValue;
- if ( hasExternalValueBinding() )
+ default:
{
- Any aExternalValue = getExternalValueBinding()->getValue( getExternalValueType() );
- switch( aExternalValue.getValueTypeClass() )
+ if ( _rExternalValue.getValueType().equals( ::getCppuType( static_cast< UNODate* >( NULL ) ) ) )
{
- case TypeClass_VOID:
- break;
-
- case TypeClass_STRING:
- aControlValue = aExternalValue;
- break;
-
- case TypeClass_BOOLEAN:
+ UNODate aDate;
+ _rExternalValue >>= aDate;
+ aControlValue <<= DBTypeConversion::toDouble( aDate, m_aNullDate );
+ }
+ else if ( _rExternalValue.getValueType().equals( ::getCppuType( static_cast< UNOTime* >( NULL ) ) ) )
{
- sal_Bool bExternalValue = sal_False;
- aExternalValue >>= bExternalValue;
- aControlValue <<= (double)( bExternalValue ? 1 : 0 );
+ UNOTime aTime;
+ _rExternalValue >>= aTime;
+ aControlValue <<= DBTypeConversion::toDouble( aTime );
}
- break;
-
- default:
+ else if ( _rExternalValue.getValueType().equals( ::getCppuType( static_cast< UNODateTime* >( NULL ) ) ) )
{
- if ( aExternalValue.getValueType().equals( ::getCppuType( static_cast< UNODate* >( NULL ) ) ) )
- {
- UNODate aDate;
- aExternalValue >>= aDate;
- aControlValue <<= DBTypeConversion::toDouble( aDate, m_aNullDate );
- }
- else if ( aExternalValue.getValueType().equals( ::getCppuType( static_cast< UNOTime* >( NULL ) ) ) )
- {
- UNOTime aTime;
- aExternalValue >>= aTime;
- aControlValue <<= DBTypeConversion::toDouble( aTime );
- }
- else if ( aExternalValue.getValueType().equals( ::getCppuType( static_cast< UNODateTime* >( NULL ) ) ) )
- {
- UNODateTime aDateTime;
- aExternalValue >>= aDateTime;
- aControlValue <<= DBTypeConversion::toDouble( aDateTime, m_aNullDate );
- }
- else
- {
- OSL_ENSURE( aExternalValue.getValueTypeClass() == TypeClass_DOUBLE,
- "OFormattedModel::translateExternalValueToControlValue: don't know how to translate this type!" );
- double fValue = 0;
- OSL_VERIFY( aExternalValue >>= fValue );
- aControlValue <<= fValue;
- }
+ UNODateTime aDateTime;
+ _rExternalValue >>= aDateTime;
+ aControlValue <<= DBTypeConversion::toDouble( aDateTime, m_aNullDate );
}
+ else
+ {
+ OSL_ENSURE( _rExternalValue.getValueTypeClass() == TypeClass_DOUBLE,
+ "OFormattedModel::translateExternalValueToControlValue: don't know how to translate this type!" );
+ double fValue = 0;
+ OSL_VERIFY( _rExternalValue >>= fValue );
+ aControlValue <<= fValue;
}
}
+ }
+
return aControlValue;
}
@@ -1256,14 +1214,34 @@ Any OFormattedModel::translateDbColumnToControlValue()
return m_aSaveValue;
}
-//------------------------------------------------------------------------------
-sal_Bool OFormattedModel::approveValueBinding( const Reference< XValueBinding >& _rxBinding )
+// -----------------------------------------------------------------------------
+Sequence< Type > OFormattedModel::getSupportedBindingTypes()
{
- OSL_PRECOND( _rxBinding.is(), "OFormattedModel::approveValueBinding: invalid binding!" );
+ ::std::list< Type > aTypes;
+ aTypes.push_back( ::getCppuType( static_cast< double* >( NULL ) ) );
+
+ switch ( m_nKeyType & ~NumberFormat::DEFINED )
+ {
+ case NumberFormat::DATE:
+ aTypes.push_front(::getCppuType( static_cast< UNODate* >( NULL ) ) );
+ break;
+ case NumberFormat::TIME:
+ aTypes.push_front(::getCppuType( static_cast< UNOTime* >( NULL ) ) );
+ break;
+ case NumberFormat::DATETIME:
+ aTypes.push_front(::getCppuType( static_cast< UNODateTime* >( NULL ) ) );
+ break;
+ case NumberFormat::TEXT:
+ aTypes.push_front(::getCppuType( static_cast< ::rtl::OUString* >( NULL ) ) );
+ break;
+ case NumberFormat::LOGICAL:
+ aTypes.push_front(::getCppuType( static_cast< sal_Bool* >( NULL ) ) );
+ break;
+ }
- // only strings are accepted for simplicity
- return _rxBinding.is()
- && _rxBinding->supportsType( ::getCppuType( static_cast< double* >( NULL ) ) );
+ Sequence< Type > aTypesRet( aTypes.size() );
+ ::std::copy( aTypes.begin(), aTypes.end(), aTypesRet.getArray() );
+ return aTypesRet;
}
//------------------------------------------------------------------------------