~ubuntu-branches/ubuntu/lucid/webkit/lucid-updates

« back to all changes in this revision

Viewing changes to JavaScriptCore/runtime/WeakGCPtr.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2010-01-06 21:25:06 UTC
  • mfrom: (1.2.6 upstream) (4.3.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100106212506-gd0czn4zrwf1j19l
* New upstream release
- adds basic Content-Encoding support, thanks to soup
  (Closes: #529271)
- fixes over-advertising content types as supported by
  the media player (Closes: #559420)
* debian/control:
- updated libsoup build requirement (>= 2.28.2)
* debian/libwebkit-1.0-2.symbols:
- updated with new symbols
* debian/copyright:
- updated information since 1.1.17
* Imported patch from https://bugs.webkit.org/show_bug.cgi?id=30623
- I am shipping this patch because I believe it is correct, it is the
  way to go, it fixes a race, and it needs testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2009 Apple Inc. All rights reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions
 
6
 * are met:
 
7
 * 1. Redistributions of source code must retain the above copyright
 
8
 *    notice, this list of conditions and the following disclaimer.
 
9
 * 2. Redistributions in binary form must reproduce the above copyright
 
10
 *    notice, this list of conditions and the following disclaimer in the
 
11
 *    documentation and/or other materials provided with the distribution.
 
12
 *
 
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
 
14
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 
15
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
16
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
 
17
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
18
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
19
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
20
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
21
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
22
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 
23
 * THE POSSIBILITY OF SUCH DAMAGE.
 
24
 */
 
25
 
 
26
#ifndef WeakGCPtr_h
 
27
#define WeakGCPtr_h
 
28
 
 
29
#include "Collector.h"
 
30
#include <wtf/Noncopyable.h>
 
31
 
 
32
namespace JSC {
 
33
 
 
34
// A smart pointer whose get() function returns 0 for cells awaiting destruction.
 
35
template <typename T> class WeakGCPtr : Noncopyable {
 
36
public:
 
37
    WeakGCPtr() : m_ptr(0) { }
 
38
    WeakGCPtr(T* ptr) { assign(ptr); }
 
39
 
 
40
    T* get() const
 
41
    {
 
42
        if (!m_ptr || !Heap::isCellMarked(m_ptr))
 
43
            return 0;
 
44
        return m_ptr;
 
45
    }
 
46
    
 
47
    void clear() { m_ptr = 0; }
 
48
 
 
49
    T& operator*() const { return *get(); }
 
50
    T* operator->() const { return get(); }
 
51
    
 
52
    bool operator!() const { return !get(); }
 
53
 
 
54
    // This conversion operator allows implicit conversion to bool but not to other integer types.
 
55
#if COMPILER(WINSCW)
 
56
    operator bool() const { return m_ptr; }
 
57
#else
 
58
    typedef T* WeakGCPtr::*UnspecifiedBoolType;
 
59
    operator UnspecifiedBoolType() const { return get() ? &WeakGCPtr::m_ptr : 0; }
 
60
#endif
 
61
 
 
62
    WeakGCPtr& operator=(T*);
 
63
 
 
64
private:
 
65
    void assign(T* ptr)
 
66
    {
 
67
        if (ptr)
 
68
            Heap::markCell(ptr);
 
69
        m_ptr = ptr;
 
70
    }
 
71
 
 
72
    T* m_ptr;
 
73
};
 
74
 
 
75
template <typename T> inline WeakGCPtr<T>& WeakGCPtr<T>::operator=(T* optr)
 
76
{
 
77
    assign(optr);
 
78
    return *this;
 
79
}
 
80
 
 
81
template <typename T, typename U> inline bool operator==(const WeakGCPtr<T>& a, const WeakGCPtr<U>& b)
 
82
 
83
    return a.get() == b.get(); 
 
84
}
 
85
 
 
86
template <typename T, typename U> inline bool operator==(const WeakGCPtr<T>& a, U* b)
 
87
 
88
    return a.get() == b; 
 
89
}
 
90
 
 
91
template <typename T, typename U> inline bool operator==(T* a, const WeakGCPtr<U>& b) 
 
92
{
 
93
    return a == b.get(); 
 
94
}
 
95
 
 
96
template <typename T, typename U> inline bool operator!=(const WeakGCPtr<T>& a, const WeakGCPtr<U>& b)
 
97
 
98
    return a.get() != b.get(); 
 
99
}
 
100
 
 
101
template <typename T, typename U> inline bool operator!=(const WeakGCPtr<T>& a, U* b)
 
102
{
 
103
    return a.get() != b; 
 
104
}
 
105
 
 
106
template <typename T, typename U> inline bool operator!=(T* a, const WeakGCPtr<U>& b)
 
107
 
108
    return a != b.get(); 
 
109
}
 
110
 
 
111
template <typename T, typename U> inline WeakGCPtr<T> static_pointer_cast(const WeakGCPtr<U>& p)
 
112
 
113
    return WeakGCPtr<T>(static_cast<T*>(p.get())); 
 
114
}
 
115
 
 
116
template <typename T, typename U> inline WeakGCPtr<T> const_pointer_cast(const WeakGCPtr<U>& p)
 
117
 
118
    return WeakGCPtr<T>(const_cast<T*>(p.get())); 
 
119
}
 
120
 
 
121
template <typename T> inline T* getPtr(const WeakGCPtr<T>& p)
 
122
{
 
123
    return p.get();
 
124
}
 
125
 
 
126
} // namespace JSC
 
127
 
 
128
#endif // WeakGCPtr_h