LibreOffice Module cppuhelper (master) 1
weak.hxx
Go to the documentation of this file.
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/*
21 * This file is part of LibreOffice published API.
22 */
23#ifndef INCLUDED_CPPUHELPER_WEAK_HXX
24#define INCLUDED_CPPUHELPER_WEAK_HXX
25
26#include <cassert>
27#include <cstddef>
28#include "osl/interlck.h"
29#include "rtl/alloc.h"
30#include "com/sun/star/uno/XWeak.hpp"
32
33
34namespace cppu
35{
36
37class OWeakConnectionPoint;
38
47class CPPUHELPER_DLLPUBLIC OWeakObject : public css::uno::XWeak
48{
50
51protected:
58 virtual ~OWeakObject() COVERITY_NOEXCEPT_FALSE;
59
64 void disposeWeakConnectionPoint();
65
71 oslInterlockedCount m_refCount;
72
74
77 OWeakConnectionPoint * m_pWeakConnectionPoint;
78
81 void * m_pReserved;
82
84
85public:
87 // these are here to force memory de/allocation to sal lib.
88 static void * SAL_CALL operator new( size_t nSize )
89 { return ::rtl_allocateMemory( nSize ); }
90 static void SAL_CALL operator delete( void * pMem )
91 { ::rtl_freeMemory( pMem ); }
92 static void * SAL_CALL operator new( size_t, void * pMem )
93 { return pMem; }
94 static void SAL_CALL operator delete( void *, void * )
95 {}
97
101 : m_refCount( 0 )
102 , m_pWeakConnectionPoint( NULL )
103 , m_pReserved(NULL)
104 {}
105
109 : css::uno::XWeak()
110 , m_refCount( 0 )
111 , m_pWeakConnectionPoint( NULL )
112 , m_pReserved(NULL)
113 {}
118 OWeakObject & SAL_CALL operator = ( const OWeakObject &)
119 { return *this; }
120
127 virtual css::uno::Any SAL_CALL queryInterface(
128 const css::uno::Type & rType ) SAL_OVERRIDE;
131 virtual void SAL_CALL acquire()
132 SAL_NOEXCEPT SAL_OVERRIDE;
135 virtual void SAL_CALL release()
136 SAL_NOEXCEPT SAL_OVERRIDE;
137
142 virtual css::uno::Reference< css::uno::XAdapter > SAL_CALL queryAdapter() SAL_OVERRIDE;
143
148 SAL_CALL operator css::uno::Reference< css::uno::XInterface > ()
149 { return this; }
150
151#if defined LIBO_INTERNAL_ONLY
152 css::uno::XWeak* getXWeak() { return this; }
153#endif
154};
155
157
168static inline css::uno::XInterface * acquire(OWeakObject * instance)
169{
170 assert(instance != NULL);
171 instance->acquire();
172 return instance;
173}
174
175#if defined LIBO_INTERNAL_ONLY
176static inline css::uno::XWeak* getXWeak(OWeakObject* instance) { return instance; }
177#endif
179
180}
181
182#endif
183
184/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Base class to implement a UNO object supporting weak references, i.e.
Definition: weak.hxx:48
OWeakObject(const OWeakObject &)
Dummy copy constructor.
Definition: weak.hxx:108
OWeakObject()
Default Constructor.
Definition: weak.hxx:100
#define CPPUHELPER_DLLPUBLIC
ULONG m_refCount
return NULL
css::uno::Any SAL_CALL queryInterface(const css::uno::Type &rType, Interface1 *p1)
Compares demanded type to given template argument types.