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 "comphelper/containermultiplexer.hxx"
21 : #include "comphelper/uno3.hxx"
22 : #include <osl/diagnose.h>
23 :
24 : namespace comphelper
25 : {
26 :
27 :
28 : using namespace ::com::sun::star::uno;
29 : using namespace ::com::sun::star::lang;
30 : using namespace ::com::sun::star::container;
31 :
32 :
33 : //= OContainerListener
34 :
35 :
36 0 : OContainerListener::OContainerListener(::osl::Mutex& _rMutex)
37 : :m_pAdapter(NULL)
38 0 : ,m_rMutex(_rMutex)
39 : {
40 0 : }
41 :
42 :
43 0 : OContainerListener::~OContainerListener()
44 : {
45 0 : if (m_pAdapter)
46 : {
47 0 : m_pAdapter->dispose();
48 0 : m_pAdapter = NULL;
49 : }
50 0 : }
51 :
52 :
53 0 : void OContainerListener::_elementInserted( const ContainerEvent& /*_rEvent*/ )
54 : throw (RuntimeException, std::exception)
55 : {
56 0 : }
57 :
58 :
59 0 : void OContainerListener::_elementRemoved( const ContainerEvent& )
60 : throw (RuntimeException, std::exception)
61 : {
62 0 : }
63 :
64 :
65 0 : void OContainerListener::_elementReplaced( const ContainerEvent& /*_rEvent*/ )
66 : throw (RuntimeException, std::exception)
67 : {
68 0 : }
69 :
70 :
71 0 : void OContainerListener::_disposing(const EventObject& )
72 : throw (RuntimeException, std::exception)
73 : {
74 0 : }
75 :
76 :
77 0 : void OContainerListener::setAdapter(OContainerListenerAdapter* pAdapter)
78 : {
79 0 : if (m_pAdapter)
80 : {
81 0 : ::osl::MutexGuard aGuard(m_rMutex);
82 0 : m_pAdapter->release();
83 0 : m_pAdapter = NULL;
84 : }
85 :
86 0 : if (pAdapter)
87 : {
88 0 : ::osl::MutexGuard aGuard(m_rMutex);
89 0 : m_pAdapter = pAdapter;
90 0 : m_pAdapter->acquire();
91 : }
92 0 : }
93 :
94 :
95 : //= OContainerListenerAdapter
96 :
97 :
98 0 : OContainerListenerAdapter::OContainerListenerAdapter(OContainerListener* _pListener,
99 : const Reference< XContainer >& _rxContainer)
100 : :m_xContainer(_rxContainer)
101 : ,m_pListener(_pListener)
102 0 : ,m_nLockCount(0)
103 : {
104 0 : if (m_pListener)
105 0 : m_pListener->setAdapter(this);
106 :
107 0 : ::comphelper::increment(m_refCount);
108 : try
109 : {
110 0 : m_xContainer->addContainerListener(this);
111 : }
112 0 : catch(const Exception&)
113 : {
114 : OSL_FAIL("Exception caught!");
115 : }
116 0 : ::comphelper::decrement(m_refCount);
117 0 : }
118 :
119 :
120 0 : OContainerListenerAdapter::~OContainerListenerAdapter()
121 : {
122 0 : }
123 :
124 :
125 0 : void OContainerListenerAdapter::dispose()
126 : {
127 0 : if (m_xContainer.is())
128 : {
129 : try
130 : {
131 0 : Reference< XContainerListener > xPreventDelete(this);
132 0 : m_xContainer->removeContainerListener(xPreventDelete);
133 0 : m_pListener->setAdapter(NULL);
134 : }
135 0 : catch(const Exception&)
136 : {
137 : OSL_FAIL("Exception caught!");
138 : }
139 0 : m_xContainer = NULL;
140 0 : m_pListener = NULL;
141 : }
142 0 : }
143 :
144 :
145 0 : void SAL_CALL OContainerListenerAdapter::disposing( const EventObject& _rSource) throw(RuntimeException, std::exception)
146 : {
147 0 : if (m_pListener)
148 : {
149 : // tell the listener
150 0 : if (!locked())
151 0 : m_pListener->_disposing(_rSource);
152 : // disconnect the listener
153 0 : if ( m_pListener )
154 0 : m_pListener->setAdapter(NULL);
155 : }
156 :
157 0 : m_xContainer = NULL;
158 0 : m_pListener = NULL;
159 0 : }
160 :
161 :
162 0 : void SAL_CALL OContainerListenerAdapter::elementInserted( const ContainerEvent& _rEvent ) throw(RuntimeException, std::exception)
163 : {
164 0 : if (m_pListener && !locked())
165 0 : m_pListener->_elementInserted(_rEvent);
166 0 : }
167 :
168 :
169 0 : void SAL_CALL OContainerListenerAdapter::elementRemoved( const ContainerEvent& _rEvent ) throw(RuntimeException, std::exception)
170 : {
171 0 : if (m_pListener && !locked())
172 0 : m_pListener->_elementRemoved(_rEvent);
173 0 : }
174 :
175 :
176 0 : void SAL_CALL OContainerListenerAdapter::elementReplaced( const ContainerEvent& _rEvent ) throw(RuntimeException, std::exception)
177 : {
178 0 : if (m_pListener && !locked())
179 0 : m_pListener->_elementReplaced(_rEvent);
180 0 : }
181 :
182 :
183 : } // namespace comphelper
184 :
185 :
186 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|