Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / bindings / core / v8 / V8PerIsolateData.h
1 /*
2  * Copyright (C) 2009 Google 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 V8PerIsolateData_h
27 #define V8PerIsolateData_h
28
29 #include "bindings/core/v8/ScopedPersistent.h"
30 #include "bindings/core/v8/ScriptState.h"
31 #include "bindings/core/v8/V8HiddenValue.h"
32 #include "bindings/core/v8/WrapperTypeInfo.h"
33 #include "gin/public/isolate_holder.h"
34 #include "modules/indexeddb/IDBPendingTransactionMonitor.h"
35 #include "wtf/HashMap.h"
36 #include "wtf/OwnPtr.h"
37 #include "wtf/Vector.h"
38 #include <v8.h>
39
40 namespace blink {
41
42 class DOMDataStore;
43 class GCEventData;
44 class StringCache;
45 struct WrapperTypeInfo;
46
47 typedef WTF::Vector<DOMDataStore*> DOMDataStoreList;
48
49 class V8PerIsolateData {
50 public:
51     static v8::Isolate* initialize();
52     static V8PerIsolateData* from(v8::Isolate* isolate)
53     {
54         ASSERT(isolate);
55         ASSERT(isolate->GetData(gin::kEmbedderBlink));
56         return static_cast<V8PerIsolateData*>(isolate->GetData(gin::kEmbedderBlink));
57     }
58
59     static void willBeDestroyed(v8::Isolate*);
60     static void destroy(v8::Isolate*);
61     static v8::Isolate* mainThreadIsolate();
62
63     bool destructionPending() const { return m_destructionPending; }
64     v8::Isolate* isolate() { return m_isolateHolder->isolate(); }
65
66     v8::Handle<v8::FunctionTemplate> toStringTemplate();
67
68     StringCache* stringCache() { return m_stringCache.get(); }
69
70     v8::Persistent<v8::Value>& ensureLiveRoot();
71
72     int recursionLevel() const { return m_recursionLevel; }
73     int incrementRecursionLevel() { return ++m_recursionLevel; }
74     int decrementRecursionLevel() { return --m_recursionLevel; }
75     bool isHandlingRecursionLevelError() const { return m_isHandlingRecursionLevelError; }
76     void setIsHandlingRecursionLevelError(bool value) { m_isHandlingRecursionLevelError = value; }
77
78     bool isReportingException() const { return m_isReportingException; }
79     void setReportingException(bool value) { m_isReportingException = value; }
80
81     bool performingMicrotaskCheckpoint() const { return m_performingMicrotaskCheckpoint; }
82     void setPerformingMicrotaskCheckpoint(bool performingMicrotaskCheckpoint) { m_performingMicrotaskCheckpoint = performingMicrotaskCheckpoint; }
83
84 #if ENABLE(ASSERT)
85     int internalScriptRecursionLevel() const { return m_internalScriptRecursionLevel; }
86     int incrementInternalScriptRecursionLevel() { return ++m_internalScriptRecursionLevel; }
87     int decrementInternalScriptRecursionLevel() { return --m_internalScriptRecursionLevel; }
88 #endif
89
90     GCEventData* gcEventData() { return m_gcEventData.get(); }
91     V8HiddenValue* hiddenValue() { return m_hiddenValue.get(); }
92
93     v8::Handle<v8::FunctionTemplate> domTemplate(void* domTemplateKey, v8::FunctionCallback = 0, v8::Handle<v8::Value> data = v8::Handle<v8::Value>(), v8::Handle<v8::Signature> = v8::Handle<v8::Signature>(), int length = 0);
94     v8::Handle<v8::FunctionTemplate> existingDOMTemplate(void* domTemplateKey);
95     void setDOMTemplate(void* domTemplateKey, v8::Handle<v8::FunctionTemplate>);
96
97     bool hasInstance(const WrapperTypeInfo*, v8::Handle<v8::Value>);
98     v8::Handle<v8::Object> findInstanceInPrototypeChain(const WrapperTypeInfo*, v8::Handle<v8::Value>);
99
100     v8::Local<v8::Context> ensureScriptRegexpContext();
101
102     const char* previousSamplingState() const { return m_previousSamplingState; }
103     void setPreviousSamplingState(const char* name) { m_previousSamplingState = name; }
104
105     IDBPendingTransactionMonitor* ensureIDBPendingTransactionMonitor();
106
107 private:
108     V8PerIsolateData();
109     ~V8PerIsolateData();
110
111     typedef HashMap<const void*, v8::Eternal<v8::FunctionTemplate> > DOMTemplateMap;
112     DOMTemplateMap& currentDOMTemplateMap();
113     bool hasInstance(const WrapperTypeInfo*, v8::Handle<v8::Value>, DOMTemplateMap&);
114     v8::Handle<v8::Object> findInstanceInPrototypeChain(const WrapperTypeInfo*, v8::Handle<v8::Value>, DOMTemplateMap&);
115
116     bool m_destructionPending;
117     OwnPtr<gin::IsolateHolder> m_isolateHolder;
118     DOMTemplateMap m_domTemplateMapForMainWorld;
119     DOMTemplateMap m_domTemplateMapForNonMainWorld;
120     ScopedPersistent<v8::FunctionTemplate> m_toStringTemplate;
121     OwnPtr<StringCache> m_stringCache;
122     OwnPtr<V8HiddenValue> m_hiddenValue;
123     ScopedPersistent<v8::Value> m_liveRoot;
124     RefPtr<ScriptState> m_scriptRegexpScriptState;
125
126     const char* m_previousSamplingState;
127
128     bool m_constructorMode;
129     friend class ConstructorMode;
130
131     int m_recursionLevel;
132     bool m_isHandlingRecursionLevelError;
133     bool m_isReportingException;
134
135 #if ENABLE(ASSERT)
136     int m_internalScriptRecursionLevel;
137 #endif
138     OwnPtr<GCEventData> m_gcEventData;
139     bool m_performingMicrotaskCheckpoint;
140
141     OwnPtr<IDBPendingTransactionMonitor> m_idbPendingTransactionMonitor;
142 };
143
144 } // namespace blink
145
146 #endif // V8PerIsolateData_h