2 * Copyright (C) 2004 Apple Computer, Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
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.
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #include "runtime_root.h"
30 #include "runtime_object.h"
31 #include <runtime/JSGlobalObject.h>
32 #include <wtf/HashCountedSet.h>
33 #include <wtf/HashSet.h>
34 #include <wtf/StdLibExtras.h>
36 namespace JSC { namespace Bindings {
38 // This code attempts to solve two problems: (1) plug-ins leaking references to
39 // JS and the DOM; (2) plug-ins holding stale references to JS and the DOM. Previous
40 // comments in this file claimed that problem #1 was an issue in Java, in particular,
41 // because Java, allegedly, didn't always call finalize when collecting an object.
43 typedef HashSet<RootObject*> RootObjectSet;
45 static RootObjectSet* rootObjectSet()
47 DEFINE_STATIC_LOCAL(RootObjectSet, staticRootObjectSet, ());
48 return &staticRootObjectSet;
51 // FIXME: These two functions are a potential performance problem. We could
52 // fix them by adding a JSObject to RootObject dictionary.
54 RootObject* findProtectingRootObject(JSObject* jsObject)
56 RootObjectSet::const_iterator end = rootObjectSet()->end();
57 for (RootObjectSet::const_iterator it = rootObjectSet()->begin(); it != end; ++it) {
58 if ((*it)->gcIsProtected(jsObject))
64 RootObject* findRootObject(JSGlobalObject* globalObject)
66 RootObjectSet::const_iterator end = rootObjectSet()->end();
67 for (RootObjectSet::const_iterator it = rootObjectSet()->begin(); it != end; ++it) {
68 if ((*it)->globalObject() == globalObject)
74 RootObject::InvalidationCallback::~InvalidationCallback()
78 PassRefPtr<RootObject> RootObject::create(const void* nativeHandle, JSGlobalObject* globalObject)
80 return adoptRef(new RootObject(nativeHandle, globalObject));
83 RootObject::RootObject(const void* nativeHandle, JSGlobalObject* globalObject)
85 , m_nativeHandle(nativeHandle)
86 , m_globalObject(globalObject)
89 rootObjectSet()->add(this);
92 RootObject::~RootObject()
98 void RootObject::invalidate()
104 WeakGCMap<RuntimeObject*, RuntimeObject>::iterator end = m_runtimeObjects.uncheckedEnd();
105 for (WeakGCMap<RuntimeObject*, RuntimeObject>::iterator it = m_runtimeObjects.uncheckedBegin(); it != end; ++it) {
106 if (m_runtimeObjects.isValid(it))
107 it->second->invalidate();
110 m_runtimeObjects.clear();
119 HashSet<InvalidationCallback*>::iterator end = m_invalidationCallbacks.end();
120 for (HashSet<InvalidationCallback*>::iterator iter = m_invalidationCallbacks.begin(); iter != end; ++iter)
123 m_invalidationCallbacks.clear();
126 ProtectCountSet::iterator end = m_protectCountSet.end();
127 for (ProtectCountSet::iterator it = m_protectCountSet.begin(); it != end; ++it)
128 JSC::gcUnprotect(it->first);
129 m_protectCountSet.clear();
131 rootObjectSet()->remove(this);
134 void RootObject::gcProtect(JSObject* jsObject)
138 if (!m_protectCountSet.contains(jsObject))
139 JSC::gcProtect(jsObject);
140 m_protectCountSet.add(jsObject);
143 void RootObject::gcUnprotect(JSObject* jsObject)
150 if (m_protectCountSet.count(jsObject) == 1)
151 JSC::gcUnprotect(jsObject);
152 m_protectCountSet.remove(jsObject);
155 bool RootObject::gcIsProtected(JSObject* jsObject)
158 return m_protectCountSet.contains(jsObject);
161 const void* RootObject::nativeHandle() const
164 return m_nativeHandle;
167 JSGlobalObject* RootObject::globalObject() const
170 return m_globalObject;
173 void RootObject::updateGlobalObject(JSGlobalObject* globalObject)
175 m_globalObject = globalObject;
178 void RootObject::addRuntimeObject(RuntimeObject* object)
181 ASSERT(!m_runtimeObjects.get(object));
183 m_runtimeObjects.set(object, object);
186 void RootObject::removeRuntimeObject(RuntimeObject* object)
189 ASSERT(m_runtimeObjects.uncheckedGet(object));
191 m_runtimeObjects.take(object);
194 } } // namespace JSC::Bindings