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
|
/* -*- 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 <config_features.h>
#include <tools/debug.hxx>
#include <svl/eitem.hxx>
#include <svl/stritem.hxx>
#include <svl/intitem.hxx>
#include <svl/itemset.hxx>
#include <svl/visitem.hxx>
#include <svtools/javacontext.hxx>
#include <svl/itempool.hxx>
#include <tools/urlobj.hxx>
#include <com/sun/star/awt/FontDescriptor.hpp>
#include <com/sun/star/util/URLTransformer.hpp>
#include <com/sun/star/util/XURLTransformer.hpp>
#include <com/sun/star/frame/Desktop.hpp>
#include <com/sun/star/frame/XController.hpp>
#include <com/sun/star/frame/XFrameActionListener.hpp>
#include <com/sun/star/frame/XComponentLoader.hpp>
#include <com/sun/star/frame/XFrame.hpp>
#include <com/sun/star/frame/FrameActionEvent.hpp>
#include <com/sun/star/frame/FrameAction.hpp>
#include <com/sun/star/frame/status/FontHeight.hpp>
#include <com/sun/star/frame/status/ItemStatus.hpp>
#include <com/sun/star/frame/status/ItemState.hpp>
#include <com/sun/star/frame/status/Template.hpp>
#include <com/sun/star/frame/DispatchResultState.hpp>
#include <com/sun/star/frame/ModuleManager.hpp>
#include <com/sun/star/frame/status/Visibility.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/sequence.hxx>
#include <officecfg/Office/Common.hxx>
#include <osl/mutex.hxx>
#include <uno/current_context.hxx>
#include <vcl/svapp.hxx>
#include <sfx2/app.hxx>
#include <sfx2/unoctitm.hxx>
#include <sfx2/viewfrm.hxx>
#include <sfx2/frame.hxx>
#include <sfx2/ctrlitem.hxx>
#include <sfx2/sfxuno.hxx>
#include <sfx2/bindings.hxx>
#include <sfx2/dispatch.hxx>
#include <sfx2/sfxsids.hrc>
#include <sfx2/request.hxx>
#include "statcach.hxx"
#include <sfx2/msgpool.hxx>
#include <sfx2/objsh.hxx>
#include <osl/file.hxx>
#include <rtl/ustring.hxx>
#include <unotools/pathoptions.hxx>
#include <osl/time.h>
#include <iostream>
#include <map>
#include <memory>
#include <sal/log.hxx>
#include <LibreOfficeKit/LibreOfficeKitEnums.h>
#include <comphelper/lok.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::util;
enum URLTypeId
{
URLType_BOOL,
URLType_BYTE,
URLType_SHORT,
URLType_LONG,
URLType_HYPER,
URLType_STRING,
URLType_FLOAT,
URLType_DOUBLE,
URLType_COUNT
};
const char* URLTypeNames[URLType_COUNT] =
{
"bool",
"byte",
"short",
"long",
"hyper",
"string",
"float",
"double"
};
void SfxStatusDispatcher::ReleaseAll()
{
css::lang::EventObject aObject;
aObject.Source = static_cast<cppu::OWeakObject*>(this);
aListeners.disposeAndClear( aObject );
}
void SAL_CALL SfxStatusDispatcher::dispatch( const css::util::URL&, const css::uno::Sequence< css::beans::PropertyValue >& ) throw ( css::uno::RuntimeException, std::exception )
{
}
void SAL_CALL SfxStatusDispatcher::dispatchWithNotification(
const css::util::URL&,
const css::uno::Sequence< css::beans::PropertyValue >&,
const css::uno::Reference< css::frame::XDispatchResultListener >& ) throw( css::uno::RuntimeException, std::exception )
{
}
SfxStatusDispatcher::SfxStatusDispatcher()
: aListeners( aMutex )
{
}
void SAL_CALL SfxStatusDispatcher::addStatusListener(const css::uno::Reference< css::frame::XStatusListener > & aListener, const css::util::URL& aURL) throw ( css::uno::RuntimeException, std::exception )
{
aListeners.addInterface( aURL.Complete, aListener );
if ( aURL.Complete == ".uno:LifeTime" )
{
css::frame::FeatureStateEvent aEvent;
aEvent.FeatureURL = aURL;
aEvent.Source = static_cast<css::frame::XDispatch*>(this);
aEvent.IsEnabled = true;
aEvent.Requery = false;
aListener->statusChanged( aEvent );
}
}
void SAL_CALL SfxStatusDispatcher::removeStatusListener( const css::uno::Reference< css::frame::XStatusListener > & aListener, const css::util::URL& aURL ) throw ( css::uno::RuntimeException, std::exception )
{
aListeners.removeInterface( aURL.Complete, aListener );
}
// XUnoTunnel
sal_Int64 SAL_CALL SfxOfficeDispatch::getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) throw(css::uno::RuntimeException, std::exception)
{
if ( aIdentifier == impl_getStaticIdentifier() )
return sal::static_int_cast< sal_Int64 >( reinterpret_cast< sal_IntPtr >( this ));
else
return 0;
}
SfxOfficeDispatch::SfxOfficeDispatch( SfxBindings& rBindings, SfxDispatcher* pDispat, const SfxSlot* pSlot, const css::util::URL& rURL )
{
// this object is an adapter that shows a css::frame::XDispatch-Interface to the outside and uses a SfxControllerItem to monitor a state
pControllerItem = new SfxDispatchController_Impl( this, &rBindings, pDispat, pSlot, rURL );
}
SfxOfficeDispatch::SfxOfficeDispatch( SfxDispatcher* pDispat, const SfxSlot* pSlot, const css::util::URL& rURL )
{
// this object is an adapter that shows a css::frame::XDispatch-Interface to the outside and uses a SfxControllerItem to monitor a state
pControllerItem = new SfxDispatchController_Impl( this, nullptr, pDispat, pSlot, rURL );
}
SfxOfficeDispatch::~SfxOfficeDispatch()
{
if ( pControllerItem )
{
// when dispatch object is released, destroy its connection to this object and destroy it
pControllerItem->UnBindController();
delete pControllerItem;
}
}
const css::uno::Sequence< sal_Int8 >& SfxOfficeDispatch::impl_getStaticIdentifier()
{
// {38 57 CA 80 09 36 11 d4 83 FE 00 50 04 52 6B 21}
static const sal_uInt8 pGUID[16] = { 0x38, 0x57, 0xCA, 0x80, 0x09, 0x36, 0x11, 0xd4, 0x83, 0xFE, 0x00, 0x50, 0x04, 0x52, 0x6B, 0x21 };
static css::uno::Sequence< sal_Int8 > seqID(reinterpret_cast<const sal_Int8*>(pGUID), 16) ;
return seqID ;
}
void SAL_CALL SfxOfficeDispatch::dispatch( const css::util::URL& aURL, const css::uno::Sequence< css::beans::PropertyValue >& aArgs ) throw ( css::uno::RuntimeException, std::exception )
{
// ControllerItem is the Impl class
if ( pControllerItem )
{
#if HAVE_FEATURE_JAVA
// The JavaContext contains an interaction handler which is used when
// the creation of a Java Virtual Machine fails. The second parameter
// indicates, that there shall only be one user notification (message box)
// even if the same error (interaction) reoccurs. The effect is, that if a
// user selects a menu entry than they may get only one notification that
// a JRE is not selected.
css::uno::ContextLayer layer(
new svt::JavaContext( css::uno::getCurrentContext() ) );
#endif
pControllerItem->dispatch( aURL, aArgs, css::uno::Reference < css::frame::XDispatchResultListener >() );
}
}
void SAL_CALL SfxOfficeDispatch::dispatchWithNotification( const css::util::URL& aURL,
const css::uno::Sequence< css::beans::PropertyValue >& aArgs,
const css::uno::Reference< css::frame::XDispatchResultListener >& rListener ) throw( css::uno::RuntimeException, std::exception )
{
// ControllerItem is the Impl class
if ( pControllerItem )
{
#if HAVE_FEATURE_JAVA
// see comment for SfxOfficeDispatch::dispatch
css::uno::ContextLayer layer( new svt::JavaContext( css::uno::getCurrentContext() ) );
#endif
pControllerItem->dispatch( aURL, aArgs, rListener );
}
}
void SAL_CALL SfxOfficeDispatch::addStatusListener(const css::uno::Reference< css::frame::XStatusListener > & aListener, const css::util::URL& aURL) throw ( css::uno::RuntimeException, std::exception )
{
GetListeners().addInterface( aURL.Complete, aListener );
if ( pControllerItem )
{
// ControllerItem is the Impl class
pControllerItem->addStatusListener( aListener, aURL );
}
}
SfxDispatcher* SfxOfficeDispatch::GetDispatcher_Impl()
{
return pControllerItem->GetDispatcher();
}
void SfxOfficeDispatch::SetFrame(const css::uno::Reference< css::frame::XFrame >& xFrame)
{
if ( pControllerItem )
pControllerItem->SetFrame( xFrame );
}
void SfxOfficeDispatch::SetMasterUnoCommand( bool bSet )
{
if ( pControllerItem )
pControllerItem->setMasterSlaveCommand( bSet );
}
// Determine if URL contains a master/slave command which must be handled a little bit different
bool SfxOfficeDispatch::IsMasterUnoCommand( const css::util::URL& aURL )
{
return aURL.Protocol == ".uno:" && ( aURL.Path.indexOf( '.' ) > 0 );
}
OUString SfxOfficeDispatch::GetMasterUnoCommand( const css::util::URL& aURL )
{
OUString aMasterCommand;
if ( IsMasterUnoCommand( aURL ))
{
sal_Int32 nIndex = aURL.Path.indexOf( '.' );
if ( nIndex > 0 )
aMasterCommand = aURL.Path.copy( 0, nIndex );
}
return aMasterCommand;
}
SfxDispatchController_Impl::SfxDispatchController_Impl(
SfxOfficeDispatch* pDisp,
SfxBindings* pBind,
SfxDispatcher* pDispat,
const SfxSlot* pSlot,
const css::util::URL& rURL )
: aDispatchURL( rURL )
, pDispatcher( pDispat )
, pBindings( pBind )
, pLastState( nullptr )
, nSlot( pSlot->GetSlotId() )
, pDispatch( pDisp )
, bMasterSlave( false )
, bVisible( true )
, pUnoName( pSlot->pUnoName )
{
if ( aDispatchURL.Protocol == "slot:" && pUnoName )
{
OStringBuffer aTmp(".uno:");
aTmp.append(pUnoName);
aDispatchURL.Complete = OStringToOUString(aTmp.makeStringAndClear(), RTL_TEXTENCODING_ASCII_US);
Reference< XURLTransformer > xTrans( URLTransformer::create( ::comphelper::getProcessComponentContext() ) );
xTrans->parseStrict( aDispatchURL );
}
SetId( nSlot );
if ( pBindings )
{
// Bind immediately to enable the cache to recycle dispatches when asked for the same command
// a command in "slot" or in ".uno" notation must be treated as identical commands!
pBindings->ENTERREGISTRATIONS();
BindInternal_Impl( nSlot, pBindings );
pBindings->LEAVEREGISTRATIONS();
}
}
SfxDispatchController_Impl::~SfxDispatchController_Impl()
{
if ( pLastState && !IsInvalidItem( pLastState ) )
delete pLastState;
if ( pDispatch )
{
// disconnect
pDispatch->pControllerItem = nullptr;
// force all listeners to release the dispatch object
css::lang::EventObject aObject;
aObject.Source = static_cast<cppu::OWeakObject*>(pDispatch);
pDispatch->GetListeners().disposeAndClear( aObject );
}
}
void SfxDispatchController_Impl::SetFrame(const css::uno::Reference< css::frame::XFrame >& _xFrame)
{
xFrame = _xFrame;
}
void SfxDispatchController_Impl::setMasterSlaveCommand( bool bSet )
{
bMasterSlave = bSet;
}
void SfxDispatchController_Impl::UnBindController()
{
pDispatch = nullptr;
if ( IsBound() )
{
GetBindings().ENTERREGISTRATIONS();
SfxControllerItem::UnBind();
GetBindings().LEAVEREGISTRATIONS();
}
}
void SfxDispatchController_Impl::addParametersToArgs( const css::util::URL& aURL, css::uno::Sequence< css::beans::PropertyValue >& rArgs )
{
// Extract the parameter from the URL and put them into the property value sequence
sal_Int32 nQueryIndex = aURL.Complete.indexOf( '?' );
if ( nQueryIndex > 0 )
{
OUString aParamString( aURL.Complete.copy( nQueryIndex+1 ));
sal_Int32 nIndex = 0;
do
{
OUString aToken = aParamString.getToken( 0, '&', nIndex );
sal_Int32 nParmIndex = 0;
OUString aParamType;
OUString aParamName = aToken.getToken( 0, '=', nParmIndex );
OUString aValue = (nParmIndex!=-1) ? aToken.getToken( 0, '=', nParmIndex ) : OUString();
if ( !aParamName.isEmpty() )
{
nParmIndex = 0;
aToken = aParamName;
aParamName = aToken.getToken( 0, ':', nParmIndex );
aParamType = (nParmIndex!=-1) ? aToken.getToken( 0, ':', nParmIndex ) : OUString();
}
sal_Int32 nLen = rArgs.getLength();
rArgs.realloc( nLen+1 );
rArgs[nLen].Name = aParamName;
if ( aParamType.isEmpty() )
{
// Default: LONG
rArgs[nLen].Value <<= aValue.toInt32();
}
else if ( aParamType.equalsAsciiL( URLTypeNames[URLType_BOOL], 4 ))
{
// sal_Bool support
rArgs[nLen].Value <<= aValue.toBoolean();
}
else if ( aParamType.equalsAsciiL( URLTypeNames[URLType_BYTE], 4 ))
{
// sal_uInt8 support
rArgs[nLen].Value <<= sal_Int8( aValue.toInt32() );
}
else if ( aParamType.equalsAsciiL( URLTypeNames[URLType_LONG], 4 ))
{
// LONG support
rArgs[nLen].Value <<= aValue.toInt32();
}
else if ( aParamType.equalsAsciiL( URLTypeNames[URLType_SHORT], 5 ))
{
// SHORT support
rArgs[nLen].Value <<= sal_Int8( aValue.toInt32() );
}
else if ( aParamType.equalsAsciiL( URLTypeNames[URLType_HYPER], 5 ))
{
// HYPER support
rArgs[nLen].Value <<= aValue.toInt64();
}
else if ( aParamType.equalsAsciiL( URLTypeNames[URLType_FLOAT], 5 ))
{
// FLOAT support
rArgs[nLen].Value <<= aValue.toFloat();
}
else if ( aParamType.equalsAsciiL( URLTypeNames[URLType_STRING], 6 ))
{
// STRING support
rArgs[nLen].Value <<= OUString( INetURLObject::decode( aValue, INetURLObject::DECODE_WITH_CHARSET ));
}
else if ( aParamType.equalsAsciiL( URLTypeNames[URLType_DOUBLE], 6))
{
// DOUBLE support
rArgs[nLen].Value <<= aValue.toDouble();
}
}
while ( nIndex >= 0 );
}
}
SfxMapUnit SfxDispatchController_Impl::GetCoreMetric( SfxItemPool& rPool, sal_uInt16 nSlotId )
{
sal_uInt16 nWhich = rPool.GetWhich( nSlotId );
return rPool.GetMetric( nWhich );
}
OUString SfxDispatchController_Impl::getSlaveCommand( const css::util::URL& rURL )
{
OUString aSlaveCommand;
sal_Int32 nIndex = rURL.Path.indexOf( '.' );
if (( nIndex > 0 ) && ( nIndex < rURL.Path.getLength() ))
aSlaveCommand = rURL.Path.copy( nIndex+1 );
return aSlaveCommand;
}
namespace {
/// Class that collects the usage information - how many times what .uno: command was used.
class UsageInfo {
typedef std::map<OUString, int> UsageMap;
/// Are we collecting the info? We cache the value because the call to save can happen very late.
bool mbIsCollecting;
/// Command vs. how many times it was used
UsageMap maUsage;
/// config path, get it long before atexit time
OUString msConfigPath;
public:
UsageInfo() : mbIsCollecting(false)
{
}
~UsageInfo()
{
save();
}
/// Increment command's use.
void increment(const OUString &rCommand);
/// Save the usage data for the next session.
void save();
/// Modify the flag whether we are collecting.
void setCollecting(bool bIsCollecting)
{
mbIsCollecting = bIsCollecting;
if (mbIsCollecting)
msConfigPath = SvtPathOptions().GetConfigPath();
}
};
void UsageInfo::increment(const OUString &rCommand)
{
UsageMap::iterator it = maUsage.find(rCommand);
if (it != maUsage.end())
++(it->second);
else
maUsage[rCommand] = 1;
}
void UsageInfo::save()
{
if (!mbIsCollecting)
return;
OUString path(msConfigPath);
path += "usage/";
osl::Directory::createPath(path);
//get system time information.
TimeValue systemTime;
TimeValue localTime;
oslDateTime localDateTime;
osl_getSystemTime( &systemTime );
osl_getLocalTimeFromSystemTime( &systemTime, &localTime );
osl_getDateTimeFromTimeValue( &localTime, &localDateTime );
sal_Char time[1024];
sprintf(time,"%4i-%02i-%02iT%02i_%02i_%02i", localDateTime.Year, localDateTime.Month, localDateTime.Day, localDateTime.Hours, localDateTime.Minutes, localDateTime.Seconds);
//filename type: usage-YYYY-MM-DDTHH_MM_SS.csv
OUString filename = "usage-" + OUString::createFromAscii(time) + ".csv";
path += filename;
osl::File file(path);
if( file.open(osl_File_OpenFlag_Read | osl_File_OpenFlag_Write | osl_File_OpenFlag_Create) == osl::File::E_None )
{
OString aUsageInfoMsg = "Document Type;Command;Count";
for (UsageMap::const_iterator it = maUsage.begin(); it != maUsage.end(); ++it)
aUsageInfoMsg += "\n" + it->first.toUtf8() + ";" + OString::number(it->second);
sal_uInt64 written = 0;
file.write(aUsageInfoMsg.pData->buffer, aUsageInfoMsg.getLength(), written);
file.close();
}
}
class theUsageInfo : public rtl::Static<UsageInfo, theUsageInfo> {};
/// Extracts information about the command + args, and stores that.
void collectUsageInformation(const util::URL& rURL, const uno::Sequence<beans::PropertyValue>& rArgs)
{
bool bCollecting = getenv("LO_COLLECT_USAGE") || officecfg::Office::Common::Misc::CollectUsageInformation::get();
theUsageInfo::get().setCollecting(bCollecting);
if (!bCollecting)
return;
OUStringBuffer aBuffer;
// app identification [uh, several UNO calls :-(]
uno::Reference<uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
uno::Reference<frame::XModuleManager2> xModuleManager(frame::ModuleManager::create(xContext));
uno::Reference<frame::XDesktop2> xDesktop = frame::Desktop::create(xContext);
uno::Reference<frame::XFrame> xFrame = xDesktop->getCurrentFrame();
OUString aModule(xModuleManager->identify(xFrame));
sal_Int32 nLastDot = aModule.lastIndexOf('.');
if (nLastDot >= 0)
aModule = aModule.copy(nLastDot + 1);
aBuffer.append(aModule);
aBuffer.append(';');
// command
aBuffer.append(rURL.Protocol);
aBuffer.append(rURL.Path);
sal_Int32 nCount = rArgs.getLength();
// parameters - only their names, not the values (could be sensitive!)
if (nCount > 0)
{
aBuffer.append('(');
for (sal_Int32 n = 0; n < nCount; n++)
{
const css::beans::PropertyValue& rProp = rArgs[n];
if (n > 0)
aBuffer.append(',');
aBuffer.append(rProp.Name);
}
aBuffer.append(')');
}
OUString aCommand(aBuffer.makeStringAndClear());
// store
theUsageInfo::get().increment(aCommand);
}
}
void SAL_CALL SfxDispatchController_Impl::dispatch( const css::util::URL& aURL,
const css::uno::Sequence< css::beans::PropertyValue >& aArgs,
const css::uno::Reference< css::frame::XDispatchResultListener >& rListener )
throw (css::uno::RuntimeException, std::exception)
{
collectUsageInformation(aURL, aArgs);
SolarMutexGuard aGuard;
if (
pDispatch &&
(
(aURL.Protocol == ".uno:" && aURL.Path == aDispatchURL.Path) ||
(aURL.Protocol == "slot:" && aURL.Path.toInt32() == GetId())
)
)
{
if ( !pDispatcher && pBindings )
pDispatcher = GetBindings().GetDispatcher_Impl();
css::uno::Sequence< css::beans::PropertyValue > lNewArgs;
sal_Int32 nCount = aArgs.getLength();
// Support for URL based arguments
INetURLObject aURLObj( aURL.Complete );
if ( aURLObj.HasParam() )
addParametersToArgs( aURL, lNewArgs );
// Try to find call mode and frame name inside given arguments...
SfxCallMode nCall = SfxCallMode::RECORD;
sal_Int32 nMarkArg = -1;
// Filter arguments which shouldn't be part of the sequence property value
sal_uInt16 nModifier(0);
std::vector< css::beans::PropertyValue > aAddArgs;
for( sal_Int32 n=0; n<nCount; n++ )
{
const css::beans::PropertyValue& rProp = aArgs[n];
if( rProp.Name == "SynchronMode" )
{
bool bTemp;
if( rProp.Value >>= bTemp )
nCall = bTemp ? SfxCallMode::SYNCHRON : SfxCallMode::ASYNCHRON;
}
else if( rProp.Name == "Bookmark" )
{
nMarkArg = n;
aAddArgs.push_back( aArgs[n] );
}
else if( rProp.Name == "KeyModifier" )
rProp.Value >>= nModifier;
else
aAddArgs.push_back( aArgs[n] );
}
// Add needed arguments to sequence property value
sal_uInt32 nAddArgs = aAddArgs.size();
if ( nAddArgs > 0 )
{
sal_uInt32 nIndex( lNewArgs.getLength() );
lNewArgs.realloc( lNewArgs.getLength()+aAddArgs.size() );
for ( sal_uInt32 i = 0; i < nAddArgs; i++ )
lNewArgs[nIndex++] = aAddArgs[i];
}
// Overwrite possible detected synchron argument, if real listener exists (currently no other way)
if ( rListener.is() )
nCall = SfxCallMode::SYNCHRON;
if( GetId() == SID_JUMPTOMARK && nMarkArg == - 1 )
{
// we offer dispatches for SID_JUMPTOMARK if the URL points to a bookmark inside the document
// so we must retrieve this as an argument from the parsed URL
lNewArgs.realloc( lNewArgs.getLength()+1 );
nMarkArg = lNewArgs.getLength()-1;
lNewArgs[nMarkArg].Name = "Bookmark";
lNewArgs[nMarkArg].Value <<= aURL.Mark;
}
css::uno::Reference< css::frame::XFrame > xFrameRef(xFrame.get(), css::uno::UNO_QUERY);
if (! xFrameRef.is() && pDispatcher)
{
SfxViewFrame* pViewFrame = pDispatcher->GetFrame();
if (pViewFrame)
xFrameRef = pViewFrame->GetFrame().GetFrameInterface();
}
bool bSuccess = false;
const SfxPoolItem* pItem = nullptr;
SfxMapUnit eMapUnit( SFX_MAPUNIT_100TH_MM );
// Extra scope so that aInternalSet is destroyed before
// rListener->dispatchFinished potentially calls
// framework::Desktop::terminate -> SfxApplication::Deinitialize ->
// ~CntItemPool:
if (pDispatcher)
{
SfxAllItemSet aInternalSet( SfxGetpApp()->GetPool() );
if (xFrameRef.is()) // an empty set is no problem ... but an empty frame reference can be a problem !
aInternalSet.Put( SfxUnoFrameItem( SID_FILLFRAME, xFrameRef ) );
SfxShell* pShell( nullptr );
// #i102619# Retrieve metric from shell before execution - the shell could be destroyed after execution
if ( pDispatcher->GetBindings() )
{
if ( !pDispatcher->IsLocked( GetId() ) )
{
const SfxSlot *pSlot = nullptr;
if ( pDispatcher->GetShellAndSlot_Impl( GetId(), &pShell, &pSlot, false,
SfxCallMode::MODAL==(nCall&SfxCallMode::MODAL), false ) )
{
if ( bMasterSlave )
{
// Extract slave command and add argument to the args list. Master slot MUST
// have a argument that has the same name as the master slot and type is SfxStringItem.
sal_Int32 nIndex = lNewArgs.getLength();
lNewArgs.realloc( nIndex+1 );
lNewArgs[nIndex].Name = OUString::createFromAscii( pSlot->pUnoName );
lNewArgs[nIndex].Value = makeAny( SfxDispatchController_Impl::getSlaveCommand( aDispatchURL ));
}
eMapUnit = GetCoreMetric( pShell->GetPool(), GetId() );
std::unique_ptr<SfxAllItemSet> xSet(new SfxAllItemSet(pShell->GetPool()));
TransformParameters(GetId(), lNewArgs, *xSet, pSlot);
if (xSet->Count())
{
// execute with arguments - call directly
pItem = pDispatcher->Execute(GetId(), nCall, xSet.get(), &aInternalSet, nModifier);
bSuccess = (pItem != nullptr);
}
else
{
// Be sure to delete this before we send a dispatch
// request, which will destroy the current shell.
xSet.reset();
// execute using bindings, enables support for toggle/enum etc.
SfxRequest aReq( GetId(), nCall, pShell->GetPool() );
aReq.SetModifier( nModifier );
aReq.SetInternalArgs_Impl(aInternalSet);
pDispatcher->GetBindings()->Execute_Impl( aReq, pSlot, pShell );
pItem = aReq.GetReturnValue();
bSuccess = aReq.IsDone() || pItem != nullptr;
}
}
#ifdef DBG_UTIL
else
SAL_INFO("sfx.control", "MacroPlayer: Unknown slot dispatched!");
#endif
}
}
else
{
eMapUnit = GetCoreMetric( SfxGetpApp()->GetPool(), GetId() );
// AppDispatcher
SfxAllItemSet aSet( SfxGetpApp()->GetPool() );
TransformParameters( GetId(), lNewArgs, aSet );
if ( aSet.Count() )
pItem = pDispatcher->Execute( GetId(), nCall, &aSet, &aInternalSet, nModifier );
else
// SfxRequests take empty sets as argument sets, GetArgs() returning non-zero!
pItem = pDispatcher->Execute( GetId(), nCall, nullptr, &aInternalSet, nModifier );
// no bindings, no invalidate ( usually done in SfxDispatcher::Call_Impl()! )
if ( SfxApplication::Get() )
{
SfxDispatcher* pAppDispat = SfxGetpApp()->GetAppDispatcher_Impl();
if ( pAppDispat )
{
const SfxPoolItem* pState=nullptr;
SfxItemState eState = pDispatcher->QueryState( GetId(), pState );
StateChanged( GetId(), eState, pState );
}
}
bSuccess = (pItem != nullptr);
}
}
if ( rListener.is() )
{
css::frame::DispatchResultEvent aEvent;
if ( bSuccess )
aEvent.State = css::frame::DispatchResultState::SUCCESS;
else
aEvent.State = css::frame::DispatchResultState::FAILURE;
aEvent.Source = static_cast<css::frame::XDispatch*>(pDispatch);
if ( bSuccess && pItem && dynamic_cast< const SfxVoidItem *>( pItem ) == nullptr )
{
sal_uInt16 nSubId( 0 );
if ( eMapUnit == SFX_MAPUNIT_TWIP )
nSubId |= CONVERT_TWIPS;
pItem->QueryValue( aEvent.Result, (sal_uInt8)nSubId );
}
rListener->dispatchFinished( aEvent );
}
}
}
SfxDispatcher* SfxDispatchController_Impl::GetDispatcher()
{
if ( !pDispatcher && pBindings )
pDispatcher = GetBindings().GetDispatcher_Impl();
return pDispatcher;
}
void SAL_CALL SfxDispatchController_Impl::addStatusListener(const css::uno::Reference< css::frame::XStatusListener > & aListener, const css::util::URL& aURL) throw ( css::uno::RuntimeException )
{
SolarMutexGuard aGuard;
if ( !pDispatch )
return;
// Use alternative QueryState call to have a valid UNO representation of the state.
css::uno::Any aState;
if ( !pDispatcher && pBindings )
pDispatcher = GetBindings().GetDispatcher_Impl();
SfxItemState eState = pDispatcher ? pDispatcher->QueryState( GetId(), aState ) : SfxItemState::DONTCARE;
if ( eState == SfxItemState::DONTCARE )
{
// Use special uno struct to transport don't care state
css::frame::status::ItemStatus aItemStatus;
aItemStatus.State = css::frame::status::ItemState::DONT_CARE;
aState = makeAny( aItemStatus );
}
css::frame::FeatureStateEvent aEvent;
aEvent.FeatureURL = aURL;
aEvent.Source = static_cast<css::frame::XDispatch*>(pDispatch);
aEvent.Requery = false;
if ( bVisible )
{
aEvent.IsEnabled = eState != SfxItemState::DISABLED;
aEvent.State = aState;
}
else
{
css::frame::status::Visibility aVisibilityStatus;
aVisibilityStatus.bVisible = false;
// MBA: we might decide to *not* disable "invisible" slots, but this would be
// a change that needs to adjust at least the testtool
aEvent.IsEnabled = false;
aEvent.State = makeAny( aVisibilityStatus );
}
aListener->statusChanged( aEvent );
}
void SfxDispatchController_Impl::sendStatusChanged(const OUString& rURL, const css::frame::FeatureStateEvent& rEvent)
{
::cppu::OInterfaceContainerHelper* pContnr = pDispatch->GetListeners().getContainer(rURL);
if (!pContnr)
return;
::cppu::OInterfaceIteratorHelper aIt(*pContnr);
while (aIt.hasMoreElements())
{
try
{
static_cast<css::frame::XStatusListener*>(aIt.next())->statusChanged(rEvent);
}
catch (const css::uno::RuntimeException&)
{
aIt.remove();
}
}
}
void SfxDispatchController_Impl::StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState, SfxSlotServer* pSlotServ )
{
if ( !pDispatch )
return;
// Bindings instance notifies controller about a state change, listeners must be notified also
// Don't cache visibility state changes as they are volatile. We need our real state to send it
// to our controllers after visibility is set to true.
bool bNotify = true;
if ( pState && !IsInvalidItem( pState ) )
{
if ( dynamic_cast< const SfxVisibilityItem *>( pState ) == nullptr )
{
if (pLastState && !IsInvalidItem(pLastState))
{
bNotify = typeid(*pState) != typeid(*pLastState) || *pState != *pLastState;
delete pLastState;
}
pLastState = !IsInvalidItem(pState) ? pState->Clone() : pState;
bVisible = true;
}
else
bVisible = static_cast<const SfxVisibilityItem *>(pState)->GetValue();
}
else
{
if ( pLastState && !IsInvalidItem( pLastState ) )
delete pLastState;
pLastState = pState;
}
if (bNotify)
{
css::uno::Any aState;
if ( ( eState >= SfxItemState::DEFAULT ) && pState && !IsInvalidItem( pState ) && dynamic_cast< const SfxVoidItem *>( pState ) == nullptr )
{
// Retrieve metric from pool to have correct sub ID when calling QueryValue
sal_uInt16 nSubId( 0 );
SfxMapUnit eMapUnit( SFX_MAPUNIT_100TH_MM );
// retrieve the core metric
// it's enough to check the objectshell, the only shell that does not use the pool of the document
// is SfxViewFrame, but it hasn't any metric parameters
// TODO/LATER: what about the FormShell? Does it use any metric data?! Perhaps it should use the Pool of the document!
if ( pSlotServ && pDispatcher )
{
SfxShell* pShell = pDispatcher->GetShell( pSlotServ->GetShellLevel() );
DBG_ASSERT( pShell, "Can't get core metric without shell!" );
if ( pShell )
eMapUnit = GetCoreMetric( pShell->GetPool(), nSID );
}
if ( eMapUnit == SFX_MAPUNIT_TWIP )
nSubId |= CONVERT_TWIPS;
pState->QueryValue( aState, (sal_uInt8)nSubId );
}
else if ( eState == SfxItemState::DONTCARE )
{
// Use special uno struct to transport don't care state
css::frame::status::ItemStatus aItemStatus;
aItemStatus.State = css::frame::status::ItemState::DONT_CARE;
aState = makeAny( aItemStatus );
}
css::frame::FeatureStateEvent aEvent;
aEvent.FeatureURL = aDispatchURL;
aEvent.Source = static_cast<css::frame::XDispatch*>(pDispatch);
aEvent.IsEnabled = eState != SfxItemState::DISABLED;
aEvent.Requery = false;
aEvent.State = aState;
if (pDispatcher && pDispatcher->GetFrame())
{
InterceptLOKStateChangeEvent(
pDispatcher->GetFrame()->GetObjectShell(), aEvent);
}
Sequence< OUString > seqNames = pDispatch->GetListeners().getContainedTypes();
sal_Int32 nLength = seqNames.getLength();
for (sal_Int32 i = 0; i < nLength; ++i)
{
if (seqNames[i] == aDispatchURL.Main || seqNames[i] == aDispatchURL.Complete)
sendStatusChanged(seqNames[i], aEvent);
}
}
}
void SfxDispatchController_Impl::StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState )
{
StateChanged( nSID, eState, pState, nullptr );
}
void SfxDispatchController_Impl::InterceptLOKStateChangeEvent(const SfxObjectShell* objSh, const css::frame::FeatureStateEvent& aEvent)
{
if (!comphelper::LibreOfficeKit::isActive())
return;
OUStringBuffer aBuffer;
aBuffer.append(aEvent.FeatureURL.Complete);
aBuffer.append("=");
if (aEvent.FeatureURL.Path == "Bold" ||
aEvent.FeatureURL.Path == "CenterPara" ||
aEvent.FeatureURL.Path == "CharBackgroundExt" ||
aEvent.FeatureURL.Path == "DefaultBullet" ||
aEvent.FeatureURL.Path == "DefaultNumbering" ||
aEvent.FeatureURL.Path == "Italic" ||
aEvent.FeatureURL.Path == "JustifyPara" ||
aEvent.FeatureURL.Path == "LeftPara" ||
aEvent.FeatureURL.Path == "OutlineFont" ||
aEvent.FeatureURL.Path == "RightPara" ||
aEvent.FeatureURL.Path == "Shadowed" ||
aEvent.FeatureURL.Path == "SubScript" ||
aEvent.FeatureURL.Path == "SuperScript" ||
aEvent.FeatureURL.Path == "Strikeout" ||
aEvent.FeatureURL.Path == "Underline" ||
aEvent.FeatureURL.Path == "ModifiedStatus")
{
bool bTemp = false;
aEvent.State >>= bTemp;
aBuffer.append(bTemp);
}
else if (aEvent.FeatureURL.Path == "CharFontName")
{
css::awt::FontDescriptor aFontDesc;
aEvent.State >>= aFontDesc;
aBuffer.append(aFontDesc.Name);
}
else if (aEvent.FeatureURL.Path == "FontHeight")
{
css::frame::status::FontHeight aFontHeight;
aEvent.State >>= aFontHeight;
aBuffer.append(aFontHeight.Height);
}
else if (aEvent.FeatureURL.Path == "StyleApply")
{
css::frame::status::Template aTemplate;
aEvent.State >>= aTemplate;
aBuffer.append(aTemplate.StyleName);
}
else if (aEvent.FeatureURL.Path == "BackColor" ||
aEvent.FeatureURL.Path == "BackgroundColor" ||
aEvent.FeatureURL.Path == "CharBackColor" ||
aEvent.FeatureURL.Path == "Color" ||
aEvent.FeatureURL.Path == "FontColor")
{
sal_Int32 nColor = -1;
aEvent.State >>= nColor;
aBuffer.append(nColor);
}
else if (aEvent.FeatureURL.Path == "Undo" ||
aEvent.FeatureURL.Path == "Redo" ||
aEvent.FeatureURL.Path == "Cut" ||
aEvent.FeatureURL.Path == "Copy" ||
aEvent.FeatureURL.Path == "Paste" ||
aEvent.FeatureURL.Path == "SelectAll" ||
aEvent.FeatureURL.Path == "InsertAnnotation" ||
aEvent.FeatureURL.Path == "InsertRowsBefore" ||
aEvent.FeatureURL.Path == "InsertRowsAfter" ||
aEvent.FeatureURL.Path == "InsertColumnsBefore" ||
aEvent.FeatureURL.Path == "InsertColumnsAfter" ||
aEvent.FeatureURL.Path == "DeleteRows" ||
aEvent.FeatureURL.Path == "DeleteColumns" ||
aEvent.FeatureURL.Path == "DeleteTable" ||
aEvent.FeatureURL.Path == "SelectTable" ||
aEvent.FeatureURL.Path == "EntireRow" ||
aEvent.FeatureURL.Path == "EntireColumn" ||
aEvent.FeatureURL.Path == "EntireCell" ||
aEvent.FeatureURL.Path == "MergeCells")
{
aBuffer.append(aEvent.IsEnabled ? OUString("enabled") : OUString("disabled"));
}
else if (aEvent.FeatureURL.Path == "InsertPage" ||
aEvent.FeatureURL.Path == "DeletePage" ||
aEvent.FeatureURL.Path == "DuplicatePage")
{
aBuffer.append(OUString::boolean(aEvent.IsEnabled));
}
else
{
return;
}
OUString payload = aBuffer.makeStringAndClear();
objSh->libreOfficeKitCallback(LOK_CALLBACK_STATE_CHANGED, payload.toUtf8().getStr());
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|