Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "eformshelper.hxx"
21 : #include "formstrings.hxx"
22 : #include "formresid.hrc"
23 : #include "modulepcr.hxx"
24 : #include "propeventtranslation.hxx"
25 : #include "formbrowsertools.hxx"
26 :
27 : #include <com/sun/star/lang/XServiceInfo.hpp>
28 : #include <com/sun/star/form/FormComponentType.hpp>
29 : #include <com/sun/star/xforms/XFormsUIHelper1.hpp>
30 : #include <com/sun/star/xsd/DataTypeClass.hpp>
31 : #include <com/sun/star/form/binding/XListEntrySink.hpp>
32 : #include <tools/diagnose_ex.h>
33 : #include <rtl/ustrbuf.hxx>
34 :
35 : #include <functional>
36 : #include <algorithm>
37 : #include <o3tl/compat_functional.hxx>
38 :
39 :
40 : namespace pcr
41 : {
42 :
43 :
44 : using namespace ::com::sun::star;
45 : using namespace ::com::sun::star::uno;
46 : using namespace ::com::sun::star::beans;
47 : using namespace ::com::sun::star::container;
48 : using namespace ::com::sun::star::form::binding;
49 : using namespace ::com::sun::star::xsd;
50 : using namespace ::com::sun::star::lang;
51 : using namespace ::com::sun::star::form;
52 :
53 :
54 : //= file-local helpers
55 :
56 : namespace
57 : {
58 :
59 0 : OUString composeModelElementUIName( const OUString& _rModelName, const OUString& _rElementName )
60 : {
61 0 : OUStringBuffer aBuffer;
62 0 : aBuffer.appendAscii( "[" );
63 0 : aBuffer.append( _rModelName );
64 0 : aBuffer.appendAscii( "] " );
65 0 : aBuffer.append( _rElementName );
66 0 : return aBuffer.makeStringAndClear();
67 : }
68 : }
69 :
70 :
71 : //= EFormsHelper
72 :
73 :
74 0 : EFormsHelper::EFormsHelper( ::osl::Mutex& _rMutex, const Reference< XPropertySet >& _rxControlModel, const Reference< frame::XModel >& _rxContextDocument )
75 : :m_xControlModel( _rxControlModel )
76 0 : ,m_aPropertyListeners( _rMutex )
77 : {
78 : OSL_ENSURE( _rxControlModel.is(), "EFormsHelper::EFormsHelper: invalid control model!" );
79 0 : m_xBindableControl.set(_rxControlModel, css::uno::UNO_QUERY);
80 :
81 0 : m_xDocument.set(_rxContextDocument, css::uno::UNO_QUERY);
82 : OSL_ENSURE( m_xDocument.is(), "EFormsHelper::EFormsHelper: invalid document!" );
83 :
84 0 : }
85 :
86 :
87 0 : bool EFormsHelper::isEForm( const Reference< frame::XModel >& _rxContextDocument )
88 : {
89 : try
90 : {
91 0 : Reference< xforms::XFormsSupplier > xDocument( _rxContextDocument, UNO_QUERY );
92 0 : if ( !xDocument.is() )
93 0 : return false;
94 :
95 0 : return xDocument->getXForms().is();
96 : }
97 0 : catch( const Exception& )
98 : {
99 : OSL_FAIL( "EFormsHelper::isEForm: caught an exception!" );
100 : }
101 0 : return false;
102 : }
103 :
104 :
105 0 : bool EFormsHelper::canBindToDataType( sal_Int32 _nDataType ) const
106 : {
107 0 : if ( !m_xBindableControl.is() )
108 : // cannot bind at all
109 0 : return false;
110 :
111 : // some types cannot be bound, independent from the control type
112 0 : if ( ( DataTypeClass::hexBinary == _nDataType )
113 0 : || ( DataTypeClass::base64Binary == _nDataType )
114 0 : || ( DataTypeClass::QName == _nDataType )
115 0 : || ( DataTypeClass::NOTATION == _nDataType )
116 : )
117 0 : return false;
118 :
119 0 : bool bCan = false;
120 : try
121 : {
122 : // classify the control model
123 0 : sal_Int16 nControlType = FormComponentType::CONTROL;
124 0 : OSL_VERIFY( m_xControlModel->getPropertyValue( PROPERTY_CLASSID ) >>= nControlType );
125 :
126 : // some lists
127 0 : sal_Int16 nNumericCompatibleTypes[] = { DataTypeClass::DECIMAL, DataTypeClass::FLOAT, DataTypeClass::DOUBLE, 0 };
128 0 : sal_Int16 nDateCompatibleTypes[] = { DataTypeClass::DATE, 0 };
129 0 : sal_Int16 nTimeCompatibleTypes[] = { DataTypeClass::TIME, 0 };
130 0 : sal_Int16 nCheckboxCompatibleTypes[] = { DataTypeClass::BOOLEAN, DataTypeClass::STRING, DataTypeClass::anyURI, 0 };
131 0 : sal_Int16 nRadiobuttonCompatibleTypes[] = { DataTypeClass::STRING, DataTypeClass::anyURI, 0 };
132 0 : sal_Int16 nFormattedCompatibleTypes[] = { DataTypeClass::DECIMAL, DataTypeClass::FLOAT, DataTypeClass::DOUBLE, DataTypeClass::DATETIME, DataTypeClass::DATE, DataTypeClass::TIME, 0 };
133 :
134 0 : sal_Int16* pCompatibleTypes = NULL;
135 0 : switch ( nControlType )
136 : {
137 : case FormComponentType::SPINBUTTON:
138 : case FormComponentType::NUMERICFIELD:
139 0 : pCompatibleTypes = nNumericCompatibleTypes;
140 0 : break;
141 : case FormComponentType::DATEFIELD:
142 0 : pCompatibleTypes = nDateCompatibleTypes;
143 0 : break;
144 : case FormComponentType::TIMEFIELD:
145 0 : pCompatibleTypes = nTimeCompatibleTypes;
146 0 : break;
147 : case FormComponentType::CHECKBOX:
148 0 : pCompatibleTypes = nCheckboxCompatibleTypes;
149 0 : break;
150 : case FormComponentType::RADIOBUTTON:
151 0 : pCompatibleTypes = nRadiobuttonCompatibleTypes;
152 0 : break;
153 :
154 : case FormComponentType::TEXTFIELD:
155 : {
156 : // both the normal text field, and the formatted field, claim to be a TEXTFIELD
157 : // need to distinguish by service name
158 0 : Reference< XServiceInfo > xSI( m_xControlModel, UNO_QUERY );
159 : OSL_ENSURE( xSI.is(), "EFormsHelper::canBindToDataType: a control model which has no service info?" );
160 0 : if ( xSI.is() )
161 : {
162 0 : if ( xSI->supportsService( SERVICE_COMPONENT_FORMATTEDFIELD ) )
163 : {
164 0 : pCompatibleTypes = nFormattedCompatibleTypes;
165 0 : break;
166 : }
167 0 : }
168 : // NO break here!
169 : }
170 : case FormComponentType::LISTBOX:
171 : case FormComponentType::COMBOBOX:
172 : // edit fields and list/combo boxes can be bound to anything
173 0 : bCan = true;
174 : }
175 :
176 0 : if ( !bCan && pCompatibleTypes )
177 : {
178 0 : if ( _nDataType == -1 )
179 : {
180 : // the control can be bound to at least one type, and exactly this is being asked for
181 0 : bCan = true;
182 : }
183 : else
184 : {
185 0 : while ( *pCompatibleTypes && !bCan )
186 0 : bCan = ( *pCompatibleTypes++ == _nDataType );
187 : }
188 : }
189 : }
190 0 : catch( const Exception& )
191 : {
192 : OSL_FAIL( "EFormsHelper::canBindToDataType: caught an exception!" );
193 : }
194 :
195 0 : return bCan;
196 : }
197 :
198 :
199 0 : bool EFormsHelper::isListEntrySink() const
200 : {
201 0 : bool bIs = false;
202 : try
203 : {
204 0 : Reference< XListEntrySink > xAsSink( m_xControlModel, UNO_QUERY );
205 0 : bIs = xAsSink.is();
206 : }
207 0 : catch( const Exception& )
208 : {
209 : OSL_FAIL( "EFormsHelper::isListEntrySink: caught an exception!" );
210 : }
211 0 : return bIs;
212 : }
213 :
214 :
215 0 : void EFormsHelper::impl_switchBindingListening_throw( bool _bDoListening, const Reference< XPropertyChangeListener >& _rxListener )
216 : {
217 0 : Reference< XPropertySet > xBindingProps;
218 0 : if ( m_xBindableControl.is() )
219 0 : xBindingProps.set(m_xBindableControl->getValueBinding(), css::uno::UNO_QUERY);
220 0 : if ( !xBindingProps.is() )
221 0 : return;
222 :
223 0 : if ( _bDoListening )
224 : {
225 0 : xBindingProps->addPropertyChangeListener( OUString(), _rxListener );
226 : }
227 : else
228 : {
229 0 : xBindingProps->removePropertyChangeListener( OUString(), _rxListener );
230 0 : }
231 : }
232 :
233 :
234 0 : void EFormsHelper::registerBindingListener( const Reference< XPropertyChangeListener >& _rxBindingListener )
235 : {
236 0 : if ( !_rxBindingListener.is() )
237 0 : return;
238 0 : impl_toggleBindingPropertyListening_throw( true, _rxBindingListener );
239 : }
240 :
241 :
242 0 : void EFormsHelper::impl_toggleBindingPropertyListening_throw( bool _bDoListen, const Reference< XPropertyChangeListener >& _rxConcreteListenerOrNull )
243 : {
244 0 : if ( !_bDoListen )
245 : {
246 0 : ::std::unique_ptr< ::cppu::OInterfaceIteratorHelper > pListenerIterator = m_aPropertyListeners.createIterator();
247 0 : while ( pListenerIterator->hasMoreElements() )
248 : {
249 0 : PropertyEventTranslation* pTranslator = dynamic_cast< PropertyEventTranslation* >( pListenerIterator->next() );
250 : OSL_ENSURE( pTranslator, "EFormsHelper::impl_toggleBindingPropertyListening_throw: invalid listener element in my container!" );
251 0 : if ( !pTranslator )
252 0 : continue;
253 :
254 0 : Reference< XPropertyChangeListener > xEventSourceTranslator( pTranslator );
255 0 : if ( _rxConcreteListenerOrNull.is() )
256 : {
257 0 : if ( pTranslator->getDelegator() == _rxConcreteListenerOrNull )
258 : {
259 0 : impl_switchBindingListening_throw( false, xEventSourceTranslator );
260 0 : m_aPropertyListeners.removeListener( xEventSourceTranslator );
261 0 : break;
262 : }
263 : }
264 : else
265 : {
266 0 : impl_switchBindingListening_throw( false, xEventSourceTranslator );
267 : }
268 0 : }
269 : }
270 : else
271 : {
272 0 : if ( _rxConcreteListenerOrNull.is() )
273 : {
274 0 : Reference< XPropertyChangeListener > xEventSourceTranslator( new PropertyEventTranslation( _rxConcreteListenerOrNull, m_xBindableControl ) );
275 0 : m_aPropertyListeners.addListener( xEventSourceTranslator );
276 0 : impl_switchBindingListening_throw( true, xEventSourceTranslator );
277 : }
278 : else
279 : {
280 0 : ::std::unique_ptr< ::cppu::OInterfaceIteratorHelper > pListenerIterator = m_aPropertyListeners.createIterator();
281 0 : while ( pListenerIterator->hasMoreElements() )
282 : {
283 0 : Reference< XPropertyChangeListener > xListener( pListenerIterator->next(), UNO_QUERY );
284 0 : impl_switchBindingListening_throw( true, xListener );
285 0 : }
286 : }
287 : }
288 0 : }
289 :
290 :
291 0 : void EFormsHelper::revokeBindingListener( const Reference< XPropertyChangeListener >& _rxBindingListener )
292 : {
293 0 : impl_toggleBindingPropertyListening_throw( false, _rxBindingListener );
294 0 : }
295 :
296 :
297 0 : void EFormsHelper::getFormModelNames( ::std::vector< OUString >& /* [out] */ _rModelNames ) const
298 : {
299 0 : if ( m_xDocument.is() )
300 : {
301 : try
302 : {
303 0 : _rModelNames.resize( 0 );
304 :
305 0 : Reference< XNameContainer > xForms( m_xDocument->getXForms() );
306 : OSL_ENSURE( xForms.is(), "EFormsHelper::getFormModelNames: invalid forms container!" );
307 0 : if ( xForms.is() )
308 : {
309 0 : Sequence< OUString > aModelNames = xForms->getElementNames();
310 0 : _rModelNames.resize( aModelNames.getLength() );
311 0 : ::std::copy( aModelNames.begin(), aModelNames.end(), _rModelNames.begin() );
312 0 : }
313 : }
314 0 : catch( const Exception& )
315 : {
316 : OSL_FAIL( "EFormsHelper::getFormModelNames: caught an exception!" );
317 : }
318 : }
319 0 : }
320 :
321 :
322 0 : void EFormsHelper::getBindingNames( const OUString& _rModelName, ::std::vector< OUString >& /* [out] */ _rBindingNames ) const
323 : {
324 0 : _rBindingNames.resize( 0 );
325 : try
326 : {
327 0 : Reference< xforms::XModel > xModel( getFormModelByName( _rModelName ) );
328 0 : if ( xModel.is() )
329 : {
330 0 : Reference< XNameAccess > xBindings( xModel->getBindings(), UNO_QUERY );
331 : OSL_ENSURE( xBindings.is(), "EFormsHelper::getBindingNames: invalid bindings container obtained from the model!" );
332 0 : if ( xBindings.is() )
333 : {
334 0 : Sequence< OUString > aNames = xBindings->getElementNames();
335 0 : _rBindingNames.resize( aNames.getLength() );
336 0 : ::std::copy( aNames.begin(), aNames.end(), _rBindingNames.begin() );
337 0 : }
338 0 : }
339 : }
340 0 : catch( const Exception& )
341 : {
342 : OSL_FAIL( "EFormsHelper::getBindingNames: caught an exception!" );
343 : }
344 0 : }
345 :
346 :
347 0 : Reference< xforms::XModel > EFormsHelper::getFormModelByName( const OUString& _rModelName ) const
348 : {
349 0 : Reference< xforms::XModel > xReturn;
350 : try
351 : {
352 0 : Reference< XNameContainer > xForms( m_xDocument->getXForms() );
353 : OSL_ENSURE( xForms.is(), "EFormsHelper::getFormModelByName: invalid forms container!" );
354 0 : if ( xForms.is() )
355 0 : OSL_VERIFY( xForms->getByName( _rModelName ) >>= xReturn );
356 : }
357 0 : catch( const Exception& )
358 : {
359 : OSL_FAIL( "EFormsHelper::getFormModelByName: caught an exception!" );
360 : }
361 0 : return xReturn;
362 : }
363 :
364 :
365 0 : Reference< xforms::XModel > EFormsHelper::getCurrentFormModel() const
366 : {
367 0 : Reference< xforms::XModel > xModel;
368 : try
369 : {
370 0 : Reference< XPropertySet > xBinding( getCurrentBinding() );
371 0 : if ( xBinding.is() )
372 : {
373 0 : OSL_VERIFY( xBinding->getPropertyValue( PROPERTY_MODEL ) >>= xModel );
374 0 : }
375 : }
376 0 : catch( const Exception& )
377 : {
378 : OSL_FAIL( "EFormsHelper::getCurrentFormModel: caught an exception!" );
379 : }
380 0 : return xModel;
381 : }
382 :
383 :
384 0 : OUString EFormsHelper::getCurrentFormModelName() const
385 : {
386 0 : OUString sModelName;
387 : try
388 : {
389 0 : Reference< xforms::XModel > xFormsModel( getCurrentFormModel() );
390 0 : if ( xFormsModel.is() )
391 0 : sModelName = xFormsModel->getID();
392 : }
393 0 : catch( const Exception& )
394 : {
395 : OSL_FAIL( "EFormsHelper::getCurrentFormModel: caught an exception!" );
396 : }
397 0 : return sModelName;
398 : }
399 :
400 :
401 0 : Reference< XPropertySet > EFormsHelper::getCurrentBinding() const
402 : {
403 0 : Reference< XPropertySet > xBinding;
404 :
405 : try
406 : {
407 0 : if ( m_xBindableControl.is() )
408 0 : xBinding.set(m_xBindableControl->getValueBinding(), css::uno::UNO_QUERY);
409 : }
410 0 : catch( const Exception& )
411 : {
412 : OSL_FAIL( "EFormsHelper::getCurrentBinding: caught an exception!" );
413 : }
414 :
415 0 : return xBinding;
416 : }
417 :
418 :
419 0 : OUString EFormsHelper::getCurrentBindingName() const
420 : {
421 0 : OUString sBindingName;
422 : try
423 : {
424 0 : Reference< XPropertySet > xBinding( getCurrentBinding() );
425 0 : if ( xBinding.is() )
426 0 : xBinding->getPropertyValue( PROPERTY_BINDING_ID ) >>= sBindingName;
427 : }
428 0 : catch( const Exception& )
429 : {
430 : OSL_FAIL( "EFormsHelper::getCurrentBindingName: caught an exception!" );
431 : }
432 0 : return sBindingName;
433 : }
434 :
435 :
436 0 : Reference< XListEntrySource > EFormsHelper::getCurrentListSourceBinding() const
437 : {
438 0 : Reference< XListEntrySource > xReturn;
439 : try
440 : {
441 0 : Reference< XListEntrySink > xAsSink( m_xControlModel, UNO_QUERY );
442 : OSL_ENSURE( xAsSink.is(), "EFormsHelper::getCurrentListSourceBinding: you should have used isListEntrySink before!" );
443 0 : if ( xAsSink.is() )
444 0 : xReturn = xAsSink->getListEntrySource();
445 : }
446 0 : catch( const Exception& )
447 : {
448 : OSL_FAIL( "EFormsHelper::getCurrentListSourceBinding: caught an exception!" );
449 : }
450 0 : return xReturn;
451 : }
452 :
453 :
454 0 : void EFormsHelper::setListSourceBinding( const Reference< XListEntrySource >& _rxListSource )
455 : {
456 : try
457 : {
458 0 : Reference< XListEntrySink > xAsSink( m_xControlModel, UNO_QUERY );
459 : OSL_ENSURE( xAsSink.is(), "EFormsHelper::setListSourceBinding: you should have used isListEntrySink before!" );
460 0 : if ( xAsSink.is() )
461 0 : xAsSink->setListEntrySource( _rxListSource );
462 : }
463 0 : catch( const Exception& )
464 : {
465 : OSL_FAIL( "EFormsHelper::setListSourceBinding: caught an exception!" );
466 : }
467 0 : }
468 :
469 :
470 0 : void EFormsHelper::setBinding( const Reference< ::com::sun::star::beans::XPropertySet >& _rxBinding )
471 : {
472 0 : if ( !m_xBindableControl.is() )
473 0 : return;
474 :
475 : try
476 : {
477 0 : Reference< XPropertySet > xOldBinding( m_xBindableControl->getValueBinding(), UNO_QUERY );
478 :
479 0 : Reference< XValueBinding > xBinding( _rxBinding, UNO_QUERY );
480 : OSL_ENSURE( xBinding.is() || !_rxBinding.is(), "EFormsHelper::setBinding: invalid binding!" );
481 :
482 0 : impl_toggleBindingPropertyListening_throw( false, NULL );
483 0 : m_xBindableControl->setValueBinding( xBinding );
484 0 : impl_toggleBindingPropertyListening_throw( true, NULL );
485 :
486 0 : ::std::set< OUString > aSet;
487 0 : firePropertyChanges( xOldBinding, _rxBinding, aSet );
488 : }
489 0 : catch( const Exception& )
490 : {
491 : OSL_FAIL( "EFormsHelper::setBinding: caught an exception!" );
492 : }
493 : }
494 :
495 :
496 0 : Reference< XPropertySet > EFormsHelper::getOrCreateBindingForModel( const OUString& _rTargetModel, const OUString& _rBindingName ) const
497 : {
498 : OSL_ENSURE( !_rBindingName.isEmpty(), "EFormsHelper::getOrCreateBindingForModel: invalid binding name!" );
499 0 : return implGetOrCreateBinding( _rTargetModel, _rBindingName );
500 : }
501 :
502 :
503 0 : Reference< XPropertySet > EFormsHelper::implGetOrCreateBinding( const OUString& _rTargetModel, const OUString& _rBindingName ) const
504 : {
505 : OSL_ENSURE( !( _rTargetModel.isEmpty() && !_rBindingName.isEmpty() ), "EFormsHelper::implGetOrCreateBinding: no model, but a binding name?" );
506 :
507 0 : Reference< XPropertySet > xBinding;
508 : try
509 : {
510 0 : OUString sTargetModel( _rTargetModel );
511 : // determine the model which the binding should belong to
512 0 : if ( sTargetModel.isEmpty() )
513 : {
514 0 : ::std::vector< OUString > aModelNames;
515 0 : getFormModelNames( aModelNames );
516 0 : if ( !aModelNames.empty() )
517 0 : sTargetModel = *aModelNames.begin();
518 0 : OSL_ENSURE( !sTargetModel.isEmpty(), "EFormsHelper::implGetOrCreateBinding: unable to obtain a default model!" );
519 : }
520 0 : Reference< xforms::XModel > xModel( getFormModelByName( sTargetModel ) );
521 0 : Reference< XNameAccess > xBindingNames( xModel.is() ? xModel->getBindings() : Reference< XSet >(), UNO_QUERY );
522 0 : if ( xBindingNames.is() )
523 : {
524 : // get or create the binding instance
525 0 : if ( !_rBindingName.isEmpty() )
526 : {
527 0 : if ( xBindingNames->hasByName( _rBindingName ) )
528 0 : OSL_VERIFY( xBindingNames->getByName( _rBindingName ) >>= xBinding );
529 : else
530 : {
531 0 : xBinding = xModel->createBinding( );
532 0 : if ( xBinding.is() )
533 : {
534 0 : xBinding->setPropertyValue( PROPERTY_BINDING_ID, makeAny( _rBindingName ) );
535 0 : xModel->getBindings()->insert( makeAny( xBinding ) );
536 : }
537 : }
538 : }
539 : else
540 : {
541 0 : xBinding = xModel->createBinding( );
542 0 : if ( xBinding.is() )
543 : {
544 : // find a nice name for it
545 0 : OUString sBaseName(PcrRes(RID_STR_BINDING_UI_NAME).toString());
546 0 : sBaseName += " ";
547 0 : OUString sNewName;
548 0 : sal_Int32 nNumber = 1;
549 0 : do
550 : {
551 0 : sNewName = sBaseName + OUString::number( nNumber++ );
552 : }
553 0 : while ( xBindingNames->hasByName( sNewName ) );
554 0 : Reference< XNamed > xName( xBinding, UNO_QUERY_THROW );
555 0 : xName->setName( sNewName );
556 : // and insert into the model
557 0 : xModel->getBindings()->insert( makeAny( xBinding ) );
558 : }
559 : }
560 0 : }
561 : }
562 0 : catch( const Exception& )
563 : {
564 : DBG_UNHANDLED_EXCEPTION();
565 : }
566 :
567 0 : return xBinding;
568 : }
569 :
570 :
571 : namespace
572 : {
573 :
574 : struct PropertyBagInserter : public ::std::unary_function< Property, void >
575 : {
576 : private:
577 : PropertyBag& m_rProperties;
578 :
579 : public:
580 0 : PropertyBagInserter( PropertyBag& rProperties ) : m_rProperties( rProperties ) { }
581 :
582 0 : void operator()( const Property& _rProp )
583 : {
584 0 : m_rProperties.insert( _rProp );
585 0 : }
586 : };
587 :
588 :
589 0 : Reference< XPropertySetInfo > collectPropertiesGetInfo( const Reference< XPropertySet >& _rxProps, PropertyBag& _rBag )
590 : {
591 0 : Reference< XPropertySetInfo > xInfo;
592 0 : if ( _rxProps.is() )
593 0 : xInfo = _rxProps->getPropertySetInfo();
594 0 : if ( xInfo.is() )
595 : {
596 0 : Sequence< Property > aProperties = xInfo->getProperties();
597 0 : ::std::for_each( aProperties.getConstArray(), aProperties.getConstArray() + aProperties.getLength(),
598 : PropertyBagInserter( _rBag )
599 0 : );
600 : }
601 0 : return xInfo;
602 : }
603 : }
604 :
605 :
606 0 : OUString EFormsHelper::getModelElementUIName( const EFormsHelper::ModelElementType _eType, const Reference< XPropertySet >& _rxElement )
607 : {
608 0 : OUString sUIName;
609 : try
610 : {
611 : // determine the model which the element belongs to
612 0 : Reference< xforms::XFormsUIHelper1 > xHelper;
613 0 : if ( _rxElement.is() )
614 0 : _rxElement->getPropertyValue( PROPERTY_MODEL ) >>= xHelper;
615 : OSL_ENSURE( xHelper.is(), "EFormsHelper::getModelElementUIName: invalid element or model!" );
616 0 : if ( xHelper.is() )
617 : {
618 0 : OUString sElementName = ( _eType == Submission ) ? xHelper->getSubmissionName( _rxElement, sal_True ) : xHelper->getBindingName( _rxElement, sal_True );
619 0 : Reference< xforms::XModel > xModel( xHelper, UNO_QUERY_THROW );
620 0 : sUIName = composeModelElementUIName( xModel->getID(), sElementName );
621 0 : }
622 : }
623 0 : catch( const Exception& )
624 : {
625 : OSL_FAIL( "EFormsHelper::getModelElementUIName: caught an exception!" );
626 : }
627 :
628 0 : return sUIName;
629 : }
630 :
631 :
632 0 : Reference< XPropertySet > EFormsHelper::getModelElementFromUIName( const EFormsHelper::ModelElementType _eType, const OUString& _rUIName ) const
633 : {
634 0 : const MapStringToPropertySet& rMapUINameToElement( ( _eType == Submission ) ? m_aSubmissionUINames : m_aBindingUINames );
635 0 : MapStringToPropertySet::const_iterator pos = rMapUINameToElement.find( _rUIName );
636 : OSL_ENSURE( pos != rMapUINameToElement.end(), "EFormsHelper::getModelElementFromUIName: didn't find it!" );
637 :
638 0 : return ( pos != rMapUINameToElement.end() ) ? pos->second : Reference< XPropertySet >();
639 : }
640 :
641 :
642 0 : void EFormsHelper::getAllElementUINames( const ModelElementType _eType, ::std::vector< OUString >& /* [out] */ _rElementNames, bool _bPrepentEmptyEntry )
643 : {
644 0 : MapStringToPropertySet& rMapUINameToElement( ( _eType == Submission ) ? m_aSubmissionUINames : m_aBindingUINames );
645 0 : rMapUINameToElement.clear();
646 0 : _rElementNames.resize( 0 );
647 :
648 0 : if ( _bPrepentEmptyEntry )
649 0 : rMapUINameToElement[ OUString() ].clear();
650 :
651 : try
652 : {
653 : // obtain the model names
654 0 : ::std::vector< OUString > aModels;
655 0 : getFormModelNames( aModels );
656 0 : _rElementNames.reserve( aModels.size() * 2 ); // heuristics
657 :
658 : // for every model, obtain the element
659 0 : for ( ::std::vector< OUString >::const_iterator pModelName = aModels.begin();
660 0 : pModelName != aModels.end();
661 : ++pModelName
662 : )
663 : {
664 0 : Reference< xforms::XModel > xModel = getFormModelByName( *pModelName );
665 : OSL_ENSURE( xModel.is(), "EFormsHelper::getAllElementUINames: inconsistency in the models!" );
666 0 : Reference< xforms::XFormsUIHelper1 > xHelper( xModel, UNO_QUERY );
667 :
668 0 : Reference< XIndexAccess > xElements;
669 0 : if ( xModel.is() )
670 0 : xElements.set(( _eType == Submission ) ? xModel->getSubmissions() : xModel->getBindings(), css::uno::UNO_QUERY);
671 0 : if ( !xElements.is() )
672 0 : break;
673 :
674 0 : sal_Int32 nElementCount = xElements->getCount();
675 0 : for ( sal_Int32 i = 0; i < nElementCount; ++i )
676 : {
677 0 : Reference< XPropertySet > xElement( xElements->getByIndex( i ), UNO_QUERY );
678 : OSL_ENSURE( xElement.is(), "EFormsHelper::getAllElementUINames: empty element!" );
679 0 : if ( !xElement.is() )
680 0 : continue;
681 : #if OSL_DEBUG_LEVEL > 0
682 : {
683 : Reference< xforms::XModel > xElementsModel;
684 : xElement->getPropertyValue( PROPERTY_MODEL ) >>= xElementsModel;
685 : OSL_ENSURE( xElementsModel == xModel, "EFormsHelper::getAllElementUINames: inconsistency in the model-element relationship!" );
686 : if ( !( xElementsModel == xModel ) )
687 : xElement->setPropertyValue( PROPERTY_MODEL, makeAny( xModel ) );
688 : }
689 : #endif
690 0 : OUString sElementName = ( _eType == Submission ) ? xHelper->getSubmissionName( xElement, sal_True ) : xHelper->getBindingName( xElement, sal_True );
691 0 : OUString sUIName = composeModelElementUIName( *pModelName, sElementName );
692 :
693 : OSL_ENSURE( rMapUINameToElement.find( sUIName ) == rMapUINameToElement.end(), "EFormsHelper::getAllElementUINames: duplicate name!" );
694 0 : rMapUINameToElement.insert( MapStringToPropertySet::value_type( sUIName, xElement ) );
695 0 : }
696 0 : }
697 : }
698 0 : catch( const Exception& )
699 : {
700 : OSL_FAIL( "EFormsHelper::getAllElementUINames: caught an exception!" );
701 : }
702 :
703 0 : _rElementNames.resize( rMapUINameToElement.size() );
704 0 : ::std::transform( rMapUINameToElement.begin(), rMapUINameToElement.end(), _rElementNames.begin(), ::o3tl::select1st< MapStringToPropertySet::value_type >() );
705 0 : }
706 :
707 :
708 0 : void EFormsHelper::firePropertyChange( const OUString& _rName, const Any& _rOldValue, const Any& _rNewValue ) const
709 : {
710 0 : if ( m_aPropertyListeners.empty() )
711 0 : return;
712 :
713 0 : if ( _rOldValue == _rNewValue )
714 0 : return;
715 :
716 : try
717 : {
718 0 : PropertyChangeEvent aEvent;
719 :
720 0 : aEvent.Source = m_xBindableControl.get();
721 0 : aEvent.PropertyName = _rName;
722 0 : aEvent.OldValue = _rOldValue;
723 0 : aEvent.NewValue = _rNewValue;
724 :
725 0 : const_cast< EFormsHelper* >( this )->m_aPropertyListeners.notify( aEvent, &XPropertyChangeListener::propertyChange );
726 : }
727 0 : catch( const Exception& )
728 : {
729 : OSL_FAIL( "EFormsHelper::firePropertyChange: caught an exception!" );
730 : }
731 : }
732 :
733 :
734 0 : void EFormsHelper::firePropertyChanges( const Reference< XPropertySet >& _rxOldProps, const Reference< XPropertySet >& _rxNewProps, ::std::set< OUString >& _rFilter ) const
735 : {
736 0 : if ( m_aPropertyListeners.empty() )
737 0 : return;
738 :
739 : try
740 : {
741 0 : PropertyBag aProperties;
742 0 : Reference< XPropertySetInfo > xOldInfo = collectPropertiesGetInfo( _rxOldProps, aProperties );
743 0 : Reference< XPropertySetInfo > xNewInfo = collectPropertiesGetInfo( _rxNewProps, aProperties );
744 :
745 0 : for ( PropertyBag::const_iterator aProp = aProperties.begin();
746 0 : aProp != aProperties.end();
747 : ++aProp
748 : )
749 : {
750 0 : if ( _rFilter.find( aProp->Name ) != _rFilter.end() )
751 0 : continue;
752 :
753 0 : Any aOldValue( NULL, aProp->Type );
754 0 : if ( xOldInfo.is() && xOldInfo->hasPropertyByName( aProp->Name ) )
755 0 : aOldValue = _rxOldProps->getPropertyValue( aProp->Name );
756 :
757 0 : Any aNewValue( NULL, aProp->Type );
758 0 : if ( xNewInfo.is() && xNewInfo->hasPropertyByName( aProp->Name ) )
759 0 : aNewValue = _rxNewProps->getPropertyValue( aProp->Name );
760 :
761 0 : firePropertyChange( aProp->Name, aOldValue, aNewValue );
762 0 : }
763 : }
764 0 : catch( const Exception& )
765 : {
766 : OSL_FAIL( "EFormsHelper::firePropertyChanges: caught an exception!" );
767 : }
768 : }
769 :
770 :
771 : } // namespace pcr
772 :
773 :
774 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|