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 : #include <com/sun/star/embed/EmbedStates.hpp>
21 : #include <cppuhelper/weak.hxx>
22 :
23 : #include "intercept.hxx"
24 : #include "docholder.hxx"
25 : #include "commonembobj.hxx"
26 :
27 : using namespace ::com::sun::star;
28 :
29 : #define IUL 6
30 :
31 :
32 60 : uno::Sequence< OUString > Interceptor::m_aInterceptedURL(IUL);
33 :
34 0 : class StatusChangeListenerContainer
35 : : public cppu::OMultiTypeInterfaceContainerHelperVar<OUString>
36 : {
37 : public:
38 0 : StatusChangeListenerContainer( ::osl::Mutex& aMutex )
39 0 : : cppu::OMultiTypeInterfaceContainerHelperVar<OUString>(aMutex)
40 : {
41 0 : }
42 : };
43 :
44 :
45 0 : void Interceptor::DisconnectDocHolder()
46 : {
47 0 : osl::MutexGuard aGuard( m_aMutex );
48 0 : m_pDocHolder = NULL;
49 0 : }
50 :
51 : void SAL_CALL
52 0 : Interceptor::addEventListener(
53 : const uno::Reference<lang::XEventListener >& Listener )
54 : throw( uno::RuntimeException )
55 : {
56 0 : osl::MutexGuard aGuard( m_aMutex );
57 :
58 0 : if ( ! m_pDisposeEventListeners )
59 : m_pDisposeEventListeners =
60 0 : new cppu::OInterfaceContainerHelper( m_aMutex );
61 :
62 0 : m_pDisposeEventListeners->addInterface( Listener );
63 0 : }
64 :
65 :
66 : void SAL_CALL
67 0 : Interceptor::removeEventListener(
68 : const uno::Reference< lang::XEventListener >& Listener )
69 : throw( uno::RuntimeException )
70 : {
71 0 : osl::MutexGuard aGuard( m_aMutex );
72 :
73 0 : if ( m_pDisposeEventListeners )
74 0 : m_pDisposeEventListeners->removeInterface( Listener );
75 0 : }
76 :
77 :
78 0 : Interceptor::Interceptor( DocumentHolder* pDocHolder )
79 : : m_pDocHolder( pDocHolder ),
80 : m_pDisposeEventListeners(0),
81 0 : m_pStatCL(0)
82 : {
83 0 : m_aInterceptedURL[0] = ".uno:Save";
84 0 : m_aInterceptedURL[1] = ".uno:SaveAll";
85 0 : m_aInterceptedURL[2] = ".uno:CloseDoc";
86 0 : m_aInterceptedURL[3] = ".uno:CloseWin";
87 0 : m_aInterceptedURL[4] = ".uno:CloseFrame";
88 0 : m_aInterceptedURL[5] = ".uno:SaveAs";
89 :
90 0 : }
91 :
92 :
93 0 : Interceptor::~Interceptor()
94 : {
95 0 : if( m_pDisposeEventListeners )
96 0 : delete m_pDisposeEventListeners;
97 :
98 0 : if(m_pStatCL)
99 0 : delete m_pStatCL;
100 0 : }
101 :
102 :
103 :
104 : //XDispatch
105 : void SAL_CALL
106 0 : Interceptor::dispatch(
107 : const util::URL& URL,
108 : const uno::Sequence<
109 : beans::PropertyValue >& Arguments )
110 : throw (uno::RuntimeException, std::exception)
111 : {
112 0 : osl::MutexGuard aGuard(m_aMutex);
113 0 : if( m_pDocHolder )
114 : {
115 0 : if(URL.Complete == m_aInterceptedURL[0])
116 0 : m_pDocHolder->GetEmbedObject()->SaveObject_Impl();
117 0 : else if(URL.Complete == m_aInterceptedURL[2] ||
118 0 : URL.Complete == m_aInterceptedURL[3] ||
119 0 : URL.Complete == m_aInterceptedURL[4])
120 : {
121 : try {
122 0 : m_pDocHolder->GetEmbedObject()->changeState( embed::EmbedStates::RUNNING );
123 : }
124 0 : catch( const uno::Exception& )
125 : {
126 : }
127 : }
128 0 : else if ( URL.Complete == m_aInterceptedURL[5] )
129 : {
130 0 : uno::Sequence< beans::PropertyValue > aNewArgs = Arguments;
131 0 : sal_Int32 nInd = 0;
132 :
133 0 : while( nInd < aNewArgs.getLength() )
134 : {
135 0 : if ( aNewArgs[nInd].Name == "SaveTo" )
136 : {
137 0 : aNewArgs[nInd].Value <<= sal_True;
138 0 : break;
139 : }
140 0 : nInd++;
141 : }
142 :
143 0 : if ( nInd == aNewArgs.getLength() )
144 : {
145 0 : aNewArgs.realloc( nInd + 1 );
146 0 : aNewArgs[nInd].Name = "SaveTo";
147 0 : aNewArgs[nInd].Value <<= sal_True;
148 : }
149 :
150 0 : uno::Reference< frame::XDispatch > xDispatch = m_xSlaveDispatchProvider->queryDispatch(
151 0 : URL, OUString( "_self" ), 0 );
152 0 : if ( xDispatch.is() )
153 0 : xDispatch->dispatch( URL, aNewArgs );
154 : }
155 0 : }
156 0 : }
157 :
158 : void SAL_CALL
159 0 : Interceptor::addStatusListener(
160 : const uno::Reference<
161 : frame::XStatusListener >& Control,
162 : const util::URL& URL )
163 : throw (
164 : uno::RuntimeException, std::exception
165 : )
166 : {
167 0 : if(!Control.is())
168 0 : return;
169 :
170 0 : if(URL.Complete == m_aInterceptedURL[0])
171 : { // Save
172 0 : frame::FeatureStateEvent aStateEvent;
173 0 : aStateEvent.FeatureURL.Complete = m_aInterceptedURL[0];
174 0 : aStateEvent.FeatureDescriptor = "Update";
175 0 : aStateEvent.IsEnabled = sal_True;
176 0 : aStateEvent.Requery = sal_False;
177 0 : aStateEvent.State <<= (OUString( "($1) ") + m_pDocHolder->GetTitle() );
178 0 : Control->statusChanged(aStateEvent);
179 :
180 : {
181 0 : osl::MutexGuard aGuard(m_aMutex);
182 0 : if(!m_pStatCL)
183 : m_pStatCL =
184 0 : new StatusChangeListenerContainer(m_aMutex);
185 : }
186 :
187 0 : m_pStatCL->addInterface(URL.Complete,Control);
188 0 : return;
189 : }
190 :
191 0 : sal_Int32 i = 2;
192 0 : if(URL.Complete == m_aInterceptedURL[i] ||
193 0 : URL.Complete == m_aInterceptedURL[++i] ||
194 0 : URL.Complete == m_aInterceptedURL[++i] )
195 : { // Close and return
196 0 : frame::FeatureStateEvent aStateEvent;
197 0 : aStateEvent.FeatureURL.Complete = m_aInterceptedURL[i];
198 0 : aStateEvent.FeatureDescriptor = "Close and Return";
199 0 : aStateEvent.IsEnabled = sal_True;
200 0 : aStateEvent.Requery = sal_False;
201 0 : aStateEvent.State <<= (OUString( "($2) ") + m_pDocHolder->GetTitle() );
202 0 : Control->statusChanged(aStateEvent);
203 :
204 :
205 : {
206 0 : osl::MutexGuard aGuard(m_aMutex);
207 0 : if(!m_pStatCL)
208 : m_pStatCL =
209 0 : new StatusChangeListenerContainer(m_aMutex);
210 : }
211 :
212 0 : m_pStatCL->addInterface(URL.Complete,Control);
213 0 : return;
214 : }
215 :
216 0 : if(URL.Complete == m_aInterceptedURL[5])
217 : { // SaveAs
218 0 : frame::FeatureStateEvent aStateEvent;
219 0 : aStateEvent.FeatureURL.Complete = m_aInterceptedURL[5];
220 0 : aStateEvent.FeatureDescriptor = "SaveCopyTo";
221 0 : aStateEvent.IsEnabled = sal_True;
222 0 : aStateEvent.Requery = sal_False;
223 0 : aStateEvent.State <<= (OUString( "($3)"));
224 0 : Control->statusChanged(aStateEvent);
225 :
226 : {
227 0 : osl::MutexGuard aGuard(m_aMutex);
228 0 : if(!m_pStatCL)
229 : m_pStatCL =
230 0 : new StatusChangeListenerContainer(m_aMutex);
231 : }
232 :
233 0 : m_pStatCL->addInterface(URL.Complete,Control);
234 0 : return;
235 : }
236 :
237 : }
238 :
239 :
240 : void SAL_CALL
241 0 : Interceptor::removeStatusListener(
242 : const uno::Reference<
243 : frame::XStatusListener >& Control,
244 : const util::URL& URL )
245 : throw (
246 : uno::RuntimeException, std::exception
247 : )
248 : {
249 0 : if(!(Control.is() && m_pStatCL))
250 0 : return;
251 : else {
252 0 : m_pStatCL->removeInterface(URL.Complete,Control);
253 0 : return;
254 : }
255 : }
256 :
257 :
258 : //XInterceptorInfo
259 : uno::Sequence< OUString >
260 : SAL_CALL
261 0 : Interceptor::getInterceptedURLs( )
262 : throw (
263 : uno::RuntimeException, std::exception
264 : )
265 : {
266 : // now implemented as update
267 :
268 0 : return m_aInterceptedURL;
269 : }
270 :
271 :
272 : // XDispatchProvider
273 :
274 : uno::Reference< frame::XDispatch > SAL_CALL
275 0 : Interceptor::queryDispatch(
276 : const util::URL& URL,
277 : const OUString& TargetFrameName,
278 : sal_Int32 SearchFlags )
279 : throw (
280 : uno::RuntimeException, std::exception
281 : )
282 : {
283 0 : osl::MutexGuard aGuard(m_aMutex);
284 0 : if(URL.Complete == m_aInterceptedURL[0])
285 0 : return (frame::XDispatch*)this;
286 0 : else if(URL.Complete == m_aInterceptedURL[1])
287 0 : return (frame::XDispatch*)0 ;
288 0 : else if(URL.Complete == m_aInterceptedURL[2])
289 0 : return (frame::XDispatch*)this;
290 0 : else if(URL.Complete == m_aInterceptedURL[3])
291 0 : return (frame::XDispatch*)this;
292 0 : else if(URL.Complete == m_aInterceptedURL[4])
293 0 : return (frame::XDispatch*)this;
294 0 : else if(URL.Complete == m_aInterceptedURL[5])
295 0 : return (frame::XDispatch*)this;
296 : else {
297 0 : if(m_xSlaveDispatchProvider.is())
298 0 : return m_xSlaveDispatchProvider->queryDispatch(
299 0 : URL,TargetFrameName,SearchFlags);
300 : else
301 0 : return uno::Reference<frame::XDispatch>(0);
302 0 : }
303 : }
304 :
305 : uno::Sequence< uno::Reference< frame::XDispatch > > SAL_CALL
306 0 : Interceptor::queryDispatches(
307 : const uno::Sequence<frame::DispatchDescriptor >& Requests )
308 : throw (
309 : uno::RuntimeException, std::exception
310 : )
311 : {
312 0 : uno::Sequence< uno::Reference< frame::XDispatch > > aRet;
313 0 : osl::MutexGuard aGuard(m_aMutex);
314 0 : if(m_xSlaveDispatchProvider.is())
315 0 : aRet = m_xSlaveDispatchProvider->queryDispatches(Requests);
316 : else
317 0 : aRet.realloc(Requests.getLength());
318 :
319 0 : for(sal_Int32 i = 0; i < Requests.getLength(); ++i)
320 0 : if(m_aInterceptedURL[0] == Requests[i].FeatureURL.Complete)
321 0 : aRet[i] = (frame::XDispatch*) this;
322 0 : else if(m_aInterceptedURL[1] == Requests[i].FeatureURL.Complete)
323 0 : aRet[i] = (frame::XDispatch*) 0;
324 0 : else if(m_aInterceptedURL[2] == Requests[i].FeatureURL.Complete)
325 0 : aRet[i] = (frame::XDispatch*) this;
326 0 : else if(m_aInterceptedURL[3] == Requests[i].FeatureURL.Complete)
327 0 : aRet[i] = (frame::XDispatch*) this;
328 0 : else if(m_aInterceptedURL[4] == Requests[i].FeatureURL.Complete)
329 0 : aRet[i] = (frame::XDispatch*) this;
330 0 : else if(m_aInterceptedURL[5] == Requests[i].FeatureURL.Complete)
331 0 : aRet[i] = (frame::XDispatch*) this;
332 :
333 0 : return aRet;
334 : }
335 :
336 :
337 :
338 : //XDispatchProviderInterceptor
339 :
340 : uno::Reference< frame::XDispatchProvider > SAL_CALL
341 0 : Interceptor::getSlaveDispatchProvider( )
342 : throw (
343 : uno::RuntimeException, std::exception
344 : )
345 : {
346 0 : osl::MutexGuard aGuard(m_aMutex);
347 0 : return m_xSlaveDispatchProvider;
348 : }
349 :
350 : void SAL_CALL
351 0 : Interceptor::setSlaveDispatchProvider(
352 : const uno::Reference< frame::XDispatchProvider >& NewDispatchProvider )
353 : throw (
354 : uno::RuntimeException, std::exception
355 : )
356 : {
357 0 : osl::MutexGuard aGuard(m_aMutex);
358 0 : m_xSlaveDispatchProvider = NewDispatchProvider;
359 0 : }
360 :
361 :
362 : uno::Reference< frame::XDispatchProvider > SAL_CALL
363 0 : Interceptor::getMasterDispatchProvider( )
364 : throw (
365 : uno::RuntimeException, std::exception
366 : )
367 : {
368 0 : osl::MutexGuard aGuard(m_aMutex);
369 0 : return m_xMasterDispatchProvider;
370 : }
371 :
372 :
373 : void SAL_CALL
374 0 : Interceptor::setMasterDispatchProvider(
375 : const uno::Reference< frame::XDispatchProvider >& NewSupplier )
376 : throw (
377 : uno::RuntimeException, std::exception
378 : )
379 : {
380 0 : osl::MutexGuard aGuard(m_aMutex);
381 0 : m_xMasterDispatchProvider = NewSupplier;
382 180 : }
383 :
384 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|