tizen beta release
[profile/ivi/webkit-efl.git] / DerivedSources / WebCore / JSWorker.h
1 /*
2     This file is part of the WebKit open source project.
3     This file has been generated by generate-bindings.pl. DO NOT MODIFY!
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Library General Public
7     License as published by the Free Software Foundation; either
8     version 2 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Library General Public License for more details.
14
15     You should have received a copy of the GNU Library General Public License
16     along with this library; see the file COPYING.LIB.  If not, write to
17     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18     Boston, MA 02110-1301, USA.
19 */
20
21 #ifndef JSWorker_h
22 #define JSWorker_h
23
24 #if ENABLE(WORKERS)
25
26 #include "JSAbstractWorker.h"
27 #include "JSDOMBinding.h"
28 #include "Worker.h"
29 #include <runtime/JSObject.h>
30
31 namespace WebCore {
32
33 class JSWorker : public JSAbstractWorker {
34 public:
35     typedef JSAbstractWorker Base;
36     static JSWorker* create(JSC::Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<Worker> impl)
37     {
38         JSWorker* ptr = new (JSC::allocateCell<JSWorker>(globalObject->globalData().heap)) JSWorker(structure, globalObject, impl);
39         ptr->finishCreation(globalObject->globalData());
40         return ptr;
41     }
42
43     static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
44     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
45     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
46     static void put(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
47     static const JSC::ClassInfo s_info;
48
49     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
50     {
51         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
52     }
53
54     static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
55
56     // Custom functions
57     JSC::JSValue postMessage(JSC::ExecState*);
58     JSC::JSValue webkitPostMessage(JSC::ExecState*);
59     Worker* impl() const
60     {
61         return static_cast<Worker*>(Base::impl());
62     }
63 protected:
64     JSWorker(JSC::Structure*, JSDOMGlobalObject*, PassRefPtr<Worker>);
65     void finishCreation(JSC::JSGlobalData&);
66     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
67 };
68
69 class JSWorkerOwner : public JSC::WeakHandleOwner {
70     virtual bool isReachableFromOpaqueRoots(JSC::Handle<JSC::Unknown>, void* context, JSC::SlotVisitor&);
71     virtual void finalize(JSC::Handle<JSC::Unknown>, void* context);
72 };
73
74 inline JSC::WeakHandleOwner* wrapperOwner(DOMWrapperWorld*, Worker*)
75 {
76     DEFINE_STATIC_LOCAL(JSWorkerOwner, jsWorkerOwner, ());
77     return &jsWorkerOwner;
78 }
79
80 inline void* wrapperContext(DOMWrapperWorld* world, Worker*)
81 {
82     return world;
83 }
84
85 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, Worker*);
86 Worker* toWorker(JSC::JSValue);
87
88 class JSWorkerPrototype : public JSC::JSNonFinalObject {
89 public:
90     typedef JSC::JSNonFinalObject Base;
91     static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
92     static JSWorkerPrototype* create(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::Structure* structure)
93     {
94         JSWorkerPrototype* ptr = new (JSC::allocateCell<JSWorkerPrototype>(globalData.heap)) JSWorkerPrototype(globalData, globalObject, structure);
95         ptr->finishCreation(globalData);
96         return ptr;
97     }
98
99     static const JSC::ClassInfo s_info;
100     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
101     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
102     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
103     {
104         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
105     }
106
107 private:
108     JSWorkerPrototype(JSC::JSGlobalData& globalData, JSC::JSGlobalObject*, JSC::Structure* structure) : JSC::JSNonFinalObject(globalData, structure) { }
109 protected:
110     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
111 };
112
113 class JSWorkerConstructor : public DOMConstructorObject {
114 private:
115     JSWorkerConstructor(JSC::Structure*, JSDOMGlobalObject*);
116     void finishCreation(JSC::ExecState*, JSDOMGlobalObject*);
117
118 public:
119     typedef DOMConstructorObject Base;
120     static JSWorkerConstructor* create(JSC::ExecState* exec, JSC::Structure* structure, JSDOMGlobalObject* globalObject)
121     {
122         JSWorkerConstructor* ptr = new (JSC::allocateCell<JSWorkerConstructor>(*exec->heap())) JSWorkerConstructor(structure, globalObject);
123         ptr->finishCreation(exec, globalObject);
124         return ptr;
125     }
126
127     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
128     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
129     static const JSC::ClassInfo s_info;
130     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
131     {
132         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
133     }
134 protected:
135     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags;
136     static JSC::EncodedJSValue JSC_HOST_CALL constructJSWorker(JSC::ExecState*);
137     static JSC::ConstructType getConstructData(JSC::JSCell*, JSC::ConstructData&);
138 };
139
140 // Functions
141
142 JSC::EncodedJSValue JSC_HOST_CALL jsWorkerPrototypeFunctionPostMessage(JSC::ExecState*);
143 JSC::EncodedJSValue JSC_HOST_CALL jsWorkerPrototypeFunctionWebkitPostMessage(JSC::ExecState*);
144 JSC::EncodedJSValue JSC_HOST_CALL jsWorkerPrototypeFunctionTerminate(JSC::ExecState*);
145 // Attributes
146
147 JSC::JSValue jsWorkerOnmessage(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
148 void setJSWorkerOnmessage(JSC::ExecState*, JSC::JSObject*, JSC::JSValue);
149 JSC::JSValue jsWorkerConstructor(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
150
151 } // namespace WebCore
152
153 #endif // ENABLE(WORKERS)
154
155 #endif