blob: 5e849118a46ee27bddea0b24ee05b410f30a3a3c [file] [log] [blame]
/**************************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef INCLUDED_DP_GUI_EXTENSIONCMDQUEUE_HXX
#define INCLUDED_DP_GUI_EXTENSIONCMDQUEUE_HXX
#include "sal/config.h"
#include "com/sun/star/uno/Reference.hxx"
#include "rtl/ref.hxx"
#include <vector>
#include "dp_gui_updatedata.hxx"
/// @HTML
namespace com { namespace sun { namespace star {
namespace task { class XInteractionRequest; }
namespace uno { class XComponentContext; }
} } }
namespace dp_gui {
class DialogHelper;
class TheExtensionManager;
/**
Manages installing of extensions in the GUI mode. Requests for installing
Extensions can be asynchronous. For example, the Extension Manager is running
in an office process and someone uses the system integration to install an Extension.
That is, the user double clicks an extension symbol in a file browser, which then
causes an invocation of "unopkg gui ext". When at that time the Extension Manager
already performs a task, triggered by the user (for example, add, update, disable,
enable) then adding of the extension will be postponed until the user has finished
the task.
This class also ensures that the extensions are not installed in the main thread.
Doing so would cause a deadlock because of the progress bar which needs to be constantly
updated.
*/
class ExtensionCmdQueue {
public:
/**
Create an instance.
*/
ExtensionCmdQueue( DialogHelper * pDialogHelper,
TheExtensionManager *pManager,
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & rContext);
~ExtensionCmdQueue();
/**
*/
void addExtension( const ::rtl::OUString &rExtensionURL,
const ::rtl::OUString &rRepository,
const bool bWarnUser );
void removeExtension( const ::com::sun::star::uno::Reference< ::com::sun::star::deployment::XPackage > &rPackage );
void enableExtension( const ::com::sun::star::uno::Reference< ::com::sun::star::deployment::XPackage > &rPackage,
const bool bEnable );
void checkForUpdates(const std::vector< ::com::sun::star::uno::Reference<
::com::sun::star::deployment::XPackage > > &vList );
void acceptLicense( const ::com::sun::star::uno::Reference< ::com::sun::star::deployment::XPackage > &rPackage );
static void syncRepositories( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & xContext );
/**
This call does not block. It signals the internal thread
that it should install the remaining extensions and then terminate.
*/
void stop();
bool isBusy();
private:
ExtensionCmdQueue(ExtensionCmdQueue &); // not defined
void operator =(ExtensionCmdQueue &); // not defined
class Thread;
rtl::Reference< Thread > m_thread;
};
void handleInteractionRequest( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & xContext,
const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionRequest > & xRequest );
}
#endif