LCOV - code coverage report
Current view: top level - libreoffice/desktop/source/deployment/gui - dp_gui_service.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 117 0.0 %
Date: 2012-12-27 Functions: 0 15 0.0 %
Legend: Lines: hit not hit

          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             : 
      21             : #include "dp_gui_shared.hxx"
      22             : #include "dp_gui.h"
      23             : #include "dp_gui_theextmgr.hxx"
      24             : #include "cppuhelper/implbase2.hxx"
      25             : #include "cppuhelper/implementationentry.hxx"
      26             : #include "unotools/configmgr.hxx"
      27             : #include "comphelper/processfactory.hxx"
      28             : #include "comphelper/servicedecl.hxx"
      29             : #include "comphelper/unwrapargs.hxx"
      30             : #include <i18npool/languagetag.hxx>
      31             : #include "vcl/svapp.hxx"
      32             : #include "vcl/msgbox.hxx"
      33             : #include "com/sun/star/lang/XServiceInfo.hpp"
      34             : #include "com/sun/star/task/XJobExecutor.hpp"
      35             : #include "com/sun/star/ui/dialogs/XAsynchronousExecutableDialog.hpp"
      36             : 
      37             : #include <boost/optional.hpp>
      38             : #include <boost/utility.hpp>
      39             : #include "license_dialog.hxx"
      40             : #include "dp_gui_dialog2.hxx"
      41             : #include "dp_gui_extensioncmdqueue.hxx"
      42             : 
      43             : using namespace ::dp_misc;
      44             : using namespace ::com::sun::star;
      45             : using namespace ::com::sun::star::uno;
      46             : 
      47             : using ::rtl::OUString;
      48             : 
      49             : namespace dp_gui {
      50             : 
      51             : //==============================================================================
      52             : class MyApp : public Application, private boost::noncopyable
      53             : {
      54             : public:
      55             :     MyApp();
      56             :     virtual ~MyApp();
      57             : 
      58             :     // Application
      59             :     virtual int Main();
      60             :     virtual void DeInit();
      61             : };
      62             : 
      63             : //______________________________________________________________________________
      64           0 : MyApp::~MyApp()
      65             : {
      66           0 : }
      67             : 
      68             : //______________________________________________________________________________
      69           0 : MyApp::MyApp()
      70             : {
      71           0 : }
      72             : 
      73             : //______________________________________________________________________________
      74           0 : int MyApp::Main()
      75             : {
      76           0 :     return EXIT_SUCCESS;
      77             : }
      78             : 
      79           0 : void MyApp::DeInit()
      80             : {
      81             :     css::uno::Reference< css::uno::XComponentContext > context(
      82           0 :         comphelper::getProcessComponentContext());
      83           0 :     dp_misc::disposeBridges(context);
      84             :     css::uno::Reference< css::lang::XComponent >(
      85           0 :         context, css::uno::UNO_QUERY_THROW)->dispose();
      86           0 :     comphelper::setProcessServiceFactory(0);
      87           0 : }
      88             : 
      89             : namespace
      90             : {
      91             :     struct ProductName
      92             :         : public rtl::Static< String, ProductName > {};
      93             :     struct Version
      94             :         : public rtl::Static< String, Version > {};
      95             :     struct AboutBoxVersion
      96             :         : public rtl::Static< String, AboutBoxVersion > {};
      97             :     struct AboutBoxVersionSuffix
      98             :         : public rtl::Static< String, AboutBoxVersionSuffix > {};
      99             :     struct OOOVendor
     100             :         : public rtl::Static< String, OOOVendor > {};
     101             :     struct Extension
     102             :         : public rtl::Static< String, Extension > {};
     103             : }
     104             : 
     105           0 : rtl::OUString ReplaceProductNameHookProc( const rtl::OUString& rStr )
     106             : {
     107           0 :     if (rStr.indexOf( "%PRODUCT" ) == -1)
     108           0 :         return rStr;
     109             : 
     110           0 :     rtl::OUString sProductName = ProductName::get();
     111           0 :     rtl::OUString sVersion = Version::get();
     112           0 :     rtl::OUString sAboutBoxVersion = AboutBoxVersion::get();
     113           0 :     rtl::OUString sAboutBoxVersionSuffix = AboutBoxVersionSuffix::get();
     114           0 :     rtl::OUString sExtension = Extension::get();
     115           0 :     rtl::OUString sOOOVendor = OOOVendor::get();
     116             : 
     117           0 :     if ( sProductName.isEmpty() )
     118             :     {
     119           0 :         sProductName = utl::ConfigManager::getProductName();
     120           0 :         sVersion = utl::ConfigManager::getProductVersion();
     121           0 :         sAboutBoxVersion = utl::ConfigManager::getAboutBoxProductVersion();
     122           0 :         sAboutBoxVersionSuffix = utl::ConfigManager::getAboutBoxProductVersionSuffix();
     123           0 :         sOOOVendor = utl::ConfigManager::getVendor();
     124           0 :         if ( sExtension.isEmpty() )
     125             :         {
     126           0 :             sExtension = utl::ConfigManager::getProductExtension();
     127             :         }
     128             :     }
     129             : 
     130           0 :     rtl::OUString sRet = rStr.replaceAll( "%PRODUCTNAME", sProductName );
     131           0 :     sRet = sRet.replaceAll( "%PRODUCTVERSION", sVersion );
     132           0 :     sRet = sRet.replaceAll( "%ABOUTBOXPRODUCTVERSIONSUFFIX", sAboutBoxVersionSuffix );
     133           0 :     sRet = sRet.replaceAll( "%ABOUTBOXPRODUCTVERSION", sAboutBoxVersion );
     134           0 :     sRet = sRet.replaceAll( "%OOOVENDOR", sOOOVendor );
     135           0 :     sRet = sRet.replaceAll( "%PRODUCTEXTENSION", sExtension );
     136           0 :     return sRet;
     137             : }
     138             : 
     139             : //==============================================================================
     140           0 : class ServiceImpl
     141             :     : public ::cppu::WeakImplHelper2<ui::dialogs::XAsynchronousExecutableDialog,
     142             :                                      task::XJobExecutor>
     143             : {
     144             :     Reference<XComponentContext> const m_xComponentContext;
     145             :     boost::optional< Reference<awt::XWindow> > /* const */ m_parent;
     146             :     boost::optional<OUString> /* const */ m_view;
     147             :     /* if true then this service is running in an unopkg process and not in an office process */
     148             :     boost::optional<sal_Bool> /* const */ m_unopkg;
     149             :     boost::optional<OUString> m_extensionURL;
     150             :     OUString m_initialTitle;
     151             :     bool m_bShowUpdateOnly;
     152             : 
     153             : public:
     154             :     ServiceImpl( Sequence<Any> const & args,
     155             :                  Reference<XComponentContext> const & xComponentContext );
     156             : 
     157             :     // XAsynchronousExecutableDialog
     158             :     virtual void SAL_CALL setDialogTitle( OUString const & aTitle )
     159             :         throw (RuntimeException);
     160             :     virtual void SAL_CALL startExecuteModal(
     161             :         Reference< ui::dialogs::XDialogClosedListener > const & xListener )
     162             :         throw (RuntimeException);
     163             : 
     164             :     // XJobExecutor
     165             :     virtual void SAL_CALL trigger( OUString const & event )
     166             :         throw (RuntimeException);
     167             : };
     168             : 
     169             : //______________________________________________________________________________
     170           0 : ServiceImpl::ServiceImpl( Sequence<Any> const& args,
     171             :                           Reference<XComponentContext> const& xComponentContext)
     172             :     : m_xComponentContext(xComponentContext),
     173           0 :       m_bShowUpdateOnly( false )
     174             : {
     175             :     try {
     176           0 :         comphelper::unwrapArgs( args, m_parent, m_view, m_unopkg );
     177           0 :         return;
     178           0 :     } catch ( const css::lang::IllegalArgumentException & ) {
     179             :     }
     180             :     try {
     181           0 :         comphelper::unwrapArgs( args, m_extensionURL);
     182           0 :     } catch ( const css::lang::IllegalArgumentException & ) {
     183             :     }
     184             : 
     185           0 :     ResHookProc pProc = ResMgr::GetReadStringHook();
     186           0 :     if ( !pProc )
     187           0 :         ResMgr::SetReadStringHook( ReplaceProductNameHookProc );
     188             : }
     189             : 
     190             : // XAsynchronousExecutableDialog
     191             : //______________________________________________________________________________
     192           0 : void ServiceImpl::setDialogTitle( OUString const & title )
     193             :     throw (RuntimeException)
     194             : {
     195           0 :     if ( dp_gui::TheExtensionManager::s_ExtMgr.is() )
     196             :     {
     197           0 :         const SolarMutexGuard guard;
     198             :         ::rtl::Reference< ::dp_gui::TheExtensionManager > dialog(
     199             :             ::dp_gui::TheExtensionManager::get( m_xComponentContext,
     200           0 :                                                 m_parent ? *m_parent : Reference<awt::XWindow>(),
     201           0 :                                                 m_extensionURL ? *m_extensionURL : OUString() ) );
     202           0 :         dialog->SetText( title );
     203             :     }
     204             :     else
     205           0 :         m_initialTitle = title;
     206           0 : }
     207             : 
     208             : //______________________________________________________________________________
     209           0 : void ServiceImpl::startExecuteModal(
     210             :     Reference< ui::dialogs::XDialogClosedListener > const & xListener )
     211             :     throw (RuntimeException)
     212             : {
     213           0 :     bool bCloseDialog = true;  // only used if m_bShowUpdateOnly is true
     214           0 :     ::std::auto_ptr<Application> app;
     215             :     //ToDo: synchronize access to s_dialog !!!
     216           0 :     if (! dp_gui::TheExtensionManager::s_ExtMgr.is())
     217             :     {
     218           0 :         const bool bAppUp = (GetpApp() != 0);
     219             :         bool bOfficePipePresent;
     220             :         try {
     221           0 :             bOfficePipePresent = dp_misc::office_is_running();
     222             :         }
     223           0 :         catch (const Exception & exc) {
     224           0 :             if (bAppUp) {
     225           0 :                 const SolarMutexGuard guard;
     226             :                 std::auto_ptr<ErrorBox> box(
     227             :                     new ErrorBox( Application::GetActiveTopWindow(),
     228           0 :                                   WB_OK, exc.Message ) );
     229           0 :                 box->Execute();
     230             :             }
     231           0 :             throw;
     232             :         }
     233             : 
     234           0 :         if (! bOfficePipePresent) {
     235             :             OSL_ASSERT( ! bAppUp );
     236           0 :             app.reset( new MyApp );
     237           0 :             if (! InitVCL() )
     238             :                 throw RuntimeException( OUSTR("Cannot initialize VCL!"),
     239           0 :                                         static_cast<OWeakObject *>(this) );
     240           0 :             AllSettings as = app->GetSettings();
     241           0 :             as.SetUILanguageTag( LanguageTag( utl::ConfigManager::getLocale() ) );
     242           0 :             app->SetSettings( as );
     243           0 :             app->SetDisplayName(
     244             :                 utl::ConfigManager::getProductName() +
     245           0 :                 rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" ")) +
     246           0 :                 utl::ConfigManager::getProductVersion());
     247           0 :             ExtensionCmdQueue::syncRepositories( m_xComponentContext );
     248             :         }
     249             :     }
     250             :     else
     251             :     {
     252             :         // When m_bShowUpdateOnly is set, we are inside the office and the user clicked
     253             :         // the update notification icon in the menu bar. We must not close the extensions
     254             :         // dialog after displaying the update dialog when it has been visible before
     255           0 :         if ( m_bShowUpdateOnly )
     256           0 :             bCloseDialog = ! dp_gui::TheExtensionManager::s_ExtMgr->isVisible();
     257             :     }
     258             : 
     259             :     {
     260           0 :         const SolarMutexGuard guard;
     261             :         ::rtl::Reference< ::dp_gui::TheExtensionManager > myExtMgr(
     262             :             ::dp_gui::TheExtensionManager::get(
     263             :                 m_xComponentContext,
     264           0 :                 m_parent ? *m_parent : Reference<awt::XWindow>(),
     265           0 :                 m_extensionURL ? *m_extensionURL : OUString() ) );
     266           0 :         myExtMgr->createDialog( false );
     267           0 :         if (!m_initialTitle.isEmpty()) {
     268           0 :             myExtMgr->SetText( m_initialTitle );
     269           0 :             m_initialTitle = OUString();
     270             :         }
     271           0 :         if ( m_bShowUpdateOnly )
     272             :         {
     273           0 :             myExtMgr->checkUpdates( true, !bCloseDialog );
     274           0 :             if ( bCloseDialog )
     275           0 :                 myExtMgr->Close();
     276             :             else
     277           0 :                 myExtMgr->ToTop( TOTOP_RESTOREWHENMIN );
     278             :         }
     279             :         else
     280             :         {
     281           0 :             myExtMgr->Show();
     282           0 :             myExtMgr->ToTop( TOTOP_RESTOREWHENMIN );
     283           0 :         }
     284             :     }
     285             : 
     286           0 :     if (app.get() != 0) {
     287           0 :         Application::Execute();
     288           0 :         DeInitVCL();
     289             :     }
     290             : 
     291           0 :     if (xListener.is())
     292           0 :         xListener->dialogClosed(
     293             :             ui::dialogs::DialogClosedEvent(
     294             :                 static_cast< ::cppu::OWeakObject * >(this),
     295           0 :                 sal_Int16(0)) );
     296           0 : }
     297             : 
     298             : // XJobExecutor
     299             : //______________________________________________________________________________
     300           0 : void ServiceImpl::trigger( OUString const &rEvent ) throw (RuntimeException)
     301             : {
     302           0 :     if ( rEvent == OUSTR("SHOW_UPDATE_DIALOG") )
     303           0 :         m_bShowUpdateOnly = true;
     304             :     else
     305           0 :         m_bShowUpdateOnly = false;
     306             : 
     307           0 :     startExecuteModal( Reference< ui::dialogs::XDialogClosedListener >() );
     308           0 : }
     309             : 
     310             : namespace sdecl = comphelper::service_decl;
     311           0 : sdecl::class_<ServiceImpl, sdecl::with_args<true> > serviceSI;
     312           0 : sdecl::ServiceDecl const serviceDecl(
     313             :     serviceSI,
     314             :     "com.sun.star.comp.deployment.ui.PackageManagerDialog",
     315             :     "com.sun.star.deployment.ui.PackageManagerDialog" );
     316             : 
     317           0 : sdecl::class_<LicenseDialog, sdecl::with_args<true> > licenseSI;
     318           0 : sdecl::ServiceDecl const licenseDecl(
     319             :     licenseSI,
     320             :     "com.sun.star.comp.deployment.ui.LicenseDialog",
     321             :     "com.sun.star.deployment.ui.LicenseDialog" );
     322             : 
     323           0 : sdecl::class_<UpdateRequiredDialogService, sdecl::with_args<true> > updateSI;
     324           0 : sdecl::ServiceDecl const updateDecl(
     325             :     updateSI,
     326             :     "com.sun.star.comp.deployment.ui.UpdateRequiredDialog",
     327             :     "com.sun.star.deployment.ui.UpdateRequiredDialog" );
     328             : } // namespace dp_gui
     329             : 
     330             : extern "C" {
     331             : 
     332           0 : SAL_DLLPUBLIC_EXPORT void * SAL_CALL deploymentgui_component_getFactory(
     333             :     sal_Char const * pImplName,
     334             :     lang::XMultiServiceFactory * pServiceManager,
     335             :     registry::XRegistryKey * pRegistryKey )
     336             : {
     337             :     return component_getFactoryHelper(
     338           0 :         pImplName, pServiceManager, pRegistryKey, dp_gui::serviceDecl, dp_gui::licenseDecl, dp_gui::updateDecl );
     339             : }
     340             : 
     341           0 : } // extern "C"
     342             : 
     343             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10