Changes between Version 48 and Version 49 of WebKitIDL
- Timestamp:
- Feb 19, 2012, 11:47:59 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v48 v49 7 7 [#Basics Basics of IDL] 8 8 9 [#BindingsCode Where is the bindings code ?]10 11 [#NamingRules Basic naming rules of IDL attribute ]9 [#BindingsCode Where is the bindings code generated?] 10 11 [#NamingRules Basic naming rules of IDL attributes] 12 12 13 13 [#IDLAttributes IDL attributes] … … 112 112 = Overview = #Overview 113 113 114 The [http://www.w3.org/TR/WebIDL/ Web IDL] is a language that defines how WebCore interfaces are bound to external languages such as JavaScriptCore, V8, ObjC, GObject and CPP. You need to write IDL files (e.g. XMLHttpRequest.idl, Element.idl, etc) to expose WebCore interfaces to those external languages. When WebKit is built, the IDL files are parsed, and the code to bind WebCore implementations and JavaScriptCore /V8/ObjC/GObject/CPP interfaces is automatically generated.115 116 This page describes practical information about how the IDL binding worksand how you can write IDL files in WebKit. The syntax of IDL files is fairly well documented in the [http://www.w3.org/TR/WebIDL/ Web IDL spec], but it is too formal to read:-) and there are several differences between the Web IDL spec and the WebKit IDL due to implementation issues.114 The [http://www.w3.org/TR/WebIDL/ Web IDL] is a language that defines how WebCore interfaces are bound to external languages such as JavaScriptCore, V8, ObjC, GObject and CPP. You need to write IDL files (e.g. XMLHttpRequest.idl, Element.idl, etc) to expose WebCore interfaces to those external languages. When WebKit is built, the IDL files are parsed, and the code to bind WebCore implementations and JavaScriptCore, V8, ObjC, GObject and CPP interfaces is automatically generated. 115 116 This document describes practical information about how the IDL bindings work and how you can write IDL files in WebKit. The syntax of IDL files is fairly well documented in the [http://www.w3.org/TR/WebIDL/ Web IDL spec], but it is too formal to read:-) and there are several differences between the Web IDL spec and the WebKit IDL due to implementation issues. 117 117 118 118 = Basics of IDL = #Basics … … 123 123 interface [ 124 124 JSCustomHeader, 125 CustomTo Object125 CustomToJSObject 126 126 ] Node { 127 127 const unsigned short ELEMENT_NODE = 1; … … 136 136 Let us introduce some terminologies: 137 137 138 * Th is is the IDL file ofthe Node ''''interface''''.138 * The above IDL file describes the Node ''''interface''''. 139 139 * ELEMENT_NODE is a ''''constant'''' of the Node interface. 140 140 * parentNode and nodeName are ''''attribute''''s of the Node interface. 141 141 * appendChild(...) and addEventListener(...) are ''''method''''s of the Node interface. 142 142 * type, listener and useCapture are ''''parameter''''s of the Node interface. 143 * [JSCustomHeader], [CustomTo Object], [TreatReturnedNullStringAs=Null], [Custom], [CustomReturn] and [Optional] are ''''IDL attribute''''s.143 * [JSCustomHeader], [CustomToJSObject], [TreatReturnedNullStringAs=Null], [Custom], [CustomReturn] and [Optional] are ''''IDL attribute''''s. 144 144 145 145 Note: These terminologies are not aligned with the Web IDL spec. 146 A 'method' is called an 'operation' in the Web IDL spec.146 In the Web IDL spec, a 'method' is called an 'operation'. 147 147 There is no distinction between an 'attribute' and a 'parameter' (a 'parameter' is treated as an 'attribute'). 148 148 … … 150 150 151 151 * An IDL file controls how the bindings code between JavaScript engine (or ObjC, GObject, CPP) and the WebKit implementation is generated. 152 * IDL attributes enable usto control the bindings code more in detail.153 * There are 90~ IDL attributes and their roles are explained in the subsequent section .152 * IDL attributes enable you to control the bindings code more in detail. 153 * There are 90~ IDL attributes and their roles are explained in the subsequent sections. 154 154 * IDL attributes can be specified on interfaces, methods, attributes and parameters. 155 155 Where each IDL attribute can be specified on is defined per each IDL attribute. 156 This is also explained in the subsequent section .157 158 Thetemplate of an IDL file is as follows:156 This is also explained in the subsequent sections. 157 158 A template of an IDL file is as follows: 159 159 {{{ 160 160 module MODULE_NAME { … … 182 182 }}} 183 183 184 = Where is the bindings code ? = #BindingsCode184 = Where is the bindings code generated? = #BindingsCode 185 185 186 186 By reading this document you can learn how IDL attributes work. 187 However, the best practice to understand IDL attributes is to use some IDL attributes and watch the bindings code actuallygenerated.187 However, the best practice to understand IDL attributes is to try to use some IDL attributes and watch what kind of bindings code is generated. 188 188 189 189 If you touch any IDL file, all IDL files are rebuilt. 190 The code generation is done at the very early phase of the ./webkit-build command, 191 and you can find the generated code in 1 minute. 192 193 In case of XXX.idl, the bindings code is generated in the following files in the Release build ("Release" becomes "Debug" in the Debug build). 194 195 * JavaScriptCore: WebKitBuild/Release/DerivedSources/WebCore/JSXXX.h, WebKitBuild/Release/DerivedSources/WebCore/JSXXX.cpp 196 * V8: out/Release/obj/gen/webkit/bindings/V8XXX.h, out/Release/obj/gen/webcore/bindings/V8XXX.cpp 197 * ObjC: WebKitBuild/Release/DerivedSources/WebCore/DOMXXX.h, WebKitBuild/Release/DerivedSources/WebCore/DOMXXX.mm 198 * GObject: WebKitBuild/Release/DerivedSources/webkit/WebKitDOMXXX.h, WebKitBuild/Release/DerivedSources/webkit/WebKitDOMXXX.cpp 199 * CPP: WebKitBuild/Release/DerivedSources/WebCore/WebDOMXXX.h, WebKitBuild/Release/DerivedSources/WebCore/WebDOMXXX.cpp 200 201 = Basic naming rules of IDL attribute = #NamingRules 202 203 There are a few rules of IDL attribute naming: 190 The code generation is done at the very early step of the ./webkit-build command, 191 so you can obtain the generated code in 1 minute. 192 193 In case of XXX.idl in the Release build, the bindings code is generated in the following files ("Release" becomes "Debug" in the Debug build). 194 195 * JavaScriptCore: 196 197 {{{ 198 WebKitBuild/Release/DerivedSources/WebCore/JSXXX.h 199 WebKitBuild/Release/DerivedSources/WebCore/JSXXX.cpp 200 }}} 201 * V8: 202 203 {{{ 204 out/Release/obj/gen/webkit/bindings/V8XXX.h 205 out/Release/obj/gen/webcore/bindings/V8XXX.cpp 206 }}} 207 * ObjC: 208 209 {{{ 210 WebKitBuild/Release/DerivedSources/WebCore/DOMXXX.h 211 WebKitBuild/Release/DerivedSources/WebCore/DOMXXX.mm 212 }}} 213 * GObject: 214 215 {{{ 216 WebKitBuild/Release/DerivedSources/webkit/WebKitDOMXXX.h 217 WebKitBuild/Release/DerivedSources/webkit/WebKitDOMXXX.cpp 218 }}} 219 * CPP: 220 221 {{{ 222 WebKitBuild/Release/DerivedSources/WebCore/WebDOMXXX.h 223 WebKitBuild/Release/DerivedSources/WebCore/WebDOMXXX.cpp 224 }}} 225 226 = Basic naming rules of IDL attributes = #NamingRules 227 228 There are a few rules in naming IDL attributes: 204 229 205 230 * A name should be aligned with the Web IDL spec as much as possible. 206 * JavaScriptCore 207 * V8 208 * ObjC 209 * GObject 210 * CPP 231 * JavaScriptCore-specific IDL attributes are prefixed by "JS". 232 * V8-specific IDL attributes are prefixed by "V8". 233 * ObjC-specific IDL attributes are prefixed by "ObjC". 234 * GObject-specific IDL attributes are prefixed by "GObject". 235 * CPP-specific IDL attributes are prefixed by "CPP". 211 236 * IDL attributes for custom bindings are prefixed by "Custom". 212 237 … … 215 240 = IDL attributes = #IDLAttributes 216 241 217 In the following explanations, (i), (m), (a) and (p) means that theIDL attribute can be specified on interfaces, methods, attributes and parameters, respectively. For example, (a,p) means that the IDL attribute can be specified on attributes and parameters.242 In the following explanations, (i), (m), (a) or (p) means that a given IDL attribute can be specified on interfaces, methods, attributes and parameters, respectively. For example, (a,p) means that the IDL attribute can be specified on attributes and parameters. 218 243 219 244 == [TreatNullAs](a,p), [TreatUndefinedAs](a,p) == #TreatNullAs 220 245 221 * [http://dev.w3.org/2006/webapi/WebIDL/#TreatNullAs The spec of TreatNullAs] (Note: The WebKit IDL explained below behaves differentlyfrom the spec)222 * [http://dev.w3.org/2006/webapi/WebIDL/#TreatUndefinedAs The spec of TreatUndefinedAs] (Note: The WebKit IDL explained below behaves differentlyfrom the spec)223 224 Summary: They control the behavior when a JavaScript null or undefined is passed to DOMString attributes/parameters.246 * [http://dev.w3.org/2006/webapi/WebIDL/#TreatNullAs The spec of TreatNullAs] (Note: The WebKit behavior explained below is different from the spec) 247 * [http://dev.w3.org/2006/webapi/WebIDL/#TreatUndefinedAs The spec of TreatUndefinedAs] (Note: The WebKit behavior explained below is different from the spec) 248 249 Summary: They control the behavior when a JavaScript null or undefined is passed to a DOMString attribute or parameter. 225 250 226 251 Usage: The possible usage is [TreatNullAs=NullString] or [TreatUndefinedAs=NullString]. … … 231 256 }}} 232 257 233 [TreatNullAs=NullString] indicates that if a JavaScript null is passed to the attribute /parameter,234 then it is converted to a WebKit null string, for which String::IsEmpty() and String::IsNull() will return true.258 [TreatNullAs=NullString] indicates that if a JavaScript null is passed to the attribute or parameter, 259 then it is converted to a WebKit null string, for which both String::IsEmpty() and String::IsNull() will return true. 235 260 Without [TreatNullAs=NullString], a JavaScript null is converted to a WebKit string "null". 236 261 237 [TreatNullAs=NullString] corresponds to [TreatNullAs=EmptyString] in the Web IDL spec.238 Unless the spec does not specify[TreatNullAs=EmptyString], you should not specify [TreatNullAs=NullString] in WebKit.239 240 [TreatUndefinedAs=NullString] indicates that if a JavaScript undefined is passed to the attribute /parameter,241 then it is converted to a WebKit null string, for which IsEmpty() andIsNull() will return true.262 [TreatNullAs=NullString] in WebKit corresponds to [TreatNullAs=EmptyString] in the Web IDL spec. 263 Unless the spec specifies [TreatNullAs=EmptyString], you should not specify [TreatNullAs=NullString] in WebKit. 264 265 [TreatUndefinedAs=NullString] indicates that if a JavaScript undefined is passed to the attribute or parameter, 266 then it is converted to a WebKit null string, for which both String::IsEmpty() and String::IsNull() will return true. 242 267 Without [TreatUndefinedAs=NullString], a JavaScript undefined is converted to a WebKit string "undefined". 243 268 244 [TreatUndefinedAs=NullString] corresponds to [TreatUndefinedAs=EmptyString] in the Web IDL spec.245 Unless the spec does not specify[TreatUndefinedAs=EmptyString], you should not specify [TreatUndefinedAs=NullString] in WebKit.246 247 Note: For now the sole usage of [TreatUndefinedAs=NullString] is not allowed in WebKit.269 [TreatUndefinedAs=NullString] in WebKit corresponds to [TreatUndefinedAs=EmptyString] in the Web IDL spec. 270 Unless the spec specifies [TreatUndefinedAs=EmptyString], you should not specify [TreatUndefinedAs=NullString] in WebKit. 271 272 Note: For now the sole usage of [TreatUndefinedAs=NullString] is not allowed. 248 273 [TreatUndefinedAs=NullString] must be used with [TreatNullAs=NullString], i.e. [TreatNullAs=NullString, TreatUndefinedAs=NullString]. 249 274 250 275 == [TreatReturnedNullStringAs](m,a) == #TreatReturnedNullStringAs 251 276 252 Summary: It controls the behavior when a WebKit null string is returned.277 Summary: [TreatReturnedNullStringAs] controls the behavior when a WebKit null string is returned from the WebCore implementation. 253 278 254 279 Usage: The possible usage is [TreatReturnedNullStringAs=Null], [TreatReturnedNullStringAs=Undefined] or [TreatReturnedNullStringAs=False]. … … 259 284 }}} 260 285 261 [TreatReturnedNullStringAs=Null] indicates that if the returned string is a WebKit null string, the returned value is converted toa JavaScript null.262 263 [TreatReturnedNullStringAs=Undefined] indicates that if the returned string is a WebKit null string, the returned value is converted to a JavaScript undefined.264 265 [TreatReturnedNullStringAs=False] indicates that if the returned string is a WebKit null string, the returned value is converted to a JavaScript false.266 267 Without [TreatReturnedNullStringAs=...], if the returned string is a WebKit null string, the returned value becomes a JavaScript empty string ''. Note that what should be specifieddepends on the spec of each attribute or method.286 * [TreatReturnedNullStringAs=Null] indicates that if the returned DOMString is a WebKit null string, the returned value is treated as a JavaScript null. 287 * [TreatReturnedNullStringAs=Undefined] indicates that if the returned DOMString is a WebKit null string, the returned value is treated as a JavaScript undefined. 288 * [TreatReturnedNullStringAs=False] indicates that if the returned DOMString is a WebKit null string, the returned value is treated as a JavaScript false. 289 290 Without [TreatReturnedNullStringAs=...], if the returned DOMString is a WebKit null string, then the returned value is treated as a JavaScript empty string ''. 291 292 Note that what should be specified on [TreatReturnedNullStringAs=...] depends on the spec of each attribute or method. 268 293 269 294 == [Optional](p) == #Optional … … 872 897 == [CustomConstructor](i), [JSCustomConstructor](i), [V8CustomConstructor](i), [ConstructorParameters](i) == #CustomConstructor 873 898 874 Summary: They allow usto write custom bindings for constructors.899 Summary: They allow you to write custom bindings for constructors. 875 900 876 901 Usage: They can specified on interfaces. … … 1003 1028 == [CustomToJSObject](i), [JSCustomToJSObject](i), [V8CustomToJSObject](i) == #CustomToJSObject 1004 1029 1005 Summary: They allow usto write custom toJS() or toV8().1030 Summary: They allow you to write custom toJS() or toV8(). 1006 1031 1007 1032 Usage: They can be specified on interfaces: … … 1072 1097 == [IndexedGetter](i) == #IndexedGetter 1073 1098 1074 * [http://dev.w3.org/2006/webapi/WebIDL/#idl-indexed-properties The spec of indexed properties] (Note: The WebKit IDL explained below behaves differentlyfrom the spec)1099 * [http://dev.w3.org/2006/webapi/WebIDL/#idl-indexed-properties The spec of indexed properties] (Note: The WebKit behavior explained below is different from the spec) 1075 1100 1076 1101 Summary: [IndexedGetter] means that a given interface should have a getter of indexed properties. … … 1089 1114 == [CustomIndexedSetter](i) == #CustomIndexedSetter 1090 1115 1091 * [http://dev.w3.org/2006/webapi/WebIDL/#idl-indexed-properties The spec of indexed properties] (Note: The WebKit IDL explained below behaves differentlyfrom the spec)1092 1093 Summary: [CustomIndexedSetter] allows usto write custom bindings for a setter of indexed properties.1116 * [http://dev.w3.org/2006/webapi/WebIDL/#idl-indexed-properties The spec of indexed properties] (Note: The WebKit behavior explained below is different from the spec) 1117 1118 Summary: [CustomIndexedSetter] allows you to write custom bindings for a setter of indexed properties. 1094 1119 1095 1120 Usage: [CustomIndexedSetter] can be specified on interfaces: … … 1102 1127 1103 1128 Indexed setters define the behavior when "XXX[i] = ..." is evaluated. 1104 [CustomIndexedSetter] allows usto write the custom bindings.1129 [CustomIndexedSetter] allows you to write the custom bindings. 1105 1130 1106 1131 * JavaScriptCore: You can write JSXXX::indexSetter(...) in WebCore/bindings/js/JSXXXCustom.cpp: … … 1123 1148 == [NamedGetter](i) == #NamedGetter 1124 1149 1125 * [http://dev.w3.org/2006/webapi/WebIDL/#idl-named-properties The spec of named properties] (Note: The WebKit IDL explained below behaves differentlyfrom the spec)1150 * [http://dev.w3.org/2006/webapi/WebIDL/#idl-named-properties The spec of named properties] (Note: The WebKit behavior explained below is different from the spec) 1126 1151 1127 1152 Summary: [NamedGetter] means that a given interface should have a getter of named properties. … … 1140 1165 == [CustomNamedGetter](i), [CustomNamedSetter](i) == #CustomNamedGetter 1141 1166 1142 * [http://dev.w3.org/2006/webapi/WebIDL/#idl-named-properties The spec of named properties] (Note: The WebKit IDL explained below behaves differentlyfrom the spec)1143 1144 Summary: [CustomNamedGetter]/[CustomNamedSetter] allows usto write custom bindings for a getter/setter of named properties.1167 * [http://dev.w3.org/2006/webapi/WebIDL/#idl-named-properties The spec of named properties] (Note: The WebKit behavior explained below is different from the spec) 1168 1169 Summary: [CustomNamedGetter]/[CustomNamedSetter] allows you to write custom bindings for a getter/setter of named properties. 1145 1170 1146 1171 Usage: They can be specified on interfaces: … … 1155 1180 Named getters define the behavior when XXX.foooooooo is evaluated, where foooooooo is not an attribute of a given interface. 1156 1181 Named setters define the behavior when "XXX.foooooooo = ..." is evaluated. 1157 [CustomNamedGetter] and [CustomNamedSetter] allow usto write the custom bindings.1182 [CustomNamedGetter] and [CustomNamedSetter] allow you to write the custom bindings. 1158 1183 1159 1184 * [CustomNamedGetter] in JavaScriptCore: You can write JSXXX::canGetItemsForName(...) and JSXXX::nameGetter(...) in WebCore/bindings/js/JSXXXCustom.cpp: … … 1266 1291 == [CustomEnumerateProperty](i), [CustomDeleteProperty](i) == #CustomEnumerateProperty 1267 1292 1268 Summary: [CustomEnumerateProperty] allows usto write custom bindings for the case where properties of a given interface are enumerated.1269 [CustomDeleteProperty] allows usto write custom bindings for the case where a property of a given interface is deleted.1293 Summary: [CustomEnumerateProperty] allows you to write custom bindings for the case where properties of a given interface are enumerated. 1294 [CustomDeleteProperty] allows you to write custom bindings for the case where a property of a given interface is deleted. 1270 1295 1271 1296 Usage: They can be specified on interfaces: … … 1330 1355 == [CustomCall](i) == #CustomCall 1331 1356 1332 Summary: [CustomCall] allows usto write custom bindings for call(...) of a given interface.1357 Summary: [CustomCall] allows you to write custom bindings for call(...) of a given interface. 1333 1358 1334 1359 Usage: [CustomCall] can be specified on interfaces: … … 1361 1386 == [JSCustomToNativeObject](i), [JSCustomFinalize](i), [JSCustomIsReachable](i), [JSCustomMarkFunction](i), [JSCustomNamedGetterOnPrototype](i), [JSCustomPushEventHandlerScope](i), [JSCustomDefineOwnProperty](i), [JSCustomDefineOwnPropertyOnPrototype](i), [JSCustomGetOwnPropertySlotAndDescriptor](i) == #JSCustomToNativeObject 1362 1387 1363 Summary: They allow usto write custom code for the JavaScriptCore code which would be generated automatically by default.1388 Summary: They allow you to write custom code for the JavaScriptCore code which would be generated automatically by default. 1364 1389 1365 1390 Usage: They can be specified on interfaces: … … 1480 1505 == [JSCustomHeader](i) == #JSCustomHeader 1481 1506 1482 Summary: It allows usto write a custom header for a given interface.1507 Summary: It allows you to write a custom header for a given interface. 1483 1508 1484 1509 Usage: [JSCustomHeader] can be specified on interfaces: … … 1492 1517 By default, JSXXX.h and JSXXX.cpp are generated automatically, and if you need, 1493 1518 you can write custom bindings in WebCore/bindings/js/JSXXXCustom.cpp. 1494 On the other hand, [JSCustomHeader] allows usto write WebCore/bindings/js/JSXXXCustom.h, which is included by JSXXX.h.1519 On the other hand, [JSCustomHeader] allows you to write WebCore/bindings/js/JSXXXCustom.h, which is included by JSXXX.h. 1495 1520 1496 1521