~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/toolkit/components/history/src/nsMdbPtr.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
 
2
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Netscape Public License
 
6
 * Version 1.1 (the "License"); you may not use this file except in
 
7
 * compliance with the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/NPL/
 
9
 *
 
10
 * Software distributed under the License is distributed on an "AS IS" basis,
 
11
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
 * for the specific language governing rights and limitations under the
 
13
 * License.
 
14
 *
 
15
 * The Original Code is Mozilla Communicator client code.
 
16
 *
 
17
 * The Initial Developer of the Original Code is 
 
18
 * Netscape Communications Corporation.
 
19
 * Portions created by the Initial Developer are Copyright (C) 1998
 
20
 * the Initial Developer. All Rights Reserved.
 
21
 *
 
22
 * Contributor(s):
 
23
 *
 
24
 * Alternatively, the contents of this file may be used under the terms of
 
25
 * either the GNU General Public License Version 2 or later (the "GPL"), or 
 
26
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
27
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
28
 * of those above. If you wish to allow use of your version of this file only
 
29
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
30
 * use your version of this file under the terms of the NPL, indicate your
 
31
 * decision by deleting the provisions above and replace them with the notice
 
32
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
33
 * the provisions above, a recipient may use your version of this file under
 
34
 * the terms of any one of the NPL, the GPL or the LGPL.
 
35
 *
 
36
 * ***** END LICENSE BLOCK ***** */
 
37
 
 
38
/*
 
39
 
 
40
  DO NOT USE THIS. IT IS INTENDED FOR TEMPORARY USE BY GLOBAL HISTORY,
 
41
  PENDING CONVERSION OF THE MDB INTERFACES TO XPCOM.
 
42
 
 
43
*/
 
44
 
 
45
 
 
46
#ifndef nsMdbPtr_h__
 
47
#define nsMdbPtr_h__
 
48
 
 
49
#include "mdb.h"
 
50
 
 
51
template <class T>
 
52
class nsMdbDerivedSafe : public T
 
53
{
 
54
private:
 
55
    virtual mdb_err AddStrongRef(nsIMdbEnv* aEnv) { return 0; }        // NOT TO BE IMPLEMENTED
 
56
    virtual mdb_err CutStrongRef(nsIMdbEnv* aEnv) { return 0; }        // NOT TO BE IMPLEMENTED
 
57
    virtual nsMdbDerivedSafe<T>& operator=(const T&) { return *this; } // NOT TO BE IMPLEMENTED
 
58
    void operator delete(void*, size_t) {}                             // NOT TO BE IMPLEMENTED
 
59
};
 
60
 
 
61
 
 
62
template <class T>
 
63
class nsMdbPtr
 
64
{
 
65
private:
 
66
    nsIMdbEnv* mEnv;
 
67
    T* mRawPtr;
 
68
 
 
69
public:
 
70
    nsMdbPtr(nsIMdbEnv* aEnv) : mEnv(aEnv), mRawPtr(0)
 
71
    {
 
72
        NS_PRECONDITION(aEnv != 0, "null ptr");
 
73
    }
 
74
 
 
75
    nsMdbPtr(nsIMdbEnv* aEnv, T* aRawPtr) : mEnv(aEnv), mRawPtr(0)
 
76
    {
 
77
        NS_PRECONDITION(aEnv != 0, "null ptr");
 
78
        if (mEnv) {
 
79
            if (aRawPtr) {
 
80
                mRawPtr = aRawPtr;
 
81
                mRawPtr->AddStrongRef(mEnv);
 
82
            }
 
83
        }
 
84
    }
 
85
 
 
86
    nsMdbPtr(const nsMdbPtr<T>& aSmartPtr) : mEnv(aSmartPtr.mEnv), mRawPtr(0)
 
87
    {
 
88
        if (mEnv) {
 
89
            if (aSmartPtr) {
 
90
                mRawPtr = aSmartPtr;
 
91
                mRawPtr->AddStrongRef(mEnv);
 
92
            }
 
93
        }
 
94
    }
 
95
 
 
96
    nsMdbPtr<T>&
 
97
    operator=(const nsMdbPtr<T>& aSmartPtr)
 
98
    {
 
99
        if (mEnv) {
 
100
            if (mRawPtr) {
 
101
                mRawPtr->CutStrongRef(mEnv);
 
102
                mRawPtr = 0;
 
103
            }
 
104
        }
 
105
        mEnv = aSmartPtr.mEnv;
 
106
        if (mEnv) {
 
107
            mRawPtr = aSmartPtr.mRawPtr;
 
108
            if (mRawPtr)
 
109
                mRawPtr->AddStrongRef(mEnv);
 
110
        }
 
111
 
 
112
        return *this;
 
113
    }
 
114
 
 
115
    ~nsMdbPtr()
 
116
    {
 
117
        if (mEnv) {
 
118
            if (mRawPtr)
 
119
                mRawPtr->CutStrongRef(mEnv);
 
120
        }
 
121
    }
 
122
 
 
123
    nsMdbDerivedSafe<T>*
 
124
    get() const
 
125
    {
 
126
        return NS_REINTERPRET_CAST(nsMdbDerivedSafe<T>*, mRawPtr);
 
127
    }
 
128
 
 
129
    nsMdbDerivedSafe<T>*
 
130
    operator->() const
 
131
    {
 
132
        return get();
 
133
    }
 
134
 
 
135
 
 
136
    nsMdbDerivedSafe<T>&
 
137
    operator*() const
 
138
    {
 
139
        return *get();
 
140
    }
 
141
 
 
142
    operator nsMdbDerivedSafe<T>*() const
 
143
    {
 
144
        return get();
 
145
    }
 
146
 
 
147
 
 
148
    T**
 
149
    StartAssignment()
 
150
    {
 
151
        if (mRawPtr) {
 
152
            mRawPtr->CutStrongRef(mEnv);
 
153
            mRawPtr = 0;
 
154
        }
 
155
        return &mRawPtr;
 
156
    }
 
157
};
 
158
 
 
159
template <class T, class U>
 
160
inline
 
161
PRBool
 
162
operator==(const nsMdbPtr<T>& lhs, const nsMdbPtr<U>& rhs)
 
163
{
 
164
    return NS_STATIC_CAST(const void*, lhs.get()) == NS_STATIC_CAST(const void*, rhs.get());
 
165
}
 
166
 
 
167
template <class T, class U>
 
168
inline
 
169
PRBool
 
170
operator==(const nsMdbPtr<T>& lhs, const U* rhs)
 
171
{
 
172
    return NS_STATIC_CAST(const void*, lhs.get()) == NS_STATIC_CAST(const void*, rhs);
 
173
}
 
174
 
 
175
 
 
176
template <class T, class U>
 
177
inline
 
178
PRBool
 
179
operator==(const U* lhs, const nsMdbPtr<T>& rhs)
 
180
{
 
181
    return NS_STATIC_CAST(const void*, lhs) == NS_STATIC_CAST(const void*, rhs.get());
 
182
}
 
183
 
 
184
 
 
185
 
 
186
 
 
187
template <class T, class U>
 
188
inline
 
189
PRBool
 
190
operator!=(const nsMdbPtr<T>& lhs, const nsMdbPtr<U>& rhs)
 
191
{
 
192
    return NS_STATIC_CAST(const void*, lhs.get()) != NS_STATIC_CAST(const void*, rhs.get());
 
193
}
 
194
 
 
195
template <class T, class U>
 
196
inline
 
197
PRBool
 
198
operator!=(const nsMdbPtr<T>& lhs, const U* rhs)
 
199
{
 
200
    return NS_STATIC_CAST(const void*, lhs.get()) != NS_STATIC_CAST(const void*, rhs);
 
201
}
 
202
 
 
203
 
 
204
template <class T, class U>
 
205
inline
 
206
PRBool
 
207
operator!=(const U* lhs, const nsMdbPtr<T>& rhs)
 
208
{
 
209
    return NS_STATIC_CAST(const void*, lhs) != NS_STATIC_CAST(const void*, rhs.get());
 
210
}
 
211
 
 
212
 
 
213
 
 
214
template <class T>
 
215
class nsGetterAcquires
 
216
{
 
217
private:
 
218
    nsMdbPtr<T>& mTargetSmartPtr;
 
219
 
 
220
public:
 
221
    explicit
 
222
    nsGetterAcquires(nsMdbPtr<T>& aSmartPtr) : mTargetSmartPtr(aSmartPtr)
 
223
    {
 
224
        // nothing else to do
 
225
    }
 
226
 
 
227
    operator T**()
 
228
    {
 
229
        return mTargetSmartPtr.StartAssignment();
 
230
    }        
 
231
};
 
232
 
 
233
 
 
234
template <class T>
 
235
inline
 
236
nsGetterAcquires<T>
 
237
getter_Acquires(nsMdbPtr<T>& aSmartPtr)
 
238
{
 
239
    return nsGetterAcquires<T>(aSmartPtr);
 
240
}
 
241
 
 
242
 
 
243
#endif // nsMdbPtr_h__
 
244