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 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274
|
/* -*- 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 "binding.hxx"
#include "model.hxx"
#include "unohelper.hxx"
#include "NameContainer.hxx"
#include "evaluationcontext.hxx"
#include "convert.hxx"
#include "resourcehelper.hxx"
#include "xmlhelper.hxx"
#include "xformsevent.hxx"
#include <strings.hrc>
#include <rtl/ustrbuf.hxx>
#include <osl/diagnose.h>
#include <tools/diagnose_ex.h>
#include <algorithm>
#include <functional>
#include <com/sun/star/form/binding/IncompatibleTypesException.hpp>
#include <com/sun/star/form/binding/InvalidBindingStateException.hpp>
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/xml/dom/XNodeList.hpp>
#include <com/sun/star/xml/dom/XNode.hpp>
#include <com/sun/star/xml/dom/XDocument.hpp>
#include <com/sun/star/xml/dom/XElement.hpp>
#include <com/sun/star/xml/dom/NodeType.hpp>
#include <com/sun/star/xml/dom/events/XEventTarget.hpp>
#include <com/sun/star/xml/dom/events/XEventListener.hpp>
#include <com/sun/star/lang/XUnoTunnel.hpp>
#include <com/sun/star/lang/IndexOutOfBoundsException.hpp>
#include <com/sun/star/container/XNameContainer.hpp>
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/typeprovider.hxx>
using namespace com::sun::star::xml::xpath;
using namespace com::sun::star::xml::dom::events;
using std::vector;
using xforms::Binding;
using xforms::MIP;
using xforms::Model;
using xforms::getResource;
using xforms::EvaluationContext;
using com::sun::star::beans::XPropertySet;
using com::sun::star::container::XNameAccess;
using com::sun::star::form::binding::IncompatibleTypesException;
using com::sun::star::form::binding::InvalidBindingStateException;
using com::sun::star::form::binding::XValueBinding;
using com::sun::star::lang::EventObject;
using com::sun::star::lang::IndexOutOfBoundsException;
using com::sun::star::lang::XUnoTunnel;
using com::sun::star::uno::Any;
using com::sun::star::uno::Reference;
using com::sun::star::uno::RuntimeException;
using com::sun::star::uno::Sequence;
using com::sun::star::uno::UNO_QUERY;
using com::sun::star::uno::UNO_QUERY_THROW;
using com::sun::star::uno::XInterface;
using com::sun::star::uno::Exception;
using com::sun::star::uno::makeAny;
using com::sun::star::util::XModifyListener;
using com::sun::star::xforms::XDataTypeRepository;
using com::sun::star::xml::dom::NodeType_ATTRIBUTE_NODE;
using com::sun::star::xml::dom::NodeType_TEXT_NODE;
using com::sun::star::xml::dom::XNode;
using com::sun::star::xml::dom::XNodeList;
using com::sun::star::xml::dom::events::XEventListener;
using com::sun::star::xml::dom::events::XEventTarget;
using com::sun::star::xsd::XDataType;
#define EXCEPT(msg) msg,static_cast<XValueBinding*>(this)
#define HANDLE_BindingID 0
#define HANDLE_BindingExpression 1
#define HANDLE_Model 2
#define HANDLE_ModelID 3
#define HANDLE_BindingNamespaces 4
#define HANDLE_ReadonlyExpression 5
#define HANDLE_RelevantExpression 6
#define HANDLE_RequiredExpression 7
#define HANDLE_ConstraintExpression 8
#define HANDLE_CalculateExpression 9
#define HANDLE_Type 10
#define HANDLE_ReadOnly 11 // from com.sun.star.form.binding.ValueBinding, for interaction with a bound form control
#define HANDLE_Relevant 12 // from com.sun.star.form.binding.ValueBinding, for interaction with a bound form control
#define HANDLE_ModelNamespaces 13
#define HANDLE_ExternalData 14
Binding::Binding() :
mxModel(),
msBindingID(),
maBindingExpression(),
maReadonly(),
mxNamespaces( new NameContainer<OUString>() ),
mbInCalculate( false ),
mnDeferModifyNotifications( 0 ),
mbValueModified( false ),
mbBindingModified( false )
{
initializePropertySet();
}
Binding::~Binding()
{
_setModel(nullptr);
}
void Binding::_setModel( const css::uno::Reference<css::xforms::XModel>& xModel )
{
PropertyChangeNotifier aNotifyModelChange( *this, HANDLE_Model );
PropertyChangeNotifier aNotifyModelIDChange( *this, HANDLE_ModelID );
// prepare binding for removal of old model
clear(); // remove all cached data (e.g. XPath evaluation results)
css::uno::Reference<css::container::XNameContainer> xNamespaces = getModelNamespaces(); // save namespaces
mxModel = xModel;
// set namespaces (and move to model, if appropriate)
setBindingNamespaces( xNamespaces );
_checkBindingID();
notifyAndCachePropertyValue( HANDLE_ExternalData );
}
OUString Binding::getModelID() const
{
Model* pModel = getModelImpl();
return ( pModel == nullptr ) ? OUString() : pModel->getID();
}
css::uno::Reference<css::xml::dom::XNodeList> Binding::getXNodeList()
{
// first make sure we are bound
if( ! maBindingExpression.hasValue() )
bind();
return maBindingExpression.getXNodeList();
}
bool Binding::isSimpleBinding() const
{
return maBindingExpression.isSimpleExpression()
&& maReadonly.isSimpleExpression()
&& maRelevant.isSimpleExpression()
&& maRequired.isSimpleExpression()
&& maConstraint.isSimpleExpression()
&& maCalculate.isSimpleExpression();
}
bool Binding::isSimpleBindingExpression() const
{
return maBindingExpression.isSimpleExpression();
}
void Binding::update()
{
// clear all expressions (to remove cached node references)
maBindingExpression.clear();
maReadonly.clear();
maRelevant.clear();
maRequired.clear();
maConstraint.clear();
maCalculate.clear();
// let's just pretend the binding has been modified -> full rebind()
bindingModified();
}
void Binding::deferNotifications( bool bDefer )
{
mnDeferModifyNotifications += ( bDefer ? 1 : -1 );
OSL_ENSURE( mnDeferModifyNotifications >= 0, "you're deferring too much" );
if( mnDeferModifyNotifications == 0 )
{
if( mbBindingModified )
bindingModified();
if( mbValueModified )
valueModified();
}
OSL_ENSURE( ( mnDeferModifyNotifications > 0 )
|| ( ! mbBindingModified && ! mbValueModified ),
"deferred modifications not delivered?" );
}
bool Binding::isValid() const
{
// TODO: determine whether node is suitable, not just whether it exists
return maBindingExpression.getNode().is() &&
isValid_DataType() &&
maMIP.isConstraint() &&
( ! maMIP.isRequired() ||
( maBindingExpression.hasValue() &&
!maBindingExpression.getString().isEmpty() ) );
}
bool Binding::isUseful() const
{
// we are useful, if
// 0) we don't have a model
// (at least, in this case we shouldn't be removed from the model)
// 1) we have a proper name
// 2) we have some MIPs,
// 3) we are bound to some control
// (this can be assumed if some listeners are set)
bool bUseful =
getModelImpl() == nullptr
// || msBindingID.getLength() > 0
|| ! msTypeName.isEmpty()
|| ! maReadonly.isEmptyExpression()
|| ! maRelevant.isEmptyExpression()
|| ! maRequired.isEmptyExpression()
|| ! maConstraint.isEmptyExpression()
|| ! maCalculate.isEmptyExpression()
|| ! maModifyListeners.empty()
|| ! maListEntryListeners.empty()
|| ! maValidityListeners.empty();
return bUseful;
}
OUString Binding::explainInvalid()
{
OUString sReason;
if( ! maBindingExpression.getNode().is() )
{
sReason = ( maBindingExpression.getExpression().isEmpty() )
? getResource( RID_STR_XFORMS_NO_BINDING_EXPRESSION )
: getResource( RID_STR_XFORMS_INVALID_BINDING_EXPRESSION );
}
else if( ! isValid_DataType() )
{
sReason = explainInvalid_DataType();
if( sReason.isEmpty() )
{
// no explanation given by data type? Then give generic message
sReason = getResource( RID_STR_XFORMS_INVALID_VALUE,
maMIP.getTypeName() );
}
}
else if( ! maMIP.isConstraint() )
{
sReason = maMIP.getConstraintExplanation();
}
else if( maMIP.isRequired() && maBindingExpression.hasValue() &&
maBindingExpression.getString().isEmpty() )
{
sReason = getResource( RID_STR_XFORMS_REQUIRED );
}
// else: no explanation given; should only happen if data is valid
OSL_ENSURE( sReason.isEmpty() == isValid(),
"invalid data should have an explanation!" );
return sReason;
}
EvaluationContext Binding::getEvaluationContext() const
{
OSL_ENSURE( getModelImpl() != nullptr, "need model impl" );
EvaluationContext aContext = getModelImpl()->getEvaluationContext();
aContext.mxNamespaces = getBindingNamespaces();
return aContext;
}
::std::vector<EvaluationContext> Binding::getMIPEvaluationContexts()
{
OSL_ENSURE( getModelImpl() != nullptr, "need model impl" );
// bind (in case we were not bound before)
bind();
return _getMIPEvaluationContexts();
}
css::uno::Sequence<sal_Int8> Binding::getUnoTunnelId()
{
static cppu::OImplementationId aImplementationId;
return aImplementationId.getImplementationId();
}
void Binding::setBindingID( const OUString& sBindingID )
{
msBindingID = sBindingID;
}
OUString Binding::getBindingExpression() const
{
return maBindingExpression.getExpression();
}
void Binding::setBindingExpression( const OUString& sBindingExpression)
{
maBindingExpression.setExpression( sBindingExpression );
bindingModified();
}
OUString Binding::getReadonlyExpression() const
{
return maReadonly.getExpression();
}
void Binding::setReadonlyExpression( const OUString& sReadonly)
{
maReadonly.setExpression( sReadonly );
bindingModified();
}
OUString Binding::getRelevantExpression() const
{
return maRelevant.getExpression();
}
void Binding::setRelevantExpression( const OUString& sRelevant )
{
maRelevant.setExpression( sRelevant );
bindingModified();
}
OUString Binding::getRequiredExpression() const
{
return maRequired.getExpression();
}
void Binding::setRequiredExpression( const OUString& sRequired )
{
maRequired.setExpression( sRequired );
bindingModified();
}
OUString Binding::getConstraintExpression() const
{
return maConstraint.getExpression();
}
void Binding::setConstraintExpression( const OUString& sConstraint )
{
maConstraint.setExpression( sConstraint );
msExplainConstraint = getResource( RID_STR_XFORMS_INVALID_CONSTRAINT,
sConstraint );
// TODO: This should only re-evaluate the constraint, and notify
// the validity constraint listeners; instead we currently pretend
// the entire binding was notified, which does a little too much.
bindingModified();
}
OUString Binding::getCalculateExpression() const
{
return maCalculate.getExpression();
}
void Binding::setCalculateExpression( const OUString& sCalculate )
{
maCalculate.setExpression( sCalculate );
bindingModified();
}
void Binding::setType( const OUString& sTypeName )
{
msTypeName = sTypeName;
bindingModified();
}
void Binding::setBindingNamespaces( const css::uno::Reference<css::container::XNameContainer>& rNamespaces )
{
_setNamespaces( rNamespaces, true );
}
css::uno::Reference<css::container::XNameContainer> Binding::getModelNamespaces() const
{
return _getNamespaces();
}
void Binding::setModelNamespaces( const css::uno::Reference<css::container::XNameContainer>& rNamespaces )
{
_setNamespaces( rNamespaces, false );
}
bool Binding::getReadOnly() const
{
return maMIP.isReadonly();
}
bool Binding::getRelevant() const
{
return maMIP.isRelevant();
}
bool Binding::getExternalData() const
{
bool bExternalData = true;
if ( !mxModel.is() )
return bExternalData;
try
{
Reference< XPropertySet > xModelProps( mxModel, UNO_QUERY_THROW );
OSL_VERIFY(
xModelProps->getPropertyValue( "ExternalData" ) >>= bExternalData );
}
catch( const Exception& )
{
DBG_UNHANDLED_EXCEPTION("forms.xforms");
}
return bExternalData;
}
void Binding::checkLive()
{
if( ! isLive() )
throw RuntimeException( EXCEPT("Binding not initialized") );
}
bool Binding::isLive() const
{
const Model* pModel = getModelImpl();
return pModel && pModel->isInitialized();
}
Model* Binding::getModelImpl() const
{
return comphelper::getUnoTunnelImplementation<Model>( mxModel );
}
static void lcl_addListenerToNode( const Reference<XNode>& xNode,
const Reference<XEventListener>& xListener )
{
Reference<XEventTarget> xTarget( xNode, UNO_QUERY );
if( !xTarget.is() )
return;
xTarget->addEventListener( "DOMCharacterDataModified",
xListener, false );
xTarget->addEventListener( "DOMCharacterDataModified",
xListener, true );
xTarget->addEventListener( "DOMAttrModified",
xListener, false );
xTarget->addEventListener( "DOMAttrModified",
xListener, true );
xTarget->addEventListener( "DOMAttrModified",
xListener, true );
xTarget->addEventListener( "xforms-generic",
xListener, true );
}
static void lcl_removeListenerFromNode( const Reference<XNode>& xNode,
const Reference<XEventListener>& xListener )
{
Reference<XEventTarget> xTarget( xNode, UNO_QUERY );
if( !xTarget.is() )
return;
xTarget->removeEventListener( "DOMCharacterDataModified",
xListener, false );
xTarget->removeEventListener( "DOMCharacterDataModified",
xListener, true );
xTarget->removeEventListener( "DOMAttrModified",
xListener, false );
xTarget->removeEventListener( "DOMAttrModified",
xListener, true );
xTarget->removeEventListener( "xforms-generic",
xListener, true );
}
::std::vector<EvaluationContext> Binding::_getMIPEvaluationContexts() const
{
OSL_ENSURE( getModelImpl() != nullptr, "need model impl" );
// iterate over nodes of bind expression and create
// EvaluationContext for each
PathExpression::NodeVector_t aNodes = maBindingExpression.getNodeList();
::std::vector<EvaluationContext> aVector;
for (auto const& node : aNodes)
{
OSL_ENSURE( node.is(), "no node?" );
// create proper evaluation context for this MIP
aVector.emplace_back( node, getModel(), getBindingNamespaces() );
}
return aVector;
}
void Binding::bind( bool bForceRebind )
{
if( ! mxModel.is() )
throw RuntimeException( EXCEPT("Binding has no Model") );
// bind() will evaluate this binding as follows:
// 1) evaluate the binding expression
// 1b) if necessary, create node according to 'lazy author' rules
// 2) register suitable listeners on the instance (and remove old ones)
// 3) remove old MIPs defined by this binding
// 4) for every node in the binding nodeset do:
// 1) create proper evaluation context for this MIP
// 2) evaluate calculate expression (and push value into instance)
// 3) evaluate remaining MIPs
// 4) evaluate the locally defined MIPs, and push them to the model
// 1) evaluate the binding expression
EvaluationContext aContext = getEvaluationContext();
maBindingExpression.evaluate( aContext );
if( ! maBindingExpression.getNode().is() )
{
// 1b) create node (if valid element name)
if( isValidQName( maBindingExpression.getExpression(),
aContext.mxNamespaces ) )
{
aContext.mxContextNode->appendChild(
aContext.mxContextNode->getOwnerDocument()->createElement(
maBindingExpression.getExpression() ) );
maBindingExpression.evaluate( aContext );
OSL_ENSURE( maBindingExpression.getNode().is(),
"we should bind to the newly inserted node!" );
}
}
PathExpression::NodeVector_t aNodes = maBindingExpression.getNodeList();
// 2) register suitable listeners on the instance (and remove old ones)
if( maEventNodes.empty() || bForceRebind )
{
for (auto const& eventNode : maEventNodes)
lcl_removeListenerFromNode( eventNode, this );
maEventNodes.clear();
if( isSimpleBinding() )
for (auto const& node : aNodes)
maEventNodes.push_back(node);
else
maEventNodes.emplace_back( aContext.mxContextNode->getOwnerDocument(),
UNO_QUERY_THROW );
for (auto const& eventNode : maEventNodes)
lcl_addListenerToNode( eventNode, this );
}
// 3) remove old MIPs defined by this binding
Model* pModel = getModelImpl();
OSL_ENSURE( pModel != nullptr, "need model" );
pModel->removeMIPs( this );
// 4) calculate all MIPs
::std::vector<EvaluationContext> aMIPContexts = _getMIPEvaluationContexts();
for (auto & context : aMIPContexts)
{
EvaluationContext& rContext = context;
// evaluate calculate expression (and push value into instance)
// (prevent recursion using mbInCalculate
if( ! maCalculate.isEmptyExpression() )
{
if( ! mbInCalculate )
{
mbInCalculate = true;
maCalculate.evaluate( rContext );
pModel->setSimpleContent( rContext.mxContextNode,
maCalculate.getString() );
mbInCalculate = false;
}
}
// now evaluate remaining MIPs in the appropriate context
maReadonly.evaluate( rContext );
maRelevant.evaluate( rContext );
maRequired.evaluate( rContext );
maConstraint.evaluate( rContext );
// type is static; does not need updating
// evaluate the locally defined MIPs, and push them to the model
pModel->addMIP( this, rContext.mxContextNode, getLocalMIP() );
}
}
// helper for Binding::valueModified
static void lcl_modified( const css::uno::Reference<css::util::XModifyListener>& xListener,
const Reference<XInterface>& xSource )
{
OSL_ENSURE( xListener.is(), "no listener?" );
xListener->modified( EventObject( xSource ) );
}
// helper for Binding::valueModified
static void lcl_listentry( const css::uno::Reference<css::form::binding::XListEntryListener>& xListener,
const Reference<XInterface>& xSource )
{
OSL_ENSURE( xListener.is(), "no listener?" );
// TODO: send fine granular events
xListener->allEntriesChanged( EventObject( xSource ) );
}
// helper for Binding::valueModified
static void lcl_validate( const css::uno::Reference<css::form::validation::XValidityConstraintListener>& xListener,
const Reference<XInterface>& xSource )
{
OSL_ENSURE( xListener.is(), "no listener?" );
xListener->validityConstraintChanged( EventObject( xSource ) );
}
void Binding::valueModified()
{
// defer notifications, if so desired
if( mnDeferModifyNotifications > 0 )
{
mbValueModified = true;
return;
}
mbValueModified = false;
// query MIP used by our first node (also note validity)
Reference<XNode> xNode = maBindingExpression.getNode();
maMIP = getModelImpl()->queryMIP( xNode );
// distribute MIPs _used_ by this binding
if( xNode.is() )
{
notifyAndCachePropertyValue( HANDLE_ReadOnly );
notifyAndCachePropertyValue( HANDLE_Relevant );
}
// iterate over _value_ listeners and send each a modified signal,
// using this object as source (will also update validity, because
// control will query once the value has changed)
Reference<XInterface> xSource = static_cast<XPropertySet*>( this );
::std::for_each( maModifyListeners.begin(),
maModifyListeners.end(),
::std::bind( lcl_modified, std::placeholders::_1, xSource ) );
::std::for_each( maListEntryListeners.begin(),
maListEntryListeners.end(),
::std::bind( lcl_listentry, std::placeholders::_1, xSource ) );
::std::for_each( maValidityListeners.begin(),
maValidityListeners.end(),
::std::bind( lcl_validate, std::placeholders::_1, xSource ) );
// now distribute MIPs to children
if( xNode.is() )
distributeMIP( xNode->getFirstChild() );
}
void Binding::distributeMIP( const css::uno::Reference<css::xml::dom::XNode> & rxNode ) {
css::xforms::XFormsEventConcrete *pEvent = new css::xforms::XFormsEventConcrete;
pEvent->initXFormsEvent("xforms-generic", true, false);
Reference<XEvent> xEvent(pEvent);
// naive depth-first traversal
css::uno::Reference<css::xml::dom::XNode> xNode( rxNode );
while(xNode.is()) {
// notifications should be triggered at the
// leaf nodes first, bubbling upwards the hierarchy.
css::uno::Reference<css::xml::dom::XNode> child(xNode->getFirstChild());
if(child.is())
distributeMIP(child);
// we're standing at a particular node somewhere
// below the one which changed a property (MIP).
// bindings which are listening at this node will receive
// a notification message about what exactly happened.
Reference< XEventTarget > target(xNode,UNO_QUERY);
target->dispatchEvent(xEvent);
xNode = xNode->getNextSibling();
}
}
void Binding::bindingModified()
{
// defer notifications, if so desired
if( mnDeferModifyNotifications > 0 )
{
mbBindingModified = true;
return;
}
mbBindingModified = false;
// rebind (if live); then call valueModified
// A binding should be inert until its model is fully constructed.
if( isLive() )
{
bind( true );
valueModified();
}
}
MIP Binding::getLocalMIP() const
{
MIP aMIP;
if( maReadonly.hasValue() )
aMIP.setReadonly( maReadonly.getBool() );
if( maRelevant.hasValue() )
aMIP.setRelevant( maRelevant.getBool( true ) );
if( maRequired.hasValue() )
aMIP.setRequired( maRequired.getBool() );
if( maConstraint.hasValue() )
{
aMIP.setConstraint( maConstraint.getBool( true ) );
if( ! aMIP.isConstraint() )
aMIP.setConstraintExplanation( msExplainConstraint );
}
if( !msTypeName.isEmpty() )
aMIP.setTypeName( msTypeName );
// calculate: only handle presence of calculate; value set elsewhere
aMIP.setHasCalculate( !maCalculate.isEmptyExpression() );
return aMIP;
}
css::uno::Reference<css::xsd::XDataType> Binding::getDataType() const
{
OSL_ENSURE( getModel().is(), "need model" );
OSL_ENSURE( getModel()->getDataTypeRepository().is(), "need types" );
Reference<XDataTypeRepository> xRepository =
getModel()->getDataTypeRepository();
OUString sTypeName = maMIP.getTypeName();
return ( xRepository.is() && xRepository->hasByName( sTypeName ) )
? Reference<XDataType>( xRepository->getByName( sTypeName ), UNO_QUERY)
: Reference<XDataType>( nullptr );
}
bool Binding::isValid_DataType() const
{
Reference<XDataType> xDataType = getDataType();
return !xDataType.is()
|| xDataType->validate( maBindingExpression.getString() );
}
OUString Binding::explainInvalid_DataType()
{
Reference<XDataType> xDataType = getDataType();
return xDataType.is()
? xDataType->explainInvalid( maBindingExpression.getString() )
: OUString();
}
void Binding::clear()
{
// remove MIPs contributed by this binding
Model* pModel = getModelImpl();
if( pModel != nullptr )
pModel->removeMIPs( this );
// remove all references
for (auto const& eventNode : maEventNodes)
lcl_removeListenerFromNode( eventNode, this );
maEventNodes.clear();
// clear expressions
maBindingExpression.clear();
maReadonly.clear();
maRelevant.clear();
maRequired.clear();
maConstraint.clear();
maCalculate.clear();
// TODO: what about our listeners?
}
static void lcl_removeOtherNamespaces( const css::uno::Reference<css::container::XNameContainer>& xFrom,
css::uno::Reference<css::container::XNameContainer> const & xTo )
{
OSL_ENSURE( xFrom.is(), "no source" );
OSL_ENSURE( xTo.is(), "no target" );
// iterate over name in source
Sequence<OUString> aNames = xTo->getElementNames();
sal_Int32 nNames = aNames.getLength();
const OUString* pNames = aNames.getConstArray();
for( sal_Int32 i = 0; i < nNames; i++ )
{
const OUString& rName = pNames[i];
if( ! xFrom->hasByName( rName ) )
xTo->removeByName( rName );
}
}
/** copy namespaces from one namespace container into another
* @param bOverwrite true: overwrite namespaces in target
* false: do not overwrite namespaces in target
* @param bMove true: move namespaces (i.e., delete in source)
* false: copy namespaces (do not modify source)
* @param bFromSource true: use elements from source
* false: use only elements from target
*/
static void lcl_copyNamespaces( const css::uno::Reference<css::container::XNameContainer>& xFrom,
css::uno::Reference<css::container::XNameContainer> const & xTo,
bool bOverwrite )
{
OSL_ENSURE( xFrom.is(), "no source" );
OSL_ENSURE( xTo.is(), "no target" );
// iterate over name in source
Sequence<OUString> aNames = xFrom->getElementNames();
sal_Int32 nNames = aNames.getLength();
const OUString* pNames = aNames.getConstArray();
for( sal_Int32 i = 0; i < nNames; i++ )
{
const OUString& rName = pNames[i];
// determine whether to copy the value, and whether to delete
// it in the source:
bool bInTarget = xTo->hasByName( rName );
// we copy: if property is in target, and
// if bOverwrite is set, or when the namespace prefix is free
bool bCopy = bOverwrite || ! bInTarget;
// and now... ACTION!
if( bCopy )
{
if( bInTarget )
xTo->replaceByName( rName, xFrom->getByName( rName ) );
else
xTo->insertByName( rName, xFrom->getByName( rName ) );
}
}
}
// implement get*Namespaces()
// (identical for both variants)
css::uno::Reference<css::container::XNameContainer> Binding::_getNamespaces() const
{
css::uno::Reference<css::container::XNameContainer> xNamespaces = new NameContainer<OUString>();
lcl_copyNamespaces( mxNamespaces, xNamespaces, true );
// merge model's with binding's own namespaces
Model* pModel = getModelImpl();
if( pModel != nullptr )
lcl_copyNamespaces( pModel->getNamespaces(), xNamespaces, false );
return xNamespaces;
}
// implement set*Namespaces()
// bBinding = true: setBindingNamespaces, otherwise: setModelNamespaces
void Binding::_setNamespaces( const css::uno::Reference<css::container::XNameContainer>& rNamespaces,
bool bBinding )
{
Model* pModel = getModelImpl();
css::uno::Reference<css::container::XNameContainer> xModelNamespaces = ( pModel != nullptr )
? pModel->getNamespaces()
: nullptr;
OSL_ENSURE( ( pModel != nullptr ) == xModelNamespaces.is(), "no model nmsp?");
// remove deleted namespaces
lcl_removeOtherNamespaces( rNamespaces, mxNamespaces );
if( !bBinding && xModelNamespaces.is() )
lcl_removeOtherNamespaces( rNamespaces, xModelNamespaces );
// copy namespaces as appropriate
Sequence<OUString> aNames = rNamespaces->getElementNames();
sal_Int32 nNames = aNames.getLength();
const OUString* pNames = aNames.getConstArray();
for( sal_Int32 i = 0; i < nNames; i++ )
{
const OUString& rName = pNames[i];
Any aValue = rNamespaces->getByName( rName );
// determine whether the namespace should go into model's or
// into binding's namespaces
bool bLocal =
! xModelNamespaces.is()
|| mxNamespaces->hasByName( rName )
|| ( bBinding
&& xModelNamespaces.is()
&& xModelNamespaces->hasByName( rName ) );
// write namespace into the appropriate namespace container
css::uno::Reference<css::container::XNameContainer>& rWhich = bLocal ? mxNamespaces : xModelNamespaces;
OSL_ENSURE( rWhich.is(), "whoops" );
if( rWhich->hasByName( rName ) )
rWhich->replaceByName( rName, aValue );
else
rWhich->insertByName( rName, aValue );
// always 'promote' namespaces from binding to model, if equal
if( xModelNamespaces.is()
&& xModelNamespaces->hasByName( rName )
&& mxNamespaces->hasByName( rName )
&& xModelNamespaces->getByName( rName ) == mxNamespaces->getByName( rName ) )
{
mxNamespaces->removeByName( rName );
}
}
// ... done. But we modified the binding!
bindingModified();
}
void Binding::_checkBindingID()
{
if( !getModel().is() )
return;
Reference<XNameAccess> xBindings( getModel()->getBindings(), UNO_QUERY_THROW );
if( !msBindingID.isEmpty() )
return;
// no binding ID? then make one up!
OUString sIDPrefix = getResource( RID_STR_XFORMS_BINDING_UI_NAME ) + " ";
sal_Int32 nNumber = 0;
OUString sName;
do
{
nNumber++;
sName = sIDPrefix + OUString::number( nNumber );
}
while( xBindings->hasByName( sName ) );
setBindingID( sName );
}
// XValueBinding
css::uno::Sequence<css::uno::Type> Binding::getSupportedValueTypes()
{
return Convert::get().getTypes();
}
sal_Bool Binding::supportsType( const css::uno::Type& rType )
{
return Convert::get().hasType( rType );
}
css::uno::Any Binding::getValue( const css::uno::Type& rType )
{
// first, check for model
checkLive();
// second, check for type
if( ! supportsType( rType ) )
throw IncompatibleTypesException( EXCEPT( "type unsupported" ) );
// return string value (if present; else return empty Any)
css::uno::Any result;
if(maBindingExpression.hasValue()) {
OUString pathExpr(maBindingExpression.getString());
Convert &rConvert = Convert::get();
result = rConvert.toAny(pathExpr,rType);
}
return result;
}
void Binding::setValue( const css::uno::Any& aValue )
{
// first, check for model
checkLive();
// check for supported type
if( ! supportsType( aValue.getValueType() ) )
throw IncompatibleTypesException( EXCEPT( "type unsupported" ) );
if( !maBindingExpression.hasValue() )
throw InvalidBindingStateException( EXCEPT( "no suitable node found" ) );
css::uno::Reference<css::xml::dom::XNode> xNode = maBindingExpression.getNode();
if( !xNode.is() )
throw InvalidBindingStateException( EXCEPT( "no suitable node found" ) );
OUString sValue = Convert::get().toXSD( aValue );
bool bSuccess = getModelImpl()->setSimpleContent( xNode, sValue );
if( ! bSuccess )
throw InvalidBindingStateException( EXCEPT( "can't set value" ) );
}
// XListEntry Source
sal_Int32 Binding::getListEntryCount()
{
// first, check for model
checkLive();
// return size of node list
return maBindingExpression.getNodeList().size();
}
static void lcl_getString( const Reference<XNode>& xNode, OUStringBuffer& rBuffer )
{
if( xNode->getNodeType() == NodeType_TEXT_NODE
|| xNode->getNodeType() == NodeType_ATTRIBUTE_NODE )
{
rBuffer.append( xNode->getNodeValue() );
}
else
{
for( Reference<XNode> xChild = xNode->getFirstChild();
xChild.is();
xChild = xChild->getNextSibling() )
{
lcl_getString( xChild, rBuffer );
}
}
}
static OUString lcl_getString( const Reference<XNode>& xNode )
{
OUStringBuffer aBuffer;
lcl_getString( xNode, aBuffer );
return aBuffer.makeStringAndClear();
}
OUString Binding::getListEntry( sal_Int32 nPosition )
{
// first, check for model
checkLive();
// check bounds and return proper item
PathExpression::NodeVector_t aNodes = maBindingExpression.getNodeList();
if( nPosition < 0 || nPosition >= static_cast<sal_Int32>( aNodes.size() ) )
throw IndexOutOfBoundsException( EXCEPT("") );
return lcl_getString( aNodes[ nPosition ] );
}
Sequence<OUString> Binding::getAllListEntries()
{
// first, check for model
checkLive();
// create sequence of string values
PathExpression::NodeVector_t aNodes = maBindingExpression.getNodeList();
Sequence<OUString> aSequence( aNodes.size() );
OUString* pSequence = aSequence.getArray();
for( sal_Int32 n = 0; n < aSequence.getLength(); n++ )
{
pSequence[n] = lcl_getString( aNodes[n] );
}
return aSequence;
}
void Binding::addListEntryListener( const css::uno::Reference<css::form::binding::XListEntryListener>& xListener )
{
OSL_ENSURE( xListener.is(), "need listener!" );
if( ::std::find( maListEntryListeners.begin(),
maListEntryListeners.end(),
xListener)
== maListEntryListeners.end() )
maListEntryListeners.push_back( xListener );
}
void Binding::removeListEntryListener( const css::uno::Reference<css::form::binding::XListEntryListener>& xListener )
{
XListEntryListeners_t::iterator aIter =
::std::find( maListEntryListeners.begin(), maListEntryListeners.end(),
xListener );
if( aIter != maListEntryListeners.end() )
maListEntryListeners.erase( aIter );
}
// XValidator
sal_Bool Binding::isValid( const css::uno::Any& )
{
// first, check for model
checkLive();
// ignore value; determine validate only on current data
return isValid();
}
OUString Binding::explainInvalid(
const css::uno::Any& /*Value*/ )
{
// first, check for model
checkLive();
// ignore value; determine explanation only on current data
return explainInvalid();
}
void Binding::addValidityConstraintListener(
const css::uno::Reference<css::form::validation::XValidityConstraintListener>& xListener )
{
OSL_ENSURE( xListener.is(), "need listener!" );
if( ::std::find(maValidityListeners.begin(), maValidityListeners.end(), xListener)
== maValidityListeners.end() )
maValidityListeners.push_back( xListener );
}
void Binding::removeValidityConstraintListener(
const css::uno::Reference<css::form::validation::XValidityConstraintListener>& xListener )
{
XValidityConstraintListeners_t::iterator aIter =
::std::find( maValidityListeners.begin(), maValidityListeners.end(),
xListener );
if( aIter != maValidityListeners.end() )
maValidityListeners.erase( aIter );
}
// xml::dom::event::XEventListener
void Binding::handleEvent( const css::uno::Reference<css::xml::dom::events::XEvent>& xEvent )
{
OUString sType(xEvent->getType());
//OUString sEventMIPChanged("xforms-generic");
//if(sType.equals(sEventMIPChanged)) {
if(sType == "xforms-generic") {
// the modification of the 'mnDeferModifyNotifications'-member
// is necessary to prevent infinite notification looping.
// This can happened in case the binding which caused
// the notification chain is listening to those events
// as well...
bool bPreserveValueModified = mbValueModified;
mnDeferModifyNotifications++;
valueModified();
--mnDeferModifyNotifications;
mbValueModified = bPreserveValueModified;
return;
}
// if we're a dynamic binding, we better re-bind, too!
bind();
// our value was maybe modified
valueModified();
}
// lang::XUnoTunnel
sal_Int64 Binding::getSomething( const css::uno::Sequence<sal_Int8>& xId )
{
return reinterpret_cast<sal_Int64>( ( xId == getUnoTunnelId() ) ? this : nullptr );
}
// XCloneable
css::uno::Reference<css::util::XCloneable> SAL_CALL Binding::createClone()
{
Reference< XPropertySet > xClone;
Model* pModel = getModelImpl();
if ( pModel )
xClone = pModel->cloneBinding( this );
else
{
xClone = new Binding;
copy( this, xClone );
}
return css::uno::Reference<css::util::XCloneable>( xClone, UNO_QUERY );
}
// property set implementations
#define REGISTER_PROPERTY( property, type ) \
registerProperty( PROPERTY( property, type ), \
new DirectPropertyAccessor< Binding, type >( this, &Binding::set##property, &Binding::get##property ) );
#define REGISTER_PROPERTY_RO( property, type ) \
registerProperty( PROPERTY_RO( property, type ), \
new DirectPropertyAccessor< Binding, type >( this, nullptr, &Binding::get##property ) );
#define REGISTER_BOOL_PROPERTY_RO( property ) \
registerProperty( PROPERTY_RO( property, sal_Bool ), \
new BooleanPropertyAccessor< Binding >( this, nullptr, &Binding::get##property ) );
void Binding::initializePropertySet()
{
REGISTER_PROPERTY ( BindingID, OUString );
REGISTER_PROPERTY ( BindingExpression, OUString );
REGISTER_PROPERTY_RO ( Model, css::uno::Reference<css::xforms::XModel> );
REGISTER_PROPERTY ( BindingNamespaces, css::uno::Reference<css::container::XNameContainer> );
REGISTER_PROPERTY ( ModelNamespaces, css::uno::Reference<css::container::XNameContainer> );
REGISTER_PROPERTY_RO ( ModelID, OUString );
REGISTER_PROPERTY ( ReadonlyExpression, OUString );
REGISTER_PROPERTY ( RelevantExpression, OUString );
REGISTER_PROPERTY ( RequiredExpression, OUString );
REGISTER_PROPERTY ( ConstraintExpression, OUString );
REGISTER_PROPERTY ( CalculateExpression, OUString );
REGISTER_PROPERTY ( Type, OUString );
REGISTER_PROPERTY_RO ( ReadOnly, bool );
REGISTER_PROPERTY_RO ( Relevant, bool );
REGISTER_BOOL_PROPERTY_RO( ExternalData );
initializePropertyValueCache( HANDLE_ReadOnly );
initializePropertyValueCache( HANDLE_Relevant );
initializePropertyValueCache( HANDLE_ExternalData );
}
void Binding::addModifyListener(
const css::uno::Reference<css::util::XModifyListener>& xListener )
{
OSL_ENSURE( xListener.is(), "need listener!" );
if( ::std::find( maModifyListeners.begin(), maModifyListeners.end(), xListener )
== maModifyListeners.end() )
maModifyListeners.push_back( xListener );
// HACK: currently, we have to 'push' some MIPs to the control
// (read-only, relevant, etc.) To enable this, we need to update
// the control at least once when it registers here.
valueModified();
}
void Binding::removeModifyListener(
const css::uno::Reference<css::util::XModifyListener>& xListener )
{
ModifyListeners_t::iterator aIter =
::std::find( maModifyListeners.begin(), maModifyListeners.end(), xListener );
if( aIter != maModifyListeners.end() )
maModifyListeners.erase( aIter );
}
OUString Binding::getName()
{
return getBindingID();
}
void SAL_CALL Binding::setName( const OUString& rName )
{
// use the XPropertySet methods, so the change in the name is notified to the
// property listeners
setFastPropertyValue( HANDLE_BindingID, makeAny( rName ) );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|