tizen beta release
[framework/web/webkit-efl.git] / DerivedSources / WebCore / JSSQLResultSet.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 JSSQLResultSet_h
22 #define JSSQLResultSet_h
23
24 #if ENABLE(SQL_DATABASE)
25
26 #include "JSDOMBinding.h"
27 #include "SQLResultSet.h"
28 #include <runtime/JSGlobalObject.h>
29 #include <runtime/JSObject.h>
30 #include <runtime/ObjectPrototype.h>
31
32 namespace WebCore {
33
34 class JSSQLResultSet : public JSDOMWrapper {
35 public:
36     typedef JSDOMWrapper Base;
37     static JSSQLResultSet* create(JSC::Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<SQLResultSet> impl)
38     {
39         JSSQLResultSet* ptr = new (JSC::allocateCell<JSSQLResultSet>(globalObject->globalData().heap)) JSSQLResultSet(structure, globalObject, impl);
40         ptr->finishCreation(globalObject->globalData());
41         return ptr;
42     }
43
44     static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
45     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
46     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
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     SQLResultSet* impl() const { return m_impl; }
55     void releaseImpl() { m_impl->deref(); m_impl = 0; }
56
57 private:
58     SQLResultSet* m_impl;
59 protected:
60     JSSQLResultSet(JSC::Structure*, JSDOMGlobalObject*, PassRefPtr<SQLResultSet>);
61     void finishCreation(JSC::JSGlobalData&);
62     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
63 };
64
65 class JSSQLResultSetOwner : public JSC::WeakHandleOwner {
66     virtual bool isReachableFromOpaqueRoots(JSC::Handle<JSC::Unknown>, void* context, JSC::SlotVisitor&);
67     virtual void finalize(JSC::Handle<JSC::Unknown>, void* context);
68 };
69
70 inline JSC::WeakHandleOwner* wrapperOwner(DOMWrapperWorld*, SQLResultSet*)
71 {
72     DEFINE_STATIC_LOCAL(JSSQLResultSetOwner, jsSQLResultSetOwner, ());
73     return &jsSQLResultSetOwner;
74 }
75
76 inline void* wrapperContext(DOMWrapperWorld* world, SQLResultSet*)
77 {
78     return world;
79 }
80
81 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, SQLResultSet*);
82 SQLResultSet* toSQLResultSet(JSC::JSValue);
83
84 class JSSQLResultSetPrototype : public JSC::JSNonFinalObject {
85 public:
86     typedef JSC::JSNonFinalObject Base;
87     static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
88     static JSSQLResultSetPrototype* create(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::Structure* structure)
89     {
90         JSSQLResultSetPrototype* ptr = new (JSC::allocateCell<JSSQLResultSetPrototype>(globalData.heap)) JSSQLResultSetPrototype(globalData, globalObject, structure);
91         ptr->finishCreation(globalData);
92         return ptr;
93     }
94
95     static const JSC::ClassInfo s_info;
96     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
97     {
98         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
99     }
100
101 private:
102     JSSQLResultSetPrototype(JSC::JSGlobalData& globalData, JSC::JSGlobalObject*, JSC::Structure* structure) : JSC::JSNonFinalObject(globalData, structure) { }
103 protected:
104     static const unsigned StructureFlags = Base::StructureFlags;
105 };
106
107 // Attributes
108
109 JSC::JSValue jsSQLResultSetRows(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
110 JSC::JSValue jsSQLResultSetInsertId(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
111 JSC::JSValue jsSQLResultSetRowsAffected(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
112
113 } // namespace WebCore
114
115 #endif // ENABLE(SQL_DATABASE)
116
117 #endif