Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
9a67d4f4
Kaydet (Commit)
9a67d4f4
authored
Mar 18, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use SolarMutexGuard directly
Change-Id: Iaf7a74fed1846ce39de01cc343d7a75763e81e50
üst
99b6c3d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
58 deletions
+50
-58
closedispatcher.hxx
framework/inc/dispatch/closedispatcher.hxx
+2
-4
closedispatcher.cxx
framework/source/dispatch/closedispatcher.cxx
+48
-54
No files found.
framework/inc/dispatch/closedispatcher.hxx
Dosyayı görüntüle @
9a67d4f4
...
...
@@ -20,7 +20,6 @@
#ifndef INCLUDED_FRAMEWORK_INC_DISPATCH_CLOSEDISPATCHER_HXX
#define INCLUDED_FRAMEWORK_INC_DISPATCH_CLOSEDISPATCHER_HXX
#include <threadhelp/threadhelpbase.hxx>
#include <macros/xinterface.hxx>
#include <macros/xtypeprovider.hxx>
#include <macros/generic.hxx>
...
...
@@ -56,9 +55,7 @@ namespace framework{
or some other menu entries. Or we terminate the whole application in case this backing mode should not
be used.
*/
class
CloseDispatcher
:
// baseclasses ... order is necessary for right initialization!
private
ThreadHelpBase
,
public
::
cppu
::
WeakImplHelper2
<
class
CloseDispatcher
:
public
::
cppu
::
WeakImplHelper2
<
css
::
frame
::
XNotifyingDispatch
,
// => XDispatch
css
::
frame
::
XDispatchInformationProvider
>
{
...
...
@@ -111,6 +108,7 @@ class CloseDispatcher : // baseclasses ... order is necessary for right initiali
/** @short list of registered status listener */
osl
::
Mutex
m_mutex
;
ListenerHash
m_lStatusListener
;
...
...
framework/source/dispatch/closedispatcher.cxx
Dosyayı görüntüle @
9a67d4f4
...
...
@@ -19,7 +19,6 @@
#include <dispatch/closedispatcher.hxx>
#include <pattern/frame.hxx>
#include <threadhelp/guard.hxx>
#include <framework/framelistanalyzer.hxx>
#include <services.h>
#include <general.h>
...
...
@@ -60,11 +59,10 @@ const char URL_CLOSEFRAME[] = ".uno:CloseFrame";
CloseDispatcher
::
CloseDispatcher
(
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
rxContext
,
const
css
::
uno
::
Reference
<
css
::
frame
::
XFrame
>&
xFrame
,
const
OUString
&
sTarget
)
:
ThreadHelpBase
(
&
Application
::
GetSolarMutex
()
)
,
m_xContext
(
rxContext
)
:
m_xContext
(
rxContext
)
,
m_aAsyncCallback
(
LINK
(
this
,
CloseDispatcher
,
impl_asyncCallback
))
,
m_eOperation
(
E_CLOSE_DOC
)
,
m_lStatusListener
(
m_aLock
.
getShareableOslMutex
()
)
,
m_lStatusListener
(
m_mutex
)
,
m_pSysWindow
(
NULL
)
{
uno
::
Reference
<
frame
::
XFrame
>
xTarget
=
static_impl_searchRightTargetFrame
(
xFrame
,
sTarget
);
...
...
@@ -149,7 +147,7 @@ void SAL_CALL CloseDispatcher::dispatchWithNotification(const css::util::URL&
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
// SAFE -> ----------------------------------
Guard
aWriteLock
(
m_aLock
)
;
SolarMutexClearableGuard
aWriteLock
;
// This reference indicates, that we was already called before and
// our asynchronous process was not finished yet.
...
...
@@ -159,7 +157,7 @@ void SAL_CALL CloseDispatcher::dispatchWithNotification(const css::util::URL&
// non of these jobs was successfully.
if
(
m_xSelfHold
.
is
())
{
aWriteLock
.
unlock
();
aWriteLock
.
clear
();
// <- SAFE ------------------------------
implts_notifyResultListener
(
...
...
@@ -181,7 +179,7 @@ void SAL_CALL CloseDispatcher::dispatchWithNotification(const css::util::URL&
m_eOperation
=
E_CLOSE_FRAME
;
else
{
aWriteLock
.
unlock
();
aWriteLock
.
clear
();
// <- SAFE ------------------------------
implts_notifyResultListener
(
...
...
@@ -211,7 +209,7 @@ void SAL_CALL CloseDispatcher::dispatchWithNotification(const css::util::URL&
m_xResultListener
=
xListener
;
m_xSelfHold
=
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
(
static_cast
<
::
cppu
::
OWeakObject
*
>
(
this
),
css
::
uno
::
UNO_QUERY
);
aWriteLock
.
unlock
();
aWriteLock
.
clear
();
// <- SAFE ----------------------------------
sal_Bool
bIsSynchron
=
sal_False
;
...
...
@@ -258,21 +256,23 @@ IMPL_LINK_NOARG(CloseDispatcher, impl_asyncCallback)
sal_Bool
bAllowSuspend
=
sal_True
;
sal_Bool
bControllerSuspended
=
sal_False
;
// SAFE -> ----------------------------------
Guard
aReadLock
(
m_aLock
);
// Closing of all views, related to the same document, is allowed
// only if the dispatched URL was ".uno:CloseDoc"!
sal_Bool
bCloseAllViewsToo
=
(
m_eOperation
==
E_CLOSE_DOC
);
sal_Bool
bCloseAllViewsToo
;
EOperation
eOperation
;
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
xContext
;
css
::
uno
::
Reference
<
css
::
frame
::
XFrame
>
xCloseFrame
;
css
::
uno
::
Reference
<
css
::
frame
::
XDispatchResultListener
>
xListener
;
{
SolarMutexGuard
g
;
// BTW: Make some copies, which are needed later ...
EOperation
eOperation
=
m_eOperation
;
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
xContext
=
m_xContext
;
css
::
uno
::
Reference
<
css
::
frame
::
XFrame
>
xCloseFrame
(
m_xCloseFrame
.
get
(),
css
::
uno
::
UNO_QUERY
);
css
::
uno
::
Reference
<
css
::
frame
::
XDispatchResultListener
>
xListener
=
m_xResultListener
;
// Closing of all views, related to the same document, is allowed
// only if the dispatched URL was ".uno:CloseDoc"!
bCloseAllViewsToo
=
(
m_eOperation
==
E_CLOSE_DOC
);
aReadLock
.
unlock
();
// <- SAFE ----------------------------------
eOperation
=
m_eOperation
;
xContext
=
m_xContext
;
xCloseFrame
.
set
(
m_xCloseFrame
.
get
(),
css
::
uno
::
UNO_QUERY
);
xListener
=
m_xResultListener
;
}
// frame already dead ?!
// Nothing to do !
...
...
@@ -409,9 +409,7 @@ IMPL_LINK_NOARG(CloseDispatcher, impl_asyncCallback)
nState
=
css
::
frame
::
DispatchResultState
::
SUCCESS
;
implts_notifyResultListener
(
xListener
,
nState
,
css
::
uno
::
Any
());
// SAFE -> ----------------------------------
Guard
aWriteLock
(
m_aLock
);
SolarMutexGuard
g
;
// This method was called asynchronous from our main thread by using a pointer.
// We reached this method only, by using a reference to ourself :-)
// Further this member is used to detect still running and not yet finished
...
...
@@ -420,10 +418,6 @@ IMPL_LINK_NOARG(CloseDispatcher, impl_asyncCallback)
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
xTempHold
=
m_xSelfHold
;
m_xSelfHold
.
clear
();
m_xResultListener
.
clear
();
aWriteLock
.
unlock
();
// <- SAFE ----------------------------------
}
catch
(
const
css
::
lang
::
DisposedException
&
)
{
...
...
@@ -448,11 +442,11 @@ sal_Bool CloseDispatcher::implts_prepareFrameForClosing(const css::uno::Referenc
// will show the "save/discard/cancel" dialog for the last view only!
if
(
bCloseAllOtherViewsToo
)
{
// SAFE -> ----------------------------------
Guard
aReadLock
(
m_aLock
);
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
xContext
=
m_xContext
;
aReadLock
.
unlock
()
;
// <- SAFE ----------------------------------
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
xContext
;
{
SolarMutexGuard
g
;
xContext
=
m_xContext
;
}
css
::
uno
::
Reference
<
css
::
frame
::
XFramesSupplier
>
xDesktop
(
css
::
frame
::
Desktop
::
create
(
xContext
),
css
::
uno
::
UNO_QUERY_THROW
);
FrameListAnalyzer
aCheck
(
xDesktop
,
xFrame
,
FrameListAnalyzer
::
E_ALL
);
...
...
@@ -488,11 +482,11 @@ sal_Bool CloseDispatcher::implts_prepareFrameForClosing(const css::uno::Referenc
sal_Bool
CloseDispatcher
::
implts_closeFrame
()
{
// SAFE -> ----------------------------------
Guard
aReadLock
(
m_aLock
);
css
::
uno
::
Reference
<
css
::
frame
::
XFrame
>
xFrame
(
m_xCloseFrame
.
get
(),
css
::
uno
::
UNO_QUERY
)
;
aReadLock
.
unlock
(
);
// <- SAFE ----------------------------------
css
::
uno
::
Reference
<
css
::
frame
::
XFrame
>
xFrame
;
{
SolarMutexGuard
g
;
xFrame
.
set
(
m_xCloseFrame
.
get
(),
css
::
uno
::
UNO_QUERY
);
}
// frame already dead ? => so it's closed ... it's closed ...
if
(
!
xFrame
.
is
()
)
...
...
@@ -504,11 +498,10 @@ sal_Bool CloseDispatcher::implts_closeFrame()
if
(
!
fpf
::
closeIt
(
xFrame
,
sal_False
))
return
sal_False
;
// SAFE -> ----------------------------------
Guard
aWriteLock
(
m_aLock
);
m_xCloseFrame
=
css
::
uno
::
WeakReference
<
css
::
frame
::
XFrame
>
();
aWriteLock
.
unlock
();
// <- SAFE ----------------------------------
{
SolarMutexGuard
g
;
m_xCloseFrame
=
css
::
uno
::
WeakReference
<
css
::
frame
::
XFrame
>
();
}
return
sal_True
;
}
...
...
@@ -516,12 +509,13 @@ sal_Bool CloseDispatcher::implts_closeFrame()
sal_Bool
CloseDispatcher
::
implts_establishBackingMode
()
{
// SAFE -> ----------------------------------
Guard
aReadLock
(
m_aLock
);
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
xContext
=
m_xContext
;
css
::
uno
::
Reference
<
css
::
frame
::
XFrame
>
xFrame
(
m_xCloseFrame
.
get
(),
css
::
uno
::
UNO_QUERY
);
aReadLock
.
unlock
();
// <- SAFE ----------------------------------
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
xContext
;
css
::
uno
::
Reference
<
css
::
frame
::
XFrame
>
xFrame
;
{
SolarMutexGuard
g
;
xContext
=
m_xContext
;
xFrame
.
set
(
m_xCloseFrame
.
get
(),
css
::
uno
::
UNO_QUERY
);
}
if
(
!
xFrame
.
is
())
return
sal_False
;
...
...
@@ -547,11 +541,11 @@ sal_Bool CloseDispatcher::implts_establishBackingMode()
sal_Bool
CloseDispatcher
::
implts_terminateApplication
()
{
// SAFE -> ----------------------------------
Guard
aReadLock
(
m_aLock
);
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
xContext
=
m_xContext
;
aReadLock
.
unlock
()
;
// <- SAFE ----------------------------------
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
xContext
;
{
SolarMutexGuard
g
;
xContext
=
m_xContext
;
}
css
::
uno
::
Reference
<
css
::
frame
::
XDesktop2
>
xDesktop
=
css
::
frame
::
Desktop
::
create
(
xContext
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment