1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_DESKTOP_SOURCE_APP_DISPATCHWATCHER_HXX
21 #define INCLUDED_DESKTOP_SOURCE_APP_DISPATCHWATCHER_HXX
23 #include <cppuhelper/implbase1.hxx>
24 #include <com/sun/star/frame/XNotifyingDispatch.hpp>
25 #include <com/sun/star/frame/XDispatchResultListener.hpp>
27 #include "officeipcthread.hxx"
28 #include <boost/unordered_map.hpp>
35 Class for controlls dispatching of command URL through office command line. There
36 are "dangerous" command URLs, that can result in a running office without UI. To prevent
37 this situation the implementation surveile all dispatches and looks for an open task if
38 there is arose a problem. If there is none the office will be shutdown to prevent a
39 running office without UI.
42 class DispatchWatcherHashMap
: public ::boost::unordered_map
< OUString
, sal_Int32
, OUStringHash
, ::std::equal_to
< OUString
> >
47 DispatchWatcherHashMap().swap( *this );
51 class DispatchWatcher
: public ::cppu::WeakImplHelper1
< ::com::sun::star::frame::XDispatchResultListener
>
68 struct DispatchRequest
70 DispatchRequest( RequestType aType
, const OUString
& aFile
, boost::optional
< OUString
> const & cwdUrl
, const OUString
& aPrinter
, const OUString
& aFact
) :
71 aRequestType( aType
), aURL( aFile
), aCwdUrl( cwdUrl
), aPrinterName( aPrinter
), aPreselectedFactory( aFact
) {}
73 RequestType aRequestType
;
75 boost::optional
< OUString
> aCwdUrl
;
76 OUString aPrinterName
; // also conversion params
77 OUString aPreselectedFactory
;
80 typedef std::vector
< DispatchRequest
> DispatchList
;
82 virtual ~DispatchWatcher();
85 virtual void SAL_CALL
disposing( const ::com::sun::star::lang::EventObject
& Source
)
86 throw(::com::sun::star::uno::RuntimeException
);
88 // XDispachResultListener
89 virtual void SAL_CALL
dispatchFinished( const com::sun::star::frame::DispatchResultEvent
& aEvent
) throw( com::sun::star::uno::RuntimeException
);
91 // Access function to get a dispatcher watcher reference. There must be a global reference holder
92 static DispatchWatcher
* GetDispatchWatcher();
94 // execute new dispatch request
95 sal_Bool
executeDispatchRequests( const DispatchList
& aDispatches
, bool bNoTerminate
= false );
100 static ::osl::Mutex
& GetMutex();
102 DispatchWatcherHashMap m_aRequestContainer
;
104 sal_Int16 m_nRequestCount
;
109 #endif // INCLUDED_DESKTOP_SOURCE_APP_DISPATCHWATCHER_HXX
111 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */