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