Loading...
Searching...
No Matches
JSObject Class Reference

A JSObject represents an owning reference to the underlying JS object, meaning it will remain valid even if a subsequent script execution deletes other handles to it. More...

#include <juce_Javascript.h>

Public Member Functions

 JSObject (const detail::QuickJSWrapper *engine)
 Constructor, used internally by the JavascriptEngine implementation.
 
 ~JSObject ()
 Destructor.
 
 JSObject (const JSObject &)
 Copy constructor.
 
 JSObject (JSObject &&) noexcept
 Move constructor.
 
JSObjectoperator= (const JSObject &)
 Copy assignment operator.
 
JSObjectoperator= (JSObject &&) noexcept
 Move assignment operator.
 
JSObject getChild (const Identifier &name) const
 Returns a new cursor pointing to a JS object that is a property of the parent cursor's underlying object and has the provided name.
 
JSObject operator[] (const Identifier &name) const
 Returns a cursor object pointing to the property with the given name.
 
JSObject getChild (int64 index) const
 Returns a new cursor object pointing to the specified element in an Array.
 
JSObject operator[] (int64 index) const
 Returns a new cursor object pointing to the specified element in an Array.
 
bool isArray () const
 Returns true if the JS Object under the cursor is an Array.
 
int64 getSize () const
 Returns the size of the underlying JS Array.
 
bool hasProperty (const Identifier &name) const
 Returns true if the object under the cursor has a property with the given name.
 
var get () const
 Returns a variant with a value of the property under the given name.
 
void setProperty (const Identifier &name, const var &value) const
 Adds a named property to the underlying Object with the provided value, or assigns this value to an existing property with this name.
 
void setProperty (int64 index, const var &value) const
 Adds a property with an integral identifier and the provided value to the underlying Object, or assigns the value to an existing property.
 
var invokeMethod (const Identifier &methodName, Span< const var > args, Result *result=nullptr) const
 Invokes this node as though it were a method.
 
NamedValueSet getProperties () const
 Returns all properties of the current object that are own properties, i.e.
 

Detailed Description

A JSObject represents an owning reference to the underlying JS object, meaning it will remain valid even if a subsequent script execution deletes other handles to it.

Objects of this class can be used to traverse the current object graph inside the specified Javascript engine.

This is a low-level providing only operations that map directly to the underlying Javascript Object implementation. The JSCursor class generally provides a more convenient interface with functions that may fail based on the Javascript engine's current state.

See also
JSCursor

Constructor & Destructor Documentation

◆ JSObject() [1/3]

JSObject::JSObject ( const detail::QuickJSWrapper * engine)
explicit

Constructor, used internally by the JavascriptEngine implementation.

To create a new JSObject pointing at the root object of the engine's context use JavascriptEngine::getRootObject().

◆ ~JSObject()

JSObject::~JSObject ( )

Destructor.

◆ JSObject() [2/3]

JSObject::JSObject ( const JSObject & )

Copy constructor.

◆ JSObject() [3/3]

JSObject::JSObject ( JSObject && )
noexcept

Move constructor.

Member Function Documentation

◆ operator=() [1/2]

JSObject & JSObject::operator= ( const JSObject & )

Copy assignment operator.

◆ operator=() [2/2]

JSObject & JSObject::operator= ( JSObject && )
noexcept

Move assignment operator.

◆ getChild() [1/2]

JSObject JSObject::getChild ( const Identifier & name) const

Returns a new cursor pointing to a JS object that is a property of the parent cursor's underlying object and has the provided name.

You can use hasProperty() to check if such a property exists prior to the creation of this cursor. If no such property exists, this constructor will create a new JS Object and attach it to the parent under the specified name. This can be used to manipulate the object graph.

◆ operator[]() [1/2]

JSObject JSObject::operator[] ( const Identifier & name) const

Returns a cursor object pointing to the property with the given name.

If such property doesn't exist it will be created as an empty JS Object. Shorthand for getChild.

◆ getChild() [2/2]

JSObject JSObject::getChild ( int64 index) const

Returns a new cursor object pointing to the specified element in an Array.

You must ensure that the cursor points to an Array before calling this function.

See also
isArray

◆ operator[]() [2/2]

JSObject JSObject::operator[] ( int64 index) const

Returns a new cursor object pointing to the specified element in an Array.

This function is a shorthand for getChild (int64).

You must ensure that the cursor points to an Array before calling this function.

See also
isArray

◆ isArray()

bool JSObject::isArray ( ) const

Returns true if the JS Object under the cursor is an Array.

You can use getChild() or operator[]() to get a cursor to individual elements in the array or get() to obtain a JUCE variant wrapping all array elements.

◆ getSize()

int64 JSObject::getSize ( ) const

Returns the size of the underlying JS Array.

You must ensure that the cursor points to an Array before calling this function.

See also
isArray

◆ hasProperty()

bool JSObject::hasProperty ( const Identifier & name) const

Returns true if the object under the cursor has a property with the given name.

◆ get()

var JSObject::get ( ) const

Returns a variant with a value of the property under the given name.

If no such property exists an undefined variant is returned.

If this property points to an object created by JavascriptEngine::registerNativeObject(), then the returned variant will contain a pointer to the original object and can be acquired by variant::getDynamicObject().

◆ setProperty() [1/2]

void JSObject::setProperty ( const Identifier & name,
const var & value ) const

Adds a named property to the underlying Object with the provided value, or assigns this value to an existing property with this name.

◆ setProperty() [2/2]

void JSObject::setProperty ( int64 index,
const var & value ) const

Adds a property with an integral identifier and the provided value to the underlying Object, or assigns the value to an existing property.

If the underlying Object is also an Array, then the provided value will be assigned to the specified element of this Array, and ensure that it will have a size of at least index - 1.

◆ invokeMethod()

var JSObject::invokeMethod ( const Identifier & methodName,
Span< const var > args,
Result * result = nullptr ) const

Invokes this node as though it were a method.

If the optional Result pointer is provided it will contain Result::ok() in case of success, or an error message in case an exception was thrown during evaluation.

◆ getProperties()

NamedValueSet JSObject::getProperties ( ) const

Returns all properties of the current object that are own properties, i.e.

not inherited.


The documentation for this class was generated from the following file:
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram