| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275 |
- //-------------------------------------------------------------------------------------------------------
- // 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
- /// <summary>
- /// A reference to an ES module.
- /// </summary>
- /// <remarks>
- /// A module record represents an ES module.
- /// </remarks>
- 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;
- /// <summary>
- /// Flags for parsing a module.
- /// </summary>
- typedef enum JsParseModuleSourceFlags
- {
- /// <summary>
- /// Module source is UTF16.
- /// </summary>
- JsParseModuleSourceFlags_DataIsUTF16LE = 0x00000000,
- /// <summary>
- /// Module source is UTF8.
- /// </summary>
- JsParseModuleSourceFlags_DataIsUTF8 = 0x00000001
- } JsParseModuleSourceFlags;
- /// <summary>
- /// The types of host info that can be set on a module record with JsSetModuleHostInfo.
- /// </summary>
- /// <remarks>
- /// For more information see JsSetModuleHostInfo.
- /// </remarks>
- typedef enum JsModuleHostInfoKind
- {
- /// <summary>
- /// An exception object - e.g. if the module file cannot be found.
- /// </summary>
- JsModuleHostInfo_Exception = 0x01,
- /// <summary>
- /// Host defined info.
- /// </summary>
- JsModuleHostInfo_HostDefined = 0x02,
- /// <summary>
- /// Callback for receiving notification when module is ready.
- /// </summary>
- JsModuleHostInfo_NotifyModuleReadyCallback = 0x3,
- /// <summary>
- /// Callback for receiving notification to fetch a dependent module.
- /// </summary>
- JsModuleHostInfo_FetchImportedModuleCallback = 0x4,
- /// <summary>
- /// Callback for receiving notification for calls to ```import()```
- /// </summary>
- JsModuleHostInfo_FetchImportedModuleFromScriptCallback = 0x5,
- /// <summary>
- /// URL for use in error stack traces and debugging.
- /// </summary>
- 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 in ES modules.
- /// </summary>
- /// <remarks>
- /// The callback is invoked on the current runtime execution thread, therefore execution is blocked until
- /// the callback completes. 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 needs to retrieve the module back.
- ///
- /// Callback should:
- /// 1. Check if the requested module has been requested before - if yes return the existing
- /// module record
- /// 2. If no create and initialize a new module record with JsInitializeModuleRecord to
- /// return and schedule a call to JsParseModuleSource for the new record.
- /// </remarks>
- /// <param name="referencingModule">The referencing module that is requesting the dependent module.</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>
- /// Returns a <c>JsNoError</c> if the operation succeeded an error code otherwise.
- /// </returns>
- typedef JsErrorCode(CHAKRA_CALLBACK * FetchImportedModuleCallBack)(_In_ JsModuleRecord referencingModule, _In_ JsValueRef specifier, _Outptr_result_maybenull_ JsModuleRecord* dependentModuleRecord);
- /// <summary>
- /// User implemented callback to fetch imported modules dynamically in scripts.
- /// </summary>
- /// <remarks>
- /// The callback is invoked on the current runtime execution thread, therefore execution is blocked untill
- /// the callback completes. Notify the host to fetch the dependent module. This is used for the dynamic
- /// import() syntax.
- ///
- /// Callback should:
- /// 1. Check if the requested module has been requested before - if yes return the existing module record
- /// 2. If no create and initialize a new module record with JsInitializeModuleRecord to return and
- /// schedule a call to JsParseModuleSource for the new record.
- /// </remarks>
- /// <param name="dwReferencingSourceContext">The referencing script context that calls import()</param>
- /// <param name="specifier">The specifier provided to the import() call.</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>
- /// Returns <c>JsNoError</c> if the operation succeeded or an error code 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>
- /// The callback is invoked on the current runtime execution thread, therefore execution is blocked until the
- /// callback completes. This callback should schedule a call to JsEvaluateModule to run the module that has been loaded.
- /// </remarks>
- /// <param name="referencingModule">The referencing module that has 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>
- /// Returns a JsErrorCode - note, the return value is ignored.
- /// </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 parent module of the new module - nullptr for a root module.</param>
- /// <param name="normalizedSpecifier">The normalized specifier for the module.</param>
- /// <param name="moduleRecord">The new module record. The host should not try to call this API twice
- /// with the same normalizedSpecifier.</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 source for an ES module
- /// </summary>
- /// <remarks>
- /// This is basically ParseModule operation in ES6 spec. It is slightly different in that:
- /// a) The ModuleRecord was initialized earlier, and passed in as an argument.
- /// b) This includes a check to see if the module being Parsed is the last module in the
- /// dependency tree. If it is it automatically triggers Module Instantiation.
- /// </remarks>
- /// <param name="requestModule">The ModuleRecord being parsed.</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 length of sourceText in bytes. As the input might contain a embedded null.</param>
- /// <param name="sourceFlag">The type of the source code passed in. It could be utf16 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.
- /// This method should be called after the engine notifies the host that the module is ready.
- /// This method only needs to be called on root modules - it will execute all of the dependent modules.
- ///
- /// One moduleRecord will be executed only once. Additional execution call on the same moduleRecord will fail.
- /// </remarks>
- /// <param name="requestModule">The ModuleRecord being 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 host info for the specified module.
- /// </summary>
- /// <remarks>
- /// This is used for four things:
- /// 1. Setting up the callbacks for module loading - note these are actually
- /// set on the current Context not the module so only have to be set for
- /// the first root module in any given context.
- /// 2. Setting host defined info on a module record - can be anything that
- /// you wish to associate with your modules.
- /// 3. Setting a URL for a module to be used for stack traces/debugging -
- /// note this must be set before calling JsParseModuleSource on the module
- /// or it will be ignored.
- /// 4. Setting an exception on the module object - only relevant prior to it being Parsed.
- /// </remarks>
- /// <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>
- /// <remarks>
- /// This can used to retrieve info previously set with JsSetModuleHostInfo.
- /// </remarks>
- /// <param name="requestModule">The request module.</param>
- /// <param name="moduleHostInfo">The type of host info to be retrieved.</param>
- /// <param name="hostInfo">The retrieved host info for the module.</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>
- /// Retrieve the namespace object for a module.
- /// </summary>
- /// <remarks>
- /// Requires an active script context and that the module has already been evaluated.
- /// </remarks>
- /// <param name="requestModule">The JsModuleRecord for which the namespace is being requested.</param>
- /// <param name="moduleNamespace">A JsValueRef - the requested namespace object.</param>
- /// <returns>
- /// The code <c>JsNoError</c> if the operation succeeded, a failure code otherwise.
- /// </returns>
- CHAKRA_API
- JsGetModuleNamespace(
- _In_ JsModuleRecord requestModule,
- _Outptr_result_maybenull_ JsValueRef *moduleNamespace);
- /// <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);
- /// <summary>
- /// Parses a script and stores the generated parser state cache into a buffer which can be reused.
- /// </summary>
- /// <remarks>
- /// <para>
- /// <c>JsSerializeParserState</c> parses a script and then stores a cache of the parser state
- /// in a runtime-independent format. The parser state may be deserialized in any runtime along
- /// with the same script to skip the initial parse phase.
- /// </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="scriptVal">The script to parse.</param>
- /// <param name="bufferVal">The buffer to put the serialized parser state cache into.</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
- JsSerializeParserState(
- _In_ JsValueRef scriptVal,
- _Out_ JsValueRef *bufferVal,
- _In_ JsParseScriptAttributes parseAttributes);
- /// <summary>
- /// Deserializes the cache of initial parser state and (along with the same
- /// script source) executes the script and returns the result.
- /// </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="parserState">
- /// A buffer containing a cache of the parser state generated by <c>JsSerializeParserState</c>.
- /// </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
- JsRunScriptWithParserState(
- _In_ JsValueRef script,
- _In_ JsSourceContext sourceContext,
- _In_ JsValueRef sourceUrl,
- _In_ JsParseScriptAttributes parseAttributes,
- _In_ JsValueRef parserState,
- _Out_ JsValueRef * result);
- #endif // _CHAKRACOREBUILD
- #endif // _CHAKRACORE_H_
|