make install and dev-install build-depend on all
[LibreOffice.git] / ucb / workben / cachemap / cachemapobject3.hxx
blob9f0f9bc553f32e4e47d2663cde7ed7230546e15c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef INCLUDED_UCB_CACHEMAPOBJECT3_HXX
30 #define INCLUDED_UCB_CACHEMAPOBJECT3_HXX
32 #include "osl/interlck.h"
33 #include "osl/mutex.hxx"
34 #include "rtl/ref.hxx"
35 #include "sal/types.h"
36 #include "salhelper/simplereferenceobject.hxx"
38 #ifndef INCLUDED_MAP
39 #include <map>
40 #define INCLUDED_MAP
41 #endif
42 #ifndef INCLUDED_MEMORY
43 #include <memory>
44 #define INCLUDED_MEMORY
45 #endif
47 namespace rtl { class OUString; }
48 namespace ucb { namespace cachemap { class Object3; } }
50 namespace ucb { namespace cachemap {
52 class ObjectContainer3: public salhelper::SimpleReferenceObject
54 public:
55 ObjectContainer3();
57 virtual ~ObjectContainer3() SAL_THROW(());
59 rtl::Reference< Object3 > get(rtl::OUString const & rKey);
61 private:
62 typedef std::map< rtl::OUString, Object3 * > Map;
64 Map m_aMap;
65 osl::Mutex m_aMutex;
67 void releaseElement(Object3 * pElement) SAL_THROW(());
69 friend class Object3; // to access Map, releaseElement()
72 class Object3
74 public:
75 inline void acquire() SAL_THROW(())
76 { osl_incrementInterlockedCount(&m_nRefCount); }
78 void release() SAL_THROW(());
80 private:
81 rtl::Reference< ObjectContainer3 > m_xContainer;
82 ObjectContainer3::Map::iterator m_aContainerIt;
83 oslInterlockedCount m_nRefCount;
85 inline Object3(rtl::Reference< ObjectContainer3 > const & rContainer);
87 inline ~Object3() SAL_THROW(());
89 Object3(Object3 &); // not implemented
90 void operator =(Object3); // not implemented
92 friend class ObjectContainer3;
93 // to access m_aContainerIt, m_nRefCount, Object3(), ~Object3()
94 #if defined WNT
95 friend struct std::auto_ptr< Object3 >; // to access ~Object3()
96 // work around compiler bug...
97 #else // WNT
98 friend class std::auto_ptr< Object3 >; // to access ~Object3()
99 #endif // WNT
104 #endif // INCLUDED_UCB_CACHEMAPOBJECT3_HXX
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */