| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- /// \mainpage Chakra Hosting API Reference
- ///
- /// Chakra is Microsoft's JavaScript engine. It is an integral part of Internet Explorer but can
- /// also be hosted independently by other applications. This reference describes the APIs available
- /// to applications to host Chakra.
- ///
- /// \file
- /// \brief The Chakra Core hosting API.
- ///
- /// This file contains a flat C API layer. This is the API exported by ChakraCore.dll.
- #ifdef _MSC_VER
- #pragma once
- #endif // _MSC_VER
- #ifndef _CHAKRACORE_H_
- #define _CHAKRACORE_H_
- #if !defined(NTBUILD) && !defined(_CHAKRACOREBUILD)
- #define _CHAKRACOREBUILD
- #endif
- #include "ChakraCommon.h"
- #include "ChakraDebug.h"
- // Begin ChakraCore only APIs
- #ifdef _CHAKRACOREBUILD
- typedef void* JsModuleRecord;
- /// <summary>
- /// A reference to an object owned by the SharedArrayBuffer.
- /// </summary>
- /// <remarks>
- /// This represents SharedContents which is heap allocated object, it can be passed through
- /// different runtimes to share the underlying buffer.
- /// </remarks>
- typedef void *JsSharedArrayBufferContentHandle;
- typedef enum JsParseModuleSourceFlags
- {
- JsParseModuleSourceFlags_DataIsUTF16LE = 0x00000000,
- JsParseModuleSourceFlags_DataIsUTF8 = 0x00000001
- } JsParseModuleSourceFlags;
- typedef enum JsModuleHostInfoKind
- {
- JsModuleHostInfo_Exception = 0x01,
- JsModuleHostInfo_HostDefined = 0x02,
- JsModuleHostInfo_NotifyModuleReadyCallback = 0x3,
- JsModuleHostInfo_FetchImportedModuleCallback = 0x4,
- JsModuleHostInfo_FetchImportedModuleFromScriptCallback = 0x5,
- JsModuleHostInfo_Url = 0x6
- } JsModuleHostInfoKind;
- /// <summary>
- /// The possible states for a Promise object.
- /// </summary>
- typedef enum _JsPromiseState
- {
- JsPromiseStatePending = 0x0,
- JsPromiseStateFulfilled = 0x1,
- JsPromiseStateRejected = 0x2
- } JsPromiseState;
- /// <summary>
- /// User implemented callback to fetch additional imported modules.
- /// </summary>
- /// <remarks>
- /// Notify the host to fetch the dependent module. This is the "import" part before HostResolveImportedModule in ES6 spec.
- /// This notifies the host that the referencing module has the specified module dependency, and the host need to retrieve the module back.
- /// </remarks>
- /// <param name="referencingModule">The referencing module that is requesting the dependency modules.</param>
- /// <param name="specifier">The specifier coming from the module source code.</param>
- /// <param name="dependentModuleRecord">The ModuleRecord of the dependent module. If the module was requested before from other source, return the
- /// existing ModuleRecord, otherwise return a newly created ModuleRecord.</param>
- /// <returns>
- /// true if the operation succeeded, false otherwise.
- /// </returns>
- typedef JsErrorCode(CHAKRA_CALLBACK * FetchImportedModuleCallBack)(_In_ JsModuleRecord referencingModule, _In_ JsValueRef specifier, _Outptr_result_maybenull_ JsModuleRecord* dependentModuleRecord);
- /// <summary>
- /// User implemented callback to get notification when the module is ready.
- /// </summary>
- /// <remarks>
- /// Notify the host after ModuleDeclarationInstantiation step (15.2.1.1.6.4) is finished. If there was error in the process, exceptionVar
- /// holds the exception. Otherwise the referencingModule is ready and the host should schedule execution afterwards.
- /// </remarks>
- /// <param name="referencingModule">The referencing module that have finished running ModuleDeclarationInstantiation step.</param>
- /// <param name="exceptionVar">If nullptr, the module is successfully initialized and host should queue the execution job
- /// otherwise it's the exception object.</param>
- /// <returns>
- /// true if the operation succeeded, false otherwise.
- /// </returns>
- typedef JsErrorCode(CHAKRA_CALLBACK * FetchImportedModuleFromScriptCallBack)(_In_ JsSourceContext dwReferencingSourceContext, _In_ JsValueRef specifier, _Outptr_result_maybenull_ JsModuleRecord* dependentModuleRecord);
- /// <summary>
- /// User implemented callback to get notification when the module is ready.
- /// </summary>
- /// <remarks>
- /// Notify the host after ModuleDeclarationInstantiation step (15.2.1.1.6.4) is finished. If there was error in the process, exceptionVar
- /// holds the exception. Otherwise the referencingModule is ready and the host should schedule execution afterwards.
- /// </remarks>
- /// <param name="dwReferencingSourceContext">The referencing script that calls import()</param>
- /// <param name="exceptionVar">If nullptr, the module is successfully initialized and host should queue the execution job
- /// otherwise it's the exception object.</param>
- /// <returns>
- /// true if the operation succeeded, false otherwise.
- /// </returns>
- typedef JsErrorCode(CHAKRA_CALLBACK * NotifyModuleReadyCallback)(_In_opt_ JsModuleRecord referencingModule, _In_opt_ JsValueRef exceptionVar);
- /// <summary>
- /// A structure containing information about a native function callback.
- /// </summary>
- typedef struct JsNativeFunctionInfo
- {
- JsValueRef thisArg;
- JsValueRef newTargetArg;
- bool isConstructCall;
- }JsNativeFunctionInfo;
- /// <summary>
- /// A function callback.
- /// </summary>
- /// <param name="callee">
- /// A function object that represents the function being invoked.
- /// </param>
- /// <param name="arguments">The arguments to the call.</param>
- /// <param name="argumentCount">The number of arguments.</param>
- /// <param name="info">Additional information about this function call.</param>
- /// <param name="callbackState">
- /// The state passed to <c>JsCreateFunction</c>.
- /// </param>
- /// <returns>The result of the call, if any.</returns>
- typedef _Ret_maybenull_ JsValueRef(CHAKRA_CALLBACK * JsEnhancedNativeFunction)(_In_ JsValueRef callee, _In_ JsValueRef *arguments, _In_ unsigned short argumentCount, _In_ JsNativeFunctionInfo *info, _In_opt_ void *callbackState);
- /// <summary>
- /// A Promise Rejection Tracker callback.
- /// </summary>
- /// <remarks>
- /// The host can specify a promise rejection tracker callback in <c>JsSetHostPromiseRejectionTracker</c>.
- /// If a promise is rejected with no reactions or a reaction is added to a promise that was rejected
- /// before it had reactions by default nothing is done.
- /// A Promise Rejection Tracker callback may be set - which will then be called when this occurs.
- /// Note - per draft ECMASpec 2018 25.4.1.9 this function should not set or return an exception
- /// Note also the promise and reason parameters may be garbage collected after this function is called
- /// if you wish to make further use of them you will need to use JsAddRef to preserve them
- /// However if you use JsAddRef you must also call JsRelease and not hold unto them after
- /// a handled notification (both per spec and to avoid memory leaks)
- /// </remarks>
- /// <param name="promise">The promise object, represented as a JsValueRef.</param>
- /// <param name="reason">The value/cause of the rejection, represented as a JsValueRef.</param>
- /// <param name="handled">Boolean - false for promiseRejected: i.e. if the promise has just been rejected with no handler,
- /// true for promiseHandled: i.e. if it was rejected before without a handler and is now being handled.</param>
- /// <param name="callbackState">The state passed to <c>JsSetHostPromiseRejectionTracker</c>.</param>
- typedef void (CHAKRA_CALLBACK *JsHostPromiseRejectionTrackerCallback)(_In_ JsValueRef promise, _In_ JsValueRef reason, _In_ bool handled, _In_opt_ void *callbackState);
- /// <summary>
- /// Creates a new enhanced JavaScript function.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="nativeFunction">The method to call when the function is invoked.</param>
- /// <param name="metadata">If this is not <c>JS_INVALID_REFERENCE</c>, it is converted to a string and used as the name of the function.</param>
- /// <param name="callbackState">
- /// User provided state that will be passed back to the callback.
- /// </param>
- /// <param name="function">The new function object.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCreateEnhancedFunction(
- _In_ JsEnhancedNativeFunction nativeFunction,
- _In_opt_ JsValueRef metadata,
- _In_opt_ void *callbackState,
- _Out_ JsValueRef *function);
- /// <summary>
- /// Initialize a ModuleRecord from host
- /// </summary>
- /// <remarks>
- /// Bootstrap the module loading process by creating a new module record.
- /// </remarks>
- /// <param name="referencingModule">The referencingModule as in HostResolveImportedModule (15.2.1.17). nullptr if this is the top level module.</param>
- /// <param name="normalizedSpecifier">The host normalized specifier. This is the key to a unique ModuleRecord.</param>
- /// <param name="moduleRecord">The new ModuleRecord created. The host should not try to call this API twice with the same normalizedSpecifier.
- /// chakra will return an existing ModuleRecord if the specifier was passed in before.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsInitializeModuleRecord(
- _In_opt_ JsModuleRecord referencingModule,
- _In_ JsValueRef normalizedSpecifier,
- _Outptr_result_maybenull_ JsModuleRecord* moduleRecord);
- /// <summary>
- /// Parse the module source
- /// </summary>
- /// <remarks>
- /// This is basically ParseModule operation in ES6 spec. It is slightly different in that the ModuleRecord was initialized earlier, and passed in as an argument.
- /// </remarks>
- /// <param name="requestModule">The ModuleRecord that holds the parse tree of the source code.</param>
- /// <param name="sourceContext">A cookie identifying the script that can be used by debuggable script contexts.</param>
- /// <param name="script">The source script to be parsed, but not executed in this code.</param>
- /// <param name="scriptLength">The source length of sourceText. The input might contain embedded null.</param>
- /// <param name="sourceFlag">The type of the source code passed in. It could be UNICODE or utf8 at this time.</param>
- /// <param name="exceptionValueRef">The error object if there is parse error.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsParseModuleSource(
- _In_ JsModuleRecord requestModule,
- _In_ JsSourceContext sourceContext,
- _In_ BYTE* script,
- _In_ unsigned int scriptLength,
- _In_ JsParseModuleSourceFlags sourceFlag,
- _Outptr_result_maybenull_ JsValueRef* exceptionValueRef);
- /// <summary>
- /// Execute module code.
- /// </summary>
- /// <remarks>
- /// This method implements 15.2.1.1.6.5, "ModuleEvaluation" concrete method.
- /// When this methid is called, the chakra engine should have notified the host that the module and all its dependent are ready to be executed.
- /// One moduleRecord will be executed only once. Additional execution call on the same moduleRecord will fail.
- /// </remarks>
- /// <param name="requestModule">The module to be executed.</param>
- /// <param name="result">The return value of the module.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsModuleEvaluation(
- _In_ JsModuleRecord requestModule,
- _Outptr_result_maybenull_ JsValueRef* result);
- /// <summary>
- /// Set the host info for the specified module.
- /// </summary>
- /// <param name="requestModule">The request module.</param>
- /// <param name="moduleHostInfo">The type of host info to be set.</param>
- /// <param name="hostInfo">The host info to be set.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsSetModuleHostInfo(
- _In_ JsModuleRecord requestModule,
- _In_ JsModuleHostInfoKind moduleHostInfo,
- _In_ void* hostInfo);
- /// <summary>
- /// Retrieve the host info for the specified module.
- /// </summary>
- /// <param name="requestModule">The request module.</param>
- /// <param name="moduleHostInfo">The type of host info to get.</param>
- /// <param name="hostInfo">The host info to be retrieved.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsGetModuleHostInfo(
- _In_ JsModuleRecord requestModule,
- _In_ JsModuleHostInfoKind moduleHostInfo,
- _Outptr_result_maybenull_ void** hostInfo);
- /// <summary>
- /// Returns metadata relating to the exception that caused the runtime of the current context
- /// to be in the exception state and resets the exception state for that runtime. The metadata
- /// includes a reference to the exception itself.
- /// </summary>
- /// <remarks>
- /// <para>
- /// If the runtime of the current context is not in an exception state, this API will return
- /// <c>JsErrorInvalidArgument</c>. If the runtime is disabled, this will return an exception
- /// indicating that the script was terminated, but it will not clear the exception (the
- /// exception will be cleared if the runtime is re-enabled using
- /// <c>JsEnableRuntimeExecution</c>).
- /// </para>
- /// <para>
- /// The metadata value is a javascript object with the following properties: <c>exception</c>, the
- /// thrown exception object; <c>line</c>, the 0 indexed line number where the exception was thrown;
- /// <c>column</c>, the 0 indexed column number where the exception was thrown; <c>length</c>, the
- /// source-length of the cause of the exception; <c>source</c>, a string containing the line of
- /// source code where the exception was thrown; and <c>url</c>, a string containing the name of
- /// the script file containing the code that threw the exception.
- /// </para>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// </remarks>
- /// <param name="metadata">The exception metadata for the runtime of the current context.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsGetAndClearExceptionWithMetadata(
- _Out_ JsValueRef *metadata);
- /// <summary>
- /// Called by the runtime to load the source code of the serialized script.
- /// </summary>
- /// <param name="sourceContext">The context passed to Js[Parse|Run]SerializedScriptCallback</param>
- /// <param name="script">The script returned.</param>
- /// <returns>
- /// true if the operation succeeded, false otherwise.
- /// </returns>
- typedef bool (CHAKRA_CALLBACK * JsSerializedLoadScriptCallback)
- (JsSourceContext sourceContext, _Out_ JsValueRef *value,
- _Out_ JsParseScriptAttributes *parseAttributes);
- /// <summary>
- /// Create JavascriptString variable from ASCII or Utf8 string
- /// </summary>
- /// <remarks>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// <para>
- /// Input string can be either ASCII or Utf8
- /// </para>
- /// </remarks>
- /// <param name="content">Pointer to string memory.</param>
- /// <param name="length">Number of bytes within the string</param>
- /// <param name="value">JsValueRef representing the JavascriptString</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCreateString(
- _In_ const char *content,
- _In_ size_t length,
- _Out_ JsValueRef *value);
- /// <summary>
- /// Create JavascriptString variable from Utf16 string
- /// </summary>
- /// <remarks>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// <para>
- /// Expects Utf16 string
- /// </para>
- /// </remarks>
- /// <param name="content">Pointer to string memory.</param>
- /// <param name="length">Number of characters within the string</param>
- /// <param name="value">JsValueRef representing the JavascriptString</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCreateStringUtf16(
- _In_ const uint16_t *content,
- _In_ size_t length,
- _Out_ JsValueRef *value);
- /// <summary>
- /// Write JavascriptString value into C string buffer (Utf8)
- /// </summary>
- /// <remarks>
- /// <para>
- /// When size of the `buffer` is unknown,
- /// `buffer` argument can be nullptr.
- /// In that case, `length` argument will return the length needed.
- /// </para>
- /// </remarks>
- /// <param name="value">JavascriptString value</param>
- /// <param name="buffer">Pointer to buffer</param>
- /// <param name="bufferSize">Buffer size</param>
- /// <param name="length">Total number of characters needed or written</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCopyString(
- _In_ JsValueRef value,
- _Out_opt_ char* buffer,
- _In_ size_t bufferSize,
- _Out_opt_ size_t* length);
- /// <summary>
- /// Write string value into Utf16 string buffer
- /// </summary>
- /// <remarks>
- /// <para>
- /// When size of the `buffer` is unknown,
- /// `buffer` argument can be nullptr.
- /// In that case, `written` argument will return the length needed.
- /// </para>
- /// <para>
- /// when start is out of range or < 0, returns JsErrorInvalidArgument
- /// and `written` will be equal to 0.
- /// If calculated length is 0 (It can be due to string length or `start`
- /// and length combination), then `written` will be equal to 0 and call
- /// returns JsNoError
- /// </para>
- /// </remarks>
- /// <param name="value">JavascriptString value</param>
- /// <param name="start">start offset of buffer</param>
- /// <param name="length">length to be written</param>
- /// <param name="buffer">Pointer to buffer</param>
- /// <param name="written">Total number of characters written</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCopyStringUtf16(
- _In_ JsValueRef value,
- _In_ int start,
- _In_ int length,
- _Out_opt_ uint16_t* buffer,
- _Out_opt_ size_t* written);
- /// <summary>
- /// Parses a script and returns a function representing the script.
- /// </summary>
- /// <remarks>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// <para>
- /// Script source can be either JavascriptString or JavascriptExternalArrayBuffer.
- /// In case it is an ExternalArrayBuffer, and the encoding of the buffer is Utf16,
- /// JsParseScriptAttributeArrayBufferIsUtf16Encoded is expected on parseAttributes.
- /// </para>
- /// <para>
- /// Use JavascriptExternalArrayBuffer with Utf8/ASCII script source
- /// for better performance and smaller memory footprint.
- /// </para>
- /// </remarks>
- /// <param name="script">The script to run.</param>
- /// <param name="sourceContext">
- /// A cookie identifying the script that can be used by debuggable script contexts.
- /// </param>
- /// <param name="sourceUrl">The location the script came from.</param>
- /// <param name="parseAttributes">Attribute mask for parsing the script</param>
- /// <param name="result">The result of the compiled script.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsParse(
- _In_ JsValueRef script,
- _In_ JsSourceContext sourceContext,
- _In_ JsValueRef sourceUrl,
- _In_ JsParseScriptAttributes parseAttributes,
- _Out_ JsValueRef *result);
- /// <summary>
- /// Executes a script.
- /// </summary>
- /// <remarks>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// <para>
- /// Script source can be either JavascriptString or JavascriptExternalArrayBuffer.
- /// In case it is an ExternalArrayBuffer, and the encoding of the buffer is Utf16,
- /// JsParseScriptAttributeArrayBufferIsUtf16Encoded is expected on parseAttributes.
- /// </para>
- /// <para>
- /// Use JavascriptExternalArrayBuffer with Utf8/ASCII script source
- /// for better performance and smaller memory footprint.
- /// </para>
- /// </remarks>
- /// <param name="script">The script to run.</param>
- /// <param name="sourceContext">
- /// A cookie identifying the script that can be used by debuggable script contexts.
- /// </param>
- /// <param name="sourceUrl">The location the script came from</param>
- /// <param name="parseAttributes">Attribute mask for parsing the script</param>
- /// <param name="result">The result of the script, if any. This parameter can be null.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsRun(
- _In_ JsValueRef script,
- _In_ JsSourceContext sourceContext,
- _In_ JsValueRef sourceUrl,
- _In_ JsParseScriptAttributes parseAttributes,
- _Out_ JsValueRef *result);
- /// <summary>
- /// Creates the property ID associated with the name.
- /// </summary>
- /// <remarks>
- /// <para>
- /// Property IDs are specific to a context and cannot be used across contexts.
- /// </para>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// </remarks>
- /// <param name="name">
- /// The name of the property ID to get or create. The name may consist of only digits.
- /// The string is expected to be ASCII / utf8 encoded.
- /// </param>
- /// <param name="length">length of the name in bytes</param>
- /// <param name="propertyId">The property ID in this runtime for the given name.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCreatePropertyId(
- _In_z_ const char *name,
- _In_ size_t length,
- _Out_ JsPropertyIdRef *propertyId);
- /// <summary>
- /// Copies the name associated with the property ID into a buffer.
- /// </summary>
- /// <remarks>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// <para>
- /// When size of the `buffer` is unknown,
- /// `buffer` argument can be nullptr.
- /// `length` argument will return the size needed.
- /// </para>
- /// </remarks>
- /// <param name="propertyId">The property ID to get the name of.</param>
- /// <param name="buffer">The buffer holding the name associated with the property ID, encoded as utf8</param>
- /// <param name="bufferSize">Size of the buffer.</param>
- /// <param name="written">Total number of characters written or to be written</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCopyPropertyId(
- _In_ JsPropertyIdRef propertyId,
- _Out_ char* buffer,
- _In_ size_t bufferSize,
- _Out_ size_t* length);
- /// <summary>
- /// Serializes a parsed script to a buffer than can be reused.
- /// </summary>
- /// <remarks>
- /// <para>
- /// <c>JsSerializeScript</c> parses a script and then stores the parsed form of the script in a
- /// runtime-independent format. The serialized script then can be deserialized in any
- /// runtime without requiring the script to be re-parsed.
- /// </para>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// <para>
- /// Script source can be either JavascriptString or JavascriptExternalArrayBuffer.
- /// In case it is an ExternalArrayBuffer, and the encoding of the buffer is Utf16,
- /// JsParseScriptAttributeArrayBufferIsUtf16Encoded is expected on parseAttributes.
- /// </para>
- /// <para>
- /// Use JavascriptExternalArrayBuffer with Utf8/ASCII script source
- /// for better performance and smaller memory footprint.
- /// </para>
- /// </remarks>
- /// <param name="script">The script to serialize</param>
- /// <param name="buffer">ArrayBuffer</param>
- /// <param name="parseAttributes">Encoding for the script.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsSerialize(
- _In_ JsValueRef script,
- _Out_ JsValueRef *buffer,
- _In_ JsParseScriptAttributes parseAttributes);
- /// <summary>
- /// Parses a serialized script and returns a function representing the script.
- /// Provides the ability to lazy load the script source only if/when it is needed.
- /// </summary>
- /// <remarks>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// </remarks>
- /// <param name="buffer">The serialized script as an ArrayBuffer (preferably ExternalArrayBuffer).</param>
- /// <param name="scriptLoadCallback">
- /// Callback called when the source code of the script needs to be loaded.
- /// This is an optional parameter, set to null if not needed.
- /// </param>
- /// <param name="sourceContext">
- /// A cookie identifying the script that can be used by debuggable script contexts.
- /// This context will passed into scriptLoadCallback.
- /// </param>
- /// <param name="sourceUrl">The location the script came from.</param>
- /// <param name="result">A function representing the script code.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsParseSerialized(
- _In_ JsValueRef buffer,
- _In_ JsSerializedLoadScriptCallback scriptLoadCallback,
- _In_ JsSourceContext sourceContext,
- _In_ JsValueRef sourceUrl,
- _Out_ JsValueRef *result);
- /// <summary>
- /// Runs a serialized script.
- /// Provides the ability to lazy load the script source only if/when it is needed.
- /// </summary>
- /// <remarks>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// <para>
- /// The runtime will detach the data from the buffer and hold on to it until all
- /// instances of any functions created from the buffer are garbage collected.
- /// </para>
- /// </remarks>
- /// <param name="buffer">The serialized script as an ArrayBuffer (preferably ExternalArrayBuffer).</param>
- /// <param name="scriptLoadCallback">Callback called when the source code of the script needs to be loaded.</param>
- /// <param name="sourceContext">
- /// A cookie identifying the script that can be used by debuggable script contexts.
- /// This context will passed into scriptLoadCallback.
- /// </param>
- /// <param name="sourceUrl">The location the script came from.</param>
- /// <param name="result">
- /// The result of running the script, if any. This parameter can be null.
- /// </param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsRunSerialized(
- _In_ JsValueRef buffer,
- _In_ JsSerializedLoadScriptCallback scriptLoadCallback,
- _In_ JsSourceContext sourceContext,
- _In_ JsValueRef sourceUrl,
- _Out_ JsValueRef *result);
- /// <summary>
- /// Gets the state of a given Promise object.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="promise">The Promise object.</param>
- /// <param name="state">The current state of the Promise.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsGetPromiseState(
- _In_ JsValueRef promise,
- _Out_ JsPromiseState *state);
- /// <summary>
- /// Gets the result of a given Promise object.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="promise">The Promise object.</param>
- /// <param name="result">The result of the Promise.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsGetPromiseResult(
- _In_ JsValueRef promise,
- _Out_ JsValueRef *result);
- /// <summary>
- /// Creates a new JavaScript Promise object.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="promise">The new Promise object.</param>
- /// <param name="resolveFunction">The function called to resolve the created Promise object.</param>
- /// <param name="rejectFunction">The function called to reject the created Promise object.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCreatePromise(
- _Out_ JsValueRef *promise,
- _Out_ JsValueRef *resolveFunction,
- _Out_ JsValueRef *rejectFunction);
- /// <summary>
- /// A weak reference to a JavaScript value.
- /// </summary>
- /// <remarks>
- /// A value with only weak references is available for garbage-collection. A strong reference
- /// to the value (<c>JsValueRef</c>) may be obtained from a weak reference if the value happens
- /// to still be available.
- /// </remarks>
- typedef JsRef JsWeakRef;
- /// <summary>
- /// Creates a weak reference to a value.
- /// </summary>
- /// <param name="value">The value to be referenced.</param>
- /// <param name="weakRef">Weak reference to the value.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCreateWeakReference(
- _In_ JsValueRef value,
- _Out_ JsWeakRef* weakRef);
- /// <summary>
- /// Gets a strong reference to the value referred to by a weak reference.
- /// </summary>
- /// <param name="weakRef">A weak reference.</param>
- /// <param name="value">Reference to the value, or <c>JS_INVALID_REFERENCE</c> if the value is
- /// no longer available.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsGetWeakReferenceValue(
- _In_ JsWeakRef weakRef,
- _Out_ JsValueRef* value);
- /// <summary>
- /// Creates a Javascript SharedArrayBuffer object with shared content get from JsGetSharedArrayBufferContent.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="sharedContents">
- /// The storage object of a SharedArrayBuffer which can be shared between multiple thread.
- /// </param>
- /// <param name="result">The new SharedArrayBuffer object.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCreateSharedArrayBufferWithSharedContent(
- _In_ JsSharedArrayBufferContentHandle sharedContents,
- _Out_ JsValueRef *result);
- /// <summary>
- /// Get the storage object from a SharedArrayBuffer.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="sharedArrayBuffer">The SharedArrayBuffer object.</param>
- /// <param name="sharedContents">
- /// The storage object of a SharedArrayBuffer which can be shared between multiple thread.
- /// User should call JsReleaseSharedArrayBufferContentHandle after finished using it.
- /// </param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsGetSharedArrayBufferContent(
- _In_ JsValueRef sharedArrayBuffer,
- _Out_ JsSharedArrayBufferContentHandle *sharedContents);
- /// <summary>
- /// Decrease the reference count on a SharedArrayBuffer storage object.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="sharedContents">
- /// The storage object of a SharedArrayBuffer which can be shared between multiple thread.
- /// </param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsReleaseSharedArrayBufferContentHandle(
- _In_ JsSharedArrayBufferContentHandle sharedContents);
- /// <summary>
- /// Determines whether an object has a non-inherited property.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="object">The object that may contain the property.</param>
- /// <param name="propertyId">The ID of the property.</param>
- /// <param name="hasOwnProperty">Whether the object has the non-inherited property.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsHasOwnProperty(
- _In_ JsValueRef object,
- _In_ JsPropertyIdRef propertyId,
- _Out_ bool *hasOwnProperty);
- /// <summary>
- /// Write JS string value into char string buffer without a null terminator
- /// </summary>
- /// <remarks>
- /// <para>
- /// When size of the `buffer` is unknown,
- /// `buffer` argument can be nullptr.
- /// In that case, `written` argument will return the length needed.
- /// </para>
- /// <para>
- /// When start is out of range or < 0, returns JsErrorInvalidArgument
- /// and `written` will be equal to 0.
- /// If calculated length is 0 (It can be due to string length or `start`
- /// and length combination), then `written` will be equal to 0 and call
- /// returns JsNoError
- /// </para>
- /// <para>
- /// The JS string `value` will be converted one utf16 code point at a time,
- /// and if it has code points that do not fit in one byte, those values
- /// will be truncated.
- /// </para>
- /// </remarks>
- /// <param name="value">JavascriptString value</param>
- /// <param name="start">Start offset of buffer</param>
- /// <param name="length">Number of characters to be written</param>
- /// <param name="buffer">Pointer to buffer</param>
- /// <param name="written">Total number of characters written</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCopyStringOneByte(
- _In_ JsValueRef value,
- _In_ int start,
- _In_ int length,
- _Out_opt_ char* buffer,
- _Out_opt_ size_t* written);
- /// <summary>
- /// Obtains frequently used properties of a data view.
- /// </summary>
- /// <param name="dataView">The data view instance.</param>
- /// <param name="arrayBuffer">The ArrayBuffer backstore of the view.</param>
- /// <param name="byteOffset">The offset in bytes from the start of arrayBuffer referenced by the array.</param>
- /// <param name="byteLength">The number of bytes in the array.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsGetDataViewInfo(
- _In_ JsValueRef dataView,
- _Out_opt_ JsValueRef *arrayBuffer,
- _Out_opt_ unsigned int *byteOffset,
- _Out_opt_ unsigned int *byteLength);
- /// <summary>
- /// Determine if one JavaScript value is less than another JavaScript value.
- /// </summary>
- /// <remarks>
- /// <para>
- /// This function is equivalent to the <c><</c> operator in Javascript.
- /// </para>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// </remarks>
- /// <param name="object1">The first object to compare.</param>
- /// <param name="object2">The second object to compare.</param>
- /// <param name="result">Whether object1 is less than object2.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsLessThan(
- _In_ JsValueRef object1,
- _In_ JsValueRef object2,
- _Out_ bool *result);
- /// <summary>
- /// Determine if one JavaScript value is less than or equal to another JavaScript value.
- /// </summary>
- /// <remarks>
- /// <para>
- /// This function is equivalent to the <c><=</c> operator in Javascript.
- /// </para>
- /// <para>
- /// Requires an active script context.
- /// </para>
- /// </remarks>
- /// <param name="object1">The first object to compare.</param>
- /// <param name="object2">The second object to compare.</param>
- /// <param name="result">Whether object1 is less than or equal to object2.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsLessThanOrEqual(
- _In_ JsValueRef object1,
- _In_ JsValueRef object2,
- _Out_ bool *result);
- /// <summary>
- /// Creates a new object (with prototype) that stores some external data.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="data">External data that the object will represent. May be null.</param>
- /// <param name="finalizeCallback">
- /// A callback for when the object is finalized. May be null.
- /// </param>
- /// <param name="prototype">Prototype object or nullptr.</param>
- /// <param name="object">The new object.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsCreateExternalObjectWithPrototype(
- _In_opt_ void *data,
- _In_opt_ JsFinalizeCallback finalizeCallback,
- _In_opt_ JsValueRef prototype,
- _Out_ JsValueRef *object);
- /// <summary>
- /// Gets an object's property.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="object">The object that contains the property.</param>
- /// <param name="key">The key (JavascriptString or JavascriptSymbol) to the property.</param>
- /// <param name="value">The value of the property.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsObjectGetProperty(
- _In_ JsValueRef object,
- _In_ JsValueRef key,
- _Out_ JsValueRef *value);
- /// <summary>
- /// Puts an object's property.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="object">The object that contains the property.</param>
- /// <param name="key">The key (JavascriptString or JavascriptSymbol) to the property.</param>
- /// <param name="value">The new value of the property.</param>
- /// <param name="useStrictRules">The property set should follow strict mode rules.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsObjectSetProperty(
- _In_ JsValueRef object,
- _In_ JsValueRef key,
- _In_ JsValueRef value,
- _In_ bool useStrictRules);
- /// <summary>
- /// Determines whether an object has a property.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="object">The object that may contain the property.</param>
- /// <param name="key">The key (JavascriptString or JavascriptSymbol) to the property.</param>
- /// <param name="hasProperty">Whether the object (or a prototype) has the property.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsObjectHasProperty(
- _In_ JsValueRef object,
- _In_ JsValueRef key,
- _Out_ bool *hasProperty);
- /// <summary>
- /// Defines a new object's own property from a property descriptor.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="object">The object that has the property.</param>
- /// <param name="key">The key (JavascriptString or JavascriptSymbol) to the property.</param>
- /// <param name="propertyDescriptor">The property descriptor.</param>
- /// <param name="result">Whether the property was defined.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsObjectDefineProperty(
- _In_ JsValueRef object,
- _In_ JsValueRef key,
- _In_ JsValueRef propertyDescriptor,
- _Out_ bool *result);
- /// <summary>
- /// Deletes an object's property.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="object">The object that contains the property.</param>
- /// <param name="key">The key (JavascriptString or JavascriptSymbol) to the property.</param>
- /// <param name="useStrictRules">The property set should follow strict mode rules.</param>
- /// <param name="result">Whether the property was deleted.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsObjectDeleteProperty(
- _In_ JsValueRef object,
- _In_ JsValueRef key,
- _In_ bool useStrictRules,
- _Out_ JsValueRef *result);
- /// <summary>
- /// Gets a property descriptor for an object's own property.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="object">The object that has the property.</param>
- /// <param name="key">The key (JavascriptString or JavascriptSymbol) to the property.</param>
- /// <param name="propertyDescriptor">The property descriptor.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsObjectGetOwnPropertyDescriptor(
- _In_ JsValueRef object,
- _In_ JsValueRef key,
- _Out_ JsValueRef *propertyDescriptor);
- /// <summary>
- /// Determines whether an object has a non-inherited property.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="object">The object that may contain the property.</param>
- /// <param name="key">The key (JavascriptString or JavascriptSymbol) to the property.</param>
- /// <param name="hasOwnProperty">Whether the object has the non-inherited property.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsObjectHasOwnProperty(
- _In_ JsValueRef object,
- _In_ JsValueRef key,
- _Out_ bool *hasOwnProperty);
- /// <summary>
- /// Sets whether any action should be taken when a promise is rejected with no reactions
- /// or a reaction is added to a promise that was rejected before it had reactions.
- /// By default in either of these cases nothing occurs.
- /// This function allows you to specify if something should occur and provide a callback
- /// to implement whatever should occur.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// </remarks>
- /// <param name="promiseRejectionTrackerCallback">The callback function being set.</param>
- /// <param name="callbackState">
- /// User provided state that will be passed back to the callback.
- /// </param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsSetHostPromiseRejectionTracker(
- _In_ JsHostPromiseRejectionTrackerCallback promiseRejectionTrackerCallback,
- _In_opt_ void *callbackState);
- /// <summary>
- /// Determines if a provided object is a JavscriptProxy Object and
- /// provides references to a Proxy's target and handler.
- /// </summary>
- /// <remarks>
- /// Requires an active script context.
- /// If object is not a Proxy object the target and handler parameters are not touched.
- /// If nullptr is supplied for target or handler the function returns after
- /// setting the isProxy value.
- /// If the object is a revoked Proxy target and handler are set to JS_INVALID_REFERENCE.
- /// If it is a Proxy object that has not been revoked target and handler are set to the
- /// the object's target and handler.
- /// </remarks>
- /// <param name="object">The object that may be a Proxy.</param>
- /// <param name="isProxy">Pointer to a Boolean - is the object a proxy?</param>
- /// <param name="target">Pointer to a JsValueRef - the object's target.</param>
- /// <param name="handler">Pointer to a JsValueRef - the object's handler.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsGetProxyProperties(
- _In_ JsValueRef object,
- _Out_ bool* isProxy,
- _Out_opt_ JsValueRef* target,
- _Out_opt_ JsValueRef* handler);
- #endif // _CHAKRACOREBUILD
- #endif // _CHAKRACORE_H_
|