博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WebKit之binding分析案例(testInterface.idl)
阅读量:4026 次
发布时间:2019-05-24

本文共 8692 字,大约阅读时间需要 28 分钟。

## TestInterface.idl

// This IDL file is for testing the bindings code generator and for tracking// changes in its ouput.module test {    interface [        Conditional=Condition1|Condition2,        CanBeConstructed,        CallWith=ScriptExecutionContext    ] TestInterface {    };}
## JSTestInterface.idl

#ifndef JSTestInterface_h#define JSTestInterface_h#if ENABLE(Condition1) || ENABLE(Condition2)#include "JSDOMBinding.h"#include 
#include
#include
namespace WebCore {class TestInterface;class JSTestInterface : public DOMObjectWithGlobalPointer { typedef DOMObjectWithGlobalPointer Base;public: JSTestInterface(NonNullPassRefPtr
, JSDOMGlobalObject*, PassRefPtr
); static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*); virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&); virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&); static const JSC::ClassInfo s_info; static PassRefPtr
createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) { return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info); } static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*); TestInterface* impl() const { return m_impl.get(); }private: RefPtr
m_impl;protected: static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;};JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, TestInterface*);TestInterface* toTestInterface(JSC::JSValue);class JSTestInterfacePrototype : public JSC::JSObjectWithGlobalObject { typedef JSC::JSObjectWithGlobalObject Base;public: static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*); static const JSC::ClassInfo s_info; static PassRefPtr
createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) { return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info); } JSTestInterfacePrototype(JSC::JSGlobalObject* globalObject, NonNullPassRefPtr
structure) : JSC::JSObjectWithGlobalObject(globalObject, structure) { }protected: static const unsigned StructureFlags = Base::StructureFlags;};// AttributesJSC::JSValue jsTestInterfaceConstructor(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);} // namespace WebCore#endif // ENABLE(Condition1) || ENABLE(Condition2)#endif
## JSTestInterface.cpp

#include "config.h"#if ENABLE(Condition1) || ENABLE(Condition2)#include "JSTestInterface.h"#include "TestInterface.h"#include 
using namespace JSC;namespace WebCore {ASSERT_CLASS_FITS_IN_CELL(JSTestInterface);/* Hash table */#if ENABLE(JIT)#define THUNK_GENERATOR(generator) , generator#else#define THUNK_GENERATOR(generator)#endifstatic const HashTableValue JSTestInterfaceTableValues[2] ={ { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast
(jsTestInterfaceConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) }};#undef THUNK_GENERATORstatic JSC_CONST_HASHTABLE HashTable JSTestInterfaceTable = { 2, 1, JSTestInterfaceTableValues, 0 };/* Hash table for constructor */#if ENABLE(JIT)#define THUNK_GENERATOR(generator) , generator#else#define THUNK_GENERATOR(generator)#endifstatic const HashTableValue JSTestInterfaceConstructorTableValues[1] ={ { 0, 0, 0, 0 THUNK_GENERATOR(0) }};#undef THUNK_GENERATORstatic JSC_CONST_HASHTABLE HashTable JSTestInterfaceConstructorTable = { 1, 0, JSTestInterfaceConstructorTableValues, 0 };class JSTestInterfaceConstructor : public DOMConstructorObject {public: JSTestInterfaceConstructor(JSC::ExecState*, JSDOMGlobalObject*); virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&); virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&); static const JSC::ClassInfo s_info; static PassRefPtr
createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) { return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info); }protected: static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags; static JSC::EncodedJSValue JSC_HOST_CALL constructJSTestInterface(JSC::ExecState*); virtual JSC::ConstructType getConstructData(JSC::ConstructData&);};const ClassInfo JSTestInterfaceConstructor::s_info = { "TestInterfaceConstructor", &DOMConstructorObject::s_info, &JSTestInterfaceConstructorTable, 0 };JSTestInterfaceConstructor::JSTestInterfaceConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) : DOMConstructorObject(JSTestInterfaceConstructor::createStructure(globalObject->globalData(), globalObject->objectPrototype()), globalObject){ ASSERT(inherits(&s_info)); putDirect(exec->globalData(), exec->propertyNames().prototype, JSTestInterfacePrototype::self(exec, globalObject), DontDelete | ReadOnly);}bool JSTestInterfaceConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot){ return getStaticValueSlot
(exec, &JSTestInterfaceConstructorTable, this, propertyName, slot);}bool JSTestInterfaceConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor){ return getStaticValueDescriptor
(exec, &JSTestInterfaceConstructorTable, this, propertyName, descriptor);}EncodedJSValue JSC_HOST_CALL JSTestInterfaceConstructor::constructJSTestInterface(ExecState* exec){ ScriptExecutionContext* context = static_cast
(exec->callee())->scriptExecutionContext(); if (!context) return throwVMError(exec, createReferenceError(exec, "Reference error")); return JSValue::encode(asObject(toJS(exec, static_cast
(exec->callee())->globalObject(), TestInterface::create(context))));}ConstructType JSTestInterfaceConstructor::getConstructData(ConstructData& constructData){ constructData.native.function = constructJSTestInterface; return ConstructTypeHost;}/* Hash table for prototype */#if ENABLE(JIT)#define THUNK_GENERATOR(generator) , generator#else#define THUNK_GENERATOR(generator)#endifstatic const HashTableValue JSTestInterfacePrototypeTableValues[1] ={ { 0, 0, 0, 0 THUNK_GENERATOR(0) }};#undef THUNK_GENERATORstatic JSC_CONST_HASHTABLE HashTable JSTestInterfacePrototypeTable = { 1, 0, JSTestInterfacePrototypeTableValues, 0 };const ClassInfo JSTestInterfacePrototype::s_info = { "TestInterfacePrototype", &JSC::JSObjectWithGlobalObject::s_info, &JSTestInterfacePrototypeTable, 0 };JSObject* JSTestInterfacePrototype::self(ExecState* exec, JSGlobalObject* globalObject){ return getDOMPrototype
(exec, globalObject);}const ClassInfo JSTestInterface::s_info = { "TestInterface", &DOMObjectWithGlobalPointer::s_info, &JSTestInterfaceTable, 0 };JSTestInterface::JSTestInterface(NonNullPassRefPtr
structure, JSDOMGlobalObject* globalObject, PassRefPtr
impl) : DOMObjectWithGlobalPointer(structure, globalObject) , m_impl(impl){ ASSERT(inherits(&s_info));}JSObject* JSTestInterface::createPrototype(ExecState* exec, JSGlobalObject* globalObject){ return new (exec) JSTestInterfacePrototype(globalObject, JSTestInterfacePrototype::createStructure(globalObject->globalData(), globalObject->objectPrototype()));}bool JSTestInterface::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot){ return getStaticValueSlot
(exec, &JSTestInterfaceTable, this, propertyName, slot);}bool JSTestInterface::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor){ return getStaticValueDescriptor
(exec, &JSTestInterfaceTable, this, propertyName, descriptor);}JSValue jsTestInterfaceConstructor(ExecState* exec, JSValue slotBase, const Identifier&){ JSTestInterface* domObject = static_cast
(asObject(slotBase)); return JSTestInterface::getConstructor(exec, domObject->globalObject());}JSValue JSTestInterface::getConstructor(ExecState* exec, JSGlobalObject* globalObject){ return getDOMConstructor
(exec, static_cast
(globalObject));}JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, TestInterface* object){ return getDOMObjectWrapper
(exec, globalObject, object);}TestInterface* toTestInterface(JSC::JSValue value){ return value.inherits(&JSTestInterface::s_info) ? static_cast
(asObject(value))->impl() : 0;}}#endif // ENABLE(Condition1) || ENABLE(Condition2)

转载地址:http://rdvbi.baihongyu.com/

你可能感兴趣的文章
C++动态申请数组和参数传递问题
查看>>
opencv学习——在MFC中读取和显示图像
查看>>
retext出现Could not parse file contents, check if you have the necessary module installed解决方案
查看>>
pyQt不同窗体间的值传递(一)——对话框关闭时返回值给主窗口
查看>>
linux mint下使用外部SMTP(如网易yeah.net)发邮件
查看>>
北京联通华为光猫HG8346R破解改桥接
查看>>
python使用win32*模块模拟人工操作——城通网盘下载器(一)
查看>>
python append 与浅拷贝
查看>>
Matlab与CUDA C的混合编程配置出现的问题及解决方案
查看>>
2017阿里内推笔试题--算法工程师(运筹优化)
查看>>
python自动化工具之pywinauto(零)
查看>>
python自动化工具之pywinauto(四)——批量转换exe视频
查看>>
python一句话之利用文件对话框获取文件路径
查看>>
PaperDownloader——文献命名6起来
查看>>
PaperDownloader 1.5.1——更加人性化的文献下载命名解决方案
查看>>
如何将PaperDownloader下载的文献存放到任意位置
查看>>
C/C++中关于动态生成一维数组和二维数组的学习
查看>>
系统架构:Web应用架构的新趋势---前端和后端分离的一点想法
查看>>
JVM最简生存指南
查看>>
漂亮的代码,糟糕的行为——解决Java运行时的内存问题
查看>>