/// <summary>
        /// Runs a serialized script
        /// </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="script">The source code of the serialized script</param>
        /// <param name="buffer">The serialized script</param>
        /// <param name="scriptLoadCallback">Callback to load the source code of the serialized script</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>
        /// <returns>The result of running the script, if any</returns>
        public static JsValue RunSerializedScript(string script, byte[] buffer,
                                                  JsSerializedLoadScriptCallback scriptLoadCallback, JsSourceContext sourceContext, string sourceUrl)
        {
            JsValue bufferValue = JsValue.CreateExternalArrayBuffer(buffer);

            bufferValue.AddRef();

            JsValue sourceUrlValue = JsValue.FromString(sourceUrl);

            sourceUrlValue.AddRef();

            JsValue result;

            try
            {
                JsErrorCode errorCode = NativeMethods.JsRunSerialized(bufferValue, scriptLoadCallback,
                                                                      sourceContext, sourceUrlValue, out result);
                JsErrorHelpers.ThrowIfError(errorCode);
            }
            finally
            {
                bufferValue.Release();
                sourceUrlValue.Release();
            }

            return(result);
        }
 /// <summary>
 /// Sets a user implemented callback to get notification when the module is ready
 /// </summary>
 /// <param name="notifyModuleReadyCallback">The callback function being set</param>
 public void SetNotifyModuleReadyCallback(JsNotifyModuleReadyCallback notifyModuleReadyCallback)
 {
     JsErrorHelpers.ThrowIfError(NativeMethods.JsSetModuleHostInfo(this,
                                                                   JsModuleHostInfoKind.NotifyModuleReadyCallback,
                                                                   Marshal.GetFunctionPointerForDelegate(notifyModuleReadyCallback)
                                                                   ));
 }
 /// <summary>
 /// Sets a user implemented callback to fetch additional imported modules in ES modules
 /// </summary>
 /// <param name="fetchImportedModuleCallback">The callback function being set</param>
 public void SetFetchImportedModuleCallback(JsFetchImportedModuleCallback fetchImportedModuleCallback)
 {
     JsErrorHelpers.ThrowIfError(NativeMethods.JsSetModuleHostInfo(this,
                                                                   JsModuleHostInfoKind.FetchImportedModuleCallback,
                                                                   Marshal.GetFunctionPointerForDelegate(fetchImportedModuleCallback)
                                                                   ));
 }
        /// <summary>
        /// Initialize a <code>JsModuleRecord</code> 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 - invalid module record
        /// for a root module</param>
        /// <param name="specifier">The specifier coming from the module source code</param>
        /// <param name="normalizedSpecifier">The normalized specifier for the module</param>
        /// <returns>The new module record. The host should not try to call this API twice with the same
        /// <paramref name="normalizedSpecifier"/></returns>
        public static JsModuleRecord Create(JsModuleRecord referencingModule, string specifier,
                                            string normalizedSpecifier)
        {
            JsValue specifierValue = JsValue.FromString(specifier);

            specifierValue.AddRef();

            JsValue normalizedSpecifierValue = JsValue.FromString(normalizedSpecifier);

            normalizedSpecifierValue.AddRef();

            JsModuleRecord moduleRecord;

            try
            {
                JsErrorHelpers.ThrowIfError(NativeMethods.JsInitializeModuleRecord(referencingModule,
                                                                                   normalizedSpecifierValue, out moduleRecord));
                moduleRecord.Specifier = specifierValue;
                moduleRecord.Url       = normalizedSpecifierValue;
            }
            finally
            {
                specifierValue.Release();
                normalizedSpecifierValue.Release();
            }

            return(moduleRecord);
        }
        /// <summary>
        /// Executes a script
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </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>
        /// <returns>The result of the script, if any</returns>
        public static JsValue RunScript(string script, JsSourceContext sourceContext, string sourceUrl,
                                        ref JsParseScriptAttributes parseAttributes)
        {
            JsValue scriptValue = JsValue.FromString(script);

            scriptValue.AddRef();

            JsValue sourceUrlValue = JsValue.FromString(sourceUrl);

            sourceUrlValue.AddRef();

            JsValue result;

            try
            {
                JsErrorCode errorCode = NativeMethods.JsRun(scriptValue, sourceContext, sourceUrlValue,
                                                            parseAttributes, out result);
                JsErrorHelpers.ThrowIfError(errorCode);
            }
            finally
            {
                scriptValue.Release();
                sourceUrlValue.Release();
            }

            return(result);
        }
        /// <summary>
        /// Creates a new runtime
        /// </summary>
        /// <param name="attributes">The attributes of the runtime to be created</param>
        /// <param name="threadServiceCallback">The thread service for the runtime. Can be null</param>
        /// <returns>The runtime created</returns>
        public static JsRuntime Create(JsRuntimeAttributes attributes, JsThreadServiceCallback threadServiceCallback)
        {
            JsRuntime handle;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsCreateRuntime(attributes, threadServiceCallback, out handle));

            return(handle);
        }
        /// <summary>
        /// Test if an object has a value at the specified index
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="index">The index to test</param>
        /// <returns>Whether the object has an value at the specified index</returns>
        public bool HasIndexedProperty(JsValue index)
        {
            bool hasProperty;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsHasIndexedProperty(this, index, out hasProperty));

            return(hasProperty);
        }
        /// <summary>
        /// Deletes an object's property
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="propertyId">The ID of the property</param>
        /// <param name="useStrictRules">The property set should follow strict mode rules</param>
        /// <returns>Whether the property was deleted</returns>
        public JsValue DeleteProperty(JsPropertyId propertyId, bool useStrictRules)
        {
            JsValue returnReference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsDeleteProperty(this, propertyId, useStrictRules, out returnReference));

            return(returnReference);
        }
        /// <summary>
        /// Determines whether an object has a non-inherited property
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="propertyId">The ID of the property</param>
        /// <returns>Whether the object has the non-inherited property</returns>
        public bool HasOwnProperty(JsPropertyId propertyId)
        {
            bool hasOwnProperty;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsHasOwnProperty(this, propertyId, out hasOwnProperty));

            return(hasOwnProperty);
        }
Esempio n. 10
0
        /// <summary>
        /// Gets a property descriptor for an object's own property
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="propertyId">The ID of the property</param>
        /// <returns>The property descriptor</returns>
        public JsValue GetOwnPropertyDescriptor(JsPropertyId propertyId)
        {
            JsValue descriptorReference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsGetOwnPropertyDescriptor(this, propertyId, out descriptorReference));

            return(descriptorReference);
        }
Esempio n. 11
0
        /// <summary>
        /// Converts a value to <c>String</c> using regular JavaScript semantics
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <returns>The converted value</returns>
        public JsValue ConvertToString()
        {
            JsValue stringReference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsConvertValueToString(this, out stringReference));

            return(stringReference);
        }
Esempio n. 12
0
        /// <summary>
        /// Creates a new JavaScript function
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="function">The method to call when the function is invoked</param>
        /// <param name="callbackData">Data to be provided to all function callbacks</param>
        /// <returns>The new function object</returns>
        public static JsValue CreateFunction(JsNativeFunction function, IntPtr callbackData)
        {
            JsValue reference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsCreateFunction(function, callbackData, out reference));

            return(reference);
        }
Esempio n. 13
0
        /// <summary>
        /// Creates a new <c>Object</c> 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="finalizer">The callback for when the object is finalized. May be null.</param>
        /// <returns>The new <c>Object</c></returns>
        public static JsValue CreateExternalObject(IntPtr data, JsFinalizeCallback finalizer)
        {
            JsValue reference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsCreateExternalObject(data, finalizer, out reference));

            return(reference);
        }
Esempio n. 14
0
        /// <summary>
        /// Creates a new <c>Object</c>
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <returns>The new <c>Object</c></returns>
        public static JsValue CreateObject()
        {
            JsValue reference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsCreateObject(out reference));

            return(reference);
        }
Esempio n. 15
0
        /// <summary>
        /// Creates a <c>Number</c> value from a <c>int</c> value
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="value">The value to be converted</param>
        /// <returns>The new <c>Number</c> value</returns>
        public static JsValue FromInt32(int value)
        {
            JsValue reference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsIntToNumber(value, out reference));

            return(reference);
        }
Esempio n. 16
0
        /// <summary>
        /// Converts a value to <c>Boolean</c> using regular JavaScript semantics
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <returns>The converted value</returns>
        public JsValue ConvertToBoolean()
        {
            JsValue booleanReference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsConvertValueToBoolean(this, out booleanReference));

            return(booleanReference);
        }
Esempio n. 17
0
        /// <summary>
        /// Converts a value to <c>Number</c> using regular JavaScript semantics
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <returns>The converted value</returns>
        public JsValue ConvertToNumber()
        {
            JsValue numberReference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsConvertValueToNumber(this, out numberReference));

            return(numberReference);
        }
Esempio n. 18
0
        /// <summary>
        /// Creates a JavaScript array object
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="length">The initial length of the array</param>
        /// <returns>The new array object</returns>
        public static JsValue CreateArray(uint length)
        {
            JsValue reference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsCreateArray(length, out reference));

            return(reference);
        }
Esempio n. 19
0
        /// <summary>
        /// Converts a value to <c>Object</c> using regular JavaScript semantics
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <returns>The converted value</returns>
        public JsValue ConvertToObject()
        {
            JsValue objectReference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsConvertValueToObject(this, out objectReference));

            return(objectReference);
        }
Esempio n. 20
0
        /// <summary>
        /// Creates a new JavaScript URIError error object
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="message">Message for the error object</param>
        /// <returns>The new error object</returns>
        public static JsValue CreateUriError(JsValue message)
        {
            JsValue reference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsCreateURIError(message, out reference));

            return(reference);
        }
Esempio n. 21
0
        /// <summary>
        /// Gets a list of all properties on the object
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <returns>An array of property names</returns>
        public JsValue GetOwnPropertyNames()
        {
            JsValue propertyNamesReference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsGetOwnPropertyNames(this, out propertyNamesReference));

            return(propertyNamesReference);
        }
Esempio n. 22
0
        /// <summary>
        /// Adds a reference to the object
        /// </summary>
        /// <remarks>
        /// This only needs to be called on objects that are not going to be stored somewhere on
        /// the stack. Calling AddRef ensures that the JavaScript object the value refers to will not be freed
        /// until Release is called
        /// </remarks>
        /// <returns>The object's new reference count</returns>
        public uint AddRef()
        {
            uint count;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsAddRef(this, out count));

            return(count);
        }
Esempio n. 23
0
        /// <summary>
        /// Gets an object's property
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="id">The ID of the property</param>
        /// <returns>The value of the property</returns>
        public JsValue GetProperty(JsPropertyId id)
        {
            JsValue propertyReference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsGetProperty(this, id, out propertyReference));

            return(propertyReference);
        }
Esempio n. 24
0
        /// <summary>
        /// Releases a reference to the object
        /// </summary>
        /// <remarks>
        /// Removes a reference that was created by AddRef.
        /// </remarks>
        /// <returns>The object's new reference count</returns>
        public uint Release()
        {
            uint count;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsRelease(this, out count));

            return(count);
        }
Esempio n. 25
0
        /// <summary>
        /// Defines a new object's own property from a property descriptor
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="propertyId">The ID of the property</param>
        /// <param name="propertyDescriptor">The property descriptor</param>
        /// <returns>Whether the property was defined</returns>
        public bool DefineProperty(JsPropertyId propertyId, JsValue propertyDescriptor)
        {
            bool result;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsDefineProperty(this, propertyId, propertyDescriptor, out result));

            return(result);
        }
Esempio n. 26
0
        /// <summary>
        /// Retrieves a <c>bool</c> value of a <c>Boolean</c> value
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <returns>The converted value</returns>
        public bool ToBoolean()
        {
            bool value;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsBooleanToBool(this, out value));

            return(value);
        }
Esempio n. 27
0
        /// <summary>
        /// Retrieves a value at the specified index of an object
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="index">The index to retrieve</param>
        /// <returns>The retrieved value</returns>
        public JsValue GetIndexedProperty(JsValue index)
        {
            JsValue propertyReference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsGetIndexedProperty(this, index, out propertyReference));

            return(propertyReference);
        }
Esempio n. 28
0
        /// <summary>
        /// Retrieves a <c>double</c> value of a <c>Number</c> value
        /// </summary>
        /// <remarks>
        /// <para>
        /// This function retrieves the value of a Number value. It will fail with
        /// <c>InvalidArgument</c> if the type of the value is not <c>Number</c>.
        /// </para>
        /// <para>
        /// Requires an active script context.
        /// </para>
        /// </remarks>
        /// <returns>The <c>double</c> value</returns>
        public double ToDouble()
        {
            double value;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsNumberToDouble(this, out value));

            return(value);
        }
        /// <summary>
        /// Creates a script context for running scripts
        /// </summary>
        /// <remarks>
        /// Each script context has its own global object that is isolated from all other script
        /// contexts.
        /// </remarks>
        /// <returns>The created script context</returns>
        public JsContext CreateContext()
        {
            JsContext reference;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsCreateContext(this, out reference));

            return(reference);
        }
Esempio n. 30
0
        /// <summary>
        /// Retrieves a <c>int</c> value of a <c>Number</c> value
        /// </summary>
        /// <remarks>
        /// <para>
        /// This function retrieves the value of a Number value. It will fail with
        /// <c>InvalidArgument</c> if the type of the value is not <c>Number</c>.
        /// </para>
        /// <para>
        /// Requires an active script context.
        /// </para>
        /// </remarks>
        /// <returns>The <c>int</c> value</returns>
        public int ToInt32()
        {
            int value;

            JsErrorHelpers.ThrowIfError(NativeMethods.JsNumberToInt(this, out value));

            return(value);
        }