ggaren | 2593cdc | 2006-06-21 21:09:19 +0000 | [diff] [blame] | 1 | /* |
mjs@apple.com | 9204733 | 2014-03-15 04:08:27 +0000 | [diff] [blame] | 2 | * Copyright (C) 2006 Apple Inc. All rights reserved. |
ggaren | 2593cdc | 2006-06-21 21:09:19 +0000 | [diff] [blame] | 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 | * |
mjs@apple.com | 9204733 | 2014-03-15 04:08:27 +0000 | [diff] [blame] | 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY |
ggaren | 2593cdc | 2006-06-21 21:09:19 +0000 | [diff] [blame] | 14 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 15 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
mjs@apple.com | 9204733 | 2014-03-15 04:08:27 +0000 | [diff] [blame] | 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
ggaren | 2593cdc | 2006-06-21 21:09:19 +0000 | [diff] [blame] | 17 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 18 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 19 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 20 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 21 | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
joepeck@webkit.org | 9256497 | 2014-01-28 07:29:57 +0000 | [diff] [blame] | 23 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
ggaren | 2593cdc | 2006-06-21 21:09:19 +0000 | [diff] [blame] | 24 | */ |
| 25 | |
| 26 | #ifndef JSBase_h |
| 27 | #define JSBase_h |
| 28 | |
hausmann@webkit.org | 030c82a | 2008-06-16 21:21:41 +0000 | [diff] [blame] | 29 | #ifndef __cplusplus |
ggaren | 6105a72 | 2006-07-14 17:41:10 +0000 | [diff] [blame] | 30 | #include <stdbool.h> |
hausmann@webkit.org | 030c82a | 2008-06-16 21:21:41 +0000 | [diff] [blame] | 31 | #endif |
ggaren | 6105a72 | 2006-07-14 17:41:10 +0000 | [diff] [blame] | 32 | |
barraclough@apple.com | fc38188 | 2013-01-02 03:51:15 +0000 | [diff] [blame] | 33 | #ifdef __OBJC__ |
| 34 | #import <Foundation/Foundation.h> |
oliver@apple.com | acd3690 | 2014-09-30 17:27:10 +0000 | [diff] [blame] | 35 | #endif |
barraclough@apple.com | fc38188 | 2013-01-02 03:51:15 +0000 | [diff] [blame] | 36 | |
ggaren | ab28d0b | 2006-07-07 20:38:16 +0000 | [diff] [blame] | 37 | /* JavaScript engine interface */ |
| 38 | |
ap@webkit.org | 17b9b2c | 2008-07-30 06:05:11 +0000 | [diff] [blame] | 39 | /*! @typedef JSContextGroupRef A group that associates JavaScript contexts with one another. Contexts in the same group may share and exchange JavaScript objects. */ |
| 40 | typedef const struct OpaqueJSContextGroup* JSContextGroupRef; |
| 41 | |
ggaren | ab28d0b | 2006-07-07 20:38:16 +0000 | [diff] [blame] | 42 | /*! @typedef JSContextRef A JavaScript execution context. Holds the global object and other execution state. */ |
ggaren | dd0d0e1 | 2006-07-17 04:41:01 +0000 | [diff] [blame] | 43 | typedef const struct OpaqueJSContext* JSContextRef; |
ggaren | 41694b6 | 2006-07-14 22:39:58 +0000 | [diff] [blame] | 44 | |
| 45 | /*! @typedef JSGlobalContextRef A global JavaScript execution context. A JSGlobalContext is a JSContext. */ |
ggaren | dd0d0e1 | 2006-07-17 04:41:01 +0000 | [diff] [blame] | 46 | typedef struct OpaqueJSContext* JSGlobalContextRef; |
ggaren | 41694b6 | 2006-07-14 22:39:58 +0000 | [diff] [blame] | 47 | |
ggaren@apple.com | 38e1499 | 2008-01-16 05:23:06 +0000 | [diff] [blame] | 48 | /*! @typedef JSStringRef A UTF16 character buffer. The fundamental string representation in JavaScript. */ |
ggaren | dd0d0e1 | 2006-07-17 04:41:01 +0000 | [diff] [blame] | 49 | typedef struct OpaqueJSString* JSStringRef; |
ggaren | 41694b6 | 2006-07-14 22:39:58 +0000 | [diff] [blame] | 50 | |
ggaren | ab28d0b | 2006-07-07 20:38:16 +0000 | [diff] [blame] | 51 | /*! @typedef JSClassRef A JavaScript class. Used with JSObjectMake to construct objects with custom behavior. */ |
ggaren | dd0d0e1 | 2006-07-17 04:41:01 +0000 | [diff] [blame] | 52 | typedef struct OpaqueJSClass* JSClassRef; |
ggaren | 41694b6 | 2006-07-14 22:39:58 +0000 | [diff] [blame] | 53 | |
mjs | b3598b8 | 2006-07-16 21:06:28 +0000 | [diff] [blame] | 54 | /*! @typedef JSPropertyNameArrayRef An array of JavaScript property names. */ |
ggaren | dd0d0e1 | 2006-07-17 04:41:01 +0000 | [diff] [blame] | 55 | typedef struct OpaqueJSPropertyNameArray* JSPropertyNameArrayRef; |
ggaren | 41694b6 | 2006-07-14 22:39:58 +0000 | [diff] [blame] | 56 | |
ggaren | 0503a4b | 2006-07-18 04:33:46 +0000 | [diff] [blame] | 57 | /*! @typedef JSPropertyNameAccumulatorRef An ordered set used to collect the names of a JavaScript object's properties. */ |
ggaren | dd0d0e1 | 2006-07-17 04:41:01 +0000 | [diff] [blame] | 58 | typedef struct OpaqueJSPropertyNameAccumulator* JSPropertyNameAccumulatorRef; |
ggaren | 2593cdc | 2006-06-21 21:09:19 +0000 | [diff] [blame] | 59 | |
keith_miller@apple.com | 9eced15 | 2016-03-11 02:46:03 +0000 | [diff] [blame] | 60 | /*! @typedef JSTypedArrayBytesDeallocator A function used to deallocate bytes passed to a Typed Array constructor. The function should take two arguments. The first is a pointer to the bytes that were originally passed to the Typed Array constructor. The second is a pointer to additional information desired at the time the bytes are to be freed. */ |
| 61 | typedef void (*JSTypedArrayBytesDeallocator)(void* bytes, void* deallocatorContext); |
ggaren | ab28d0b | 2006-07-07 20:38:16 +0000 | [diff] [blame] | 62 | |
| 63 | /* JavaScript data types */ |
| 64 | |
| 65 | /*! @typedef JSValueRef A JavaScript value. The base type for all JavaScript values, and polymorphic functions on them. */ |
ggaren | dd0d0e1 | 2006-07-17 04:41:01 +0000 | [diff] [blame] | 66 | typedef const struct OpaqueJSValue* JSValueRef; |
ggaren | 41694b6 | 2006-07-14 22:39:58 +0000 | [diff] [blame] | 67 | |
ggaren | ab28d0b | 2006-07-07 20:38:16 +0000 | [diff] [blame] | 68 | /*! @typedef JSObjectRef A JavaScript object. A JSObject is a JSValue. */ |
ggaren | dd0d0e1 | 2006-07-17 04:41:01 +0000 | [diff] [blame] | 69 | typedef struct OpaqueJSValue* JSObjectRef; |
ggaren | 2593cdc | 2006-06-21 21:09:19 +0000 | [diff] [blame] | 70 | |
don.olmstead@sony.com | 628a15e | 2017-11-21 02:48:14 +0000 | [diff] [blame] | 71 | /* Clang's __has_declspec_attribute emulation */ |
| 72 | /* https://clang.llvm.org/docs/LanguageExtensions.html#has-declspec-attribute */ |
| 73 | |
| 74 | #ifndef __has_declspec_attribute |
| 75 | #define __has_declspec_attribute(x) 0 |
| 76 | #endif |
| 77 | |
alp@webkit.org | d8bfe3d | 2007-11-28 04:31:51 +0000 | [diff] [blame] | 78 | /* JavaScript symbol exports */ |
mcatanzaro@igalia.com | add9a25 | 2018-01-15 23:49:02 +0000 | [diff] [blame] | 79 | /* These rules should stay the same as in WebKit/Shared/API/c/WKDeclarationSpecifiers.h */ |
alp@webkit.org | d8bfe3d | 2007-11-28 04:31:51 +0000 | [diff] [blame] | 80 | |
| 81 | #undef JS_EXPORT |
eric@webkit.org | cf622b9 | 2009-12-28 16:58:28 +0000 | [diff] [blame] | 82 | #if defined(JS_NO_EXPORT) |
laszlo.1.gombos@nokia.com | d104ad8 | 2011-01-14 19:50:47 +0000 | [diff] [blame] | 83 | #define JS_EXPORT |
don.olmstead@sony.com | 628a15e | 2017-11-21 02:48:14 +0000 | [diff] [blame] | 84 | #elif defined(WIN32) || defined(_WIN32) || defined(__CC_ARM) || defined(__ARMCC__) || (__has_declspec_attribute(dllimport) && __has_declspec_attribute(dllexport)) |
commit-queue@webkit.org | 337179a | 2012-07-03 13:43:13 +0000 | [diff] [blame] | 85 | #if defined(BUILDING_JavaScriptCore) || defined(STATICALLY_LINKED_WITH_JavaScriptCore) |
laszlo.1.gombos@nokia.com | d104ad8 | 2011-01-14 19:50:47 +0000 | [diff] [blame] | 86 | #define JS_EXPORT __declspec(dllexport) |
alp@webkit.org | d8bfe3d | 2007-11-28 04:31:51 +0000 | [diff] [blame] | 87 | #else |
laszlo.1.gombos@nokia.com | d104ad8 | 2011-01-14 19:50:47 +0000 | [diff] [blame] | 88 | #define JS_EXPORT __declspec(dllimport) |
alp@webkit.org | d8bfe3d | 2007-11-28 04:31:51 +0000 | [diff] [blame] | 89 | #endif |
don.olmstead@sony.com | 628a15e | 2017-11-21 02:48:14 +0000 | [diff] [blame] | 90 | #elif defined(__GNUC__) |
| 91 | #define JS_EXPORT __attribute__((visibility("default"))) |
laszlo.1.gombos@nokia.com | d104ad8 | 2011-01-14 19:50:47 +0000 | [diff] [blame] | 92 | #else /* !defined(JS_NO_EXPORT) */ |
| 93 | #define JS_EXPORT |
| 94 | #endif /* defined(JS_NO_EXPORT) */ |
alp@webkit.org | d8bfe3d | 2007-11-28 04:31:51 +0000 | [diff] [blame] | 95 | |
ggaren | 6105a72 | 2006-07-14 17:41:10 +0000 | [diff] [blame] | 96 | #ifdef __cplusplus |
| 97 | extern "C" { |
| 98 | #endif |
| 99 | |
| 100 | /* Script Evaluation */ |
| 101 | |
| 102 | /*! |
ggaren@apple.com | 688249b | 2008-09-24 20:13:05 +0000 | [diff] [blame] | 103 | @function JSEvaluateScript |
darin | 91eab01 | 2006-07-17 15:19:46 +0000 | [diff] [blame] | 104 | @abstract Evaluates a string of JavaScript. |
| 105 | @param ctx The execution context to use. |
| 106 | @param script A JSString containing the script to evaluate. |
| 107 | @param thisObject The object to use as "this," or NULL to use the global object as "this." |
joepeck@webkit.org | 824b747 | 2014-03-11 02:39:40 +0000 | [diff] [blame] | 108 | @param sourceURL A JSString containing a URL for the script's source file. This is used by debuggers and when reporting exceptions. Pass NULL if you do not care to include source file information. |
joepeck@webkit.org | 9256497 | 2014-01-28 07:29:57 +0000 | [diff] [blame] | 109 | @param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when reporting exceptions. The value is one-based, so the first line is line 1 and invalid values are clamped to 1. |
darin | 91eab01 | 2006-07-17 15:19:46 +0000 | [diff] [blame] | 110 | @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. |
| 111 | @result The JSValue that results from evaluating script, or NULL if an exception is thrown. |
ggaren | 6105a72 | 2006-07-14 17:41:10 +0000 | [diff] [blame] | 112 | */ |
alp@webkit.org | d8bfe3d | 2007-11-28 04:31:51 +0000 | [diff] [blame] | 113 | JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception); |
ggaren | 6105a72 | 2006-07-14 17:41:10 +0000 | [diff] [blame] | 114 | |
| 115 | /*! |
| 116 | @function JSCheckScriptSyntax |
darin | 91eab01 | 2006-07-17 15:19:46 +0000 | [diff] [blame] | 117 | @abstract Checks for syntax errors in a string of JavaScript. |
| 118 | @param ctx The execution context to use. |
| 119 | @param script A JSString containing the script to check for syntax errors. |
| 120 | @param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care to include source file information in exceptions. |
joepeck@webkit.org | 9256497 | 2014-01-28 07:29:57 +0000 | [diff] [blame] | 121 | @param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when reporting exceptions. The value is one-based, so the first line is line 1 and invalid values are clamped to 1. |
darin | 91eab01 | 2006-07-17 15:19:46 +0000 | [diff] [blame] | 122 | @param exception A pointer to a JSValueRef in which to store a syntax error exception, if any. Pass NULL if you do not care to store a syntax error exception. |
| 123 | @result true if the script is syntactically correct, otherwise false. |
ggaren | 6105a72 | 2006-07-14 17:41:10 +0000 | [diff] [blame] | 124 | */ |
alp@webkit.org | d8bfe3d | 2007-11-28 04:31:51 +0000 | [diff] [blame] | 125 | JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception); |
ggaren | 6105a72 | 2006-07-14 17:41:10 +0000 | [diff] [blame] | 126 | |
| 127 | /*! |
ggaren@apple.com | 688249b | 2008-09-24 20:13:05 +0000 | [diff] [blame] | 128 | @function JSGarbageCollect |
joepeck@webkit.org | 9256497 | 2014-01-28 07:29:57 +0000 | [diff] [blame] | 129 | @abstract Performs a JavaScript garbage collection. |
ap@webkit.org | 17b9b2c | 2008-07-30 06:05:11 +0000 | [diff] [blame] | 130 | @param ctx The execution context to use. |
joepeck@webkit.org | 9256497 | 2014-01-28 07:29:57 +0000 | [diff] [blame] | 131 | @discussion JavaScript values that are on the machine stack, in a register, |
| 132 | protected by JSValueProtect, set as the global object of an execution context, |
ap@webkit.org | 17b9b2c | 2008-07-30 06:05:11 +0000 | [diff] [blame] | 133 | or reachable from any such value will not be collected. |
| 134 | |
joepeck@webkit.org | 9256497 | 2014-01-28 07:29:57 +0000 | [diff] [blame] | 135 | During JavaScript execution, you are not required to call this function; the |
ap@webkit.org | 17b9b2c | 2008-07-30 06:05:11 +0000 | [diff] [blame] | 136 | JavaScript engine will garbage collect as needed. JavaScript values created |
| 137 | within a context group are automatically destroyed when the last reference |
| 138 | to the context group is released. |
ggaren | 6105a72 | 2006-07-14 17:41:10 +0000 | [diff] [blame] | 139 | */ |
alp@webkit.org | d8bfe3d | 2007-11-28 04:31:51 +0000 | [diff] [blame] | 140 | JS_EXPORT void JSGarbageCollect(JSContextRef ctx); |
ggaren | 6105a72 | 2006-07-14 17:41:10 +0000 | [diff] [blame] | 141 | |
| 142 | #ifdef __cplusplus |
| 143 | } |
| 144 | #endif |
| 145 | |
fpizlo@apple.com | dcb592d | 2018-04-19 19:33:03 +0000 | [diff] [blame] | 146 | /* Enable the Objective-C API for platforms with a modern runtime. NOTE: This is duplicated in VM.h. */ |
mhahnenberg@apple.com | f0712f9 | 2013-02-21 20:00:33 +0000 | [diff] [blame] | 147 | #if !defined(JSC_OBJC_API_ENABLED) |
commit-queue@webkit.org | 2eb6835 | 2016-12-21 04:29:44 +0000 | [diff] [blame] | 148 | #if (defined(__clang__) && defined(__APPLE__) && ((defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && !defined(__i386__)) || (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE))) |
| 149 | #define JSC_OBJC_API_ENABLED 1 |
| 150 | #else |
| 151 | #define JSC_OBJC_API_ENABLED 0 |
| 152 | #endif |
mhahnenberg@apple.com | f0712f9 | 2013-02-21 20:00:33 +0000 | [diff] [blame] | 153 | #endif |
barraclough@apple.com | fc38188 | 2013-01-02 03:51:15 +0000 | [diff] [blame] | 154 | |
mrowe@apple.com | eef17d7 | 2008-03-19 07:48:37 +0000 | [diff] [blame] | 155 | #endif /* JSBase_h */ |