mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Javascript: Split implementation across multiple files
This commit is contained in:
parent
867d642872
commit
78ca2c5341
19 changed files with 1400 additions and 1088 deletions
284
modules/juce_javascript/javascript/juce_JSObject.cpp
Normal file
284
modules/juce_javascript/javascript/juce_JSObject.cpp
Normal file
|
|
@ -0,0 +1,284 @@
|
|||
/*
|
||||
==============================================================================
|
||||
|
||||
This file is part of the JUCE framework.
|
||||
Copyright (c) Raw Material Software Limited
|
||||
|
||||
JUCE is an open source framework subject to commercial or open source
|
||||
licensing.
|
||||
|
||||
By downloading, installing, or using the JUCE framework, or combining the
|
||||
JUCE framework with any other source code, object code, content or any other
|
||||
copyrightable work, you agree to the terms of the JUCE End User Licence
|
||||
Agreement, and all incorporated terms including the JUCE Privacy Policy and
|
||||
the JUCE Website Terms of Service, as applicable, which will bind you. If you
|
||||
do not agree to the terms of these agreements, we will not license the JUCE
|
||||
framework to you, and you must discontinue the installation or download
|
||||
process and cease use of the JUCE framework.
|
||||
|
||||
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
|
||||
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
|
||||
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
|
||||
|
||||
Or:
|
||||
|
||||
You may also use this code under the terms of the AGPLv3:
|
||||
https://www.gnu.org/licenses/agpl-3.0.en.html
|
||||
|
||||
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
|
||||
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
|
||||
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
|
||||
|
||||
==============================================================================
|
||||
*/
|
||||
|
||||
namespace juce
|
||||
{
|
||||
|
||||
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wsubobject-linkage")
|
||||
class JSObject::Impl
|
||||
{
|
||||
public:
|
||||
using ValuePtr = detail::qjs::QuickJSContext::ValuePtr;
|
||||
|
||||
explicit Impl (const detail::QuickJSWrapper* engineIn)
|
||||
: Impl (engineIn,
|
||||
{ detail::qjs::JS_GetGlobalObject (engineIn->getQuickJSContext()), engineIn->getQuickJSContext() })
|
||||
{
|
||||
}
|
||||
|
||||
Impl (const Impl& other)
|
||||
: Impl (other.engine,
|
||||
{ detail::qjs::JS_DupValue (other.engine->getQuickJSContext(), other.valuePtr.get()),
|
||||
other.engine->getQuickJSContext() })
|
||||
{
|
||||
}
|
||||
|
||||
std::unique_ptr<Impl> getChild (const Identifier& prop) const
|
||||
{
|
||||
return rawToUniquePtr (new Impl (engine, { detail::getOrCreateProperty (engine->getQuickJSContext(),
|
||||
valuePtr.get(),
|
||||
prop.toString().toRawUTF8()),
|
||||
engine->getQuickJSContext() }));
|
||||
}
|
||||
|
||||
std::unique_ptr<Impl> getChild (int64 index) const
|
||||
{
|
||||
jassert (isArray());
|
||||
return rawToUniquePtr (new Impl (engine, valuePtr[detail::toUint32 (index)]));
|
||||
}
|
||||
|
||||
bool hasProperty (const Identifier& name) const
|
||||
{
|
||||
return detail::hasProperty (engine->getQuickJSContext(), valuePtr.get(), name.toString().toRawUTF8());
|
||||
}
|
||||
|
||||
void setProperty (const Identifier& name, const var& value) const
|
||||
{
|
||||
auto* ctx = engine->getQuickJSContext();
|
||||
|
||||
detail::qjs::JS_SetPropertyStr (ctx, valuePtr.get(), name.toString().toRawUTF8(), detail::juceToQuickJs (value, ctx));
|
||||
}
|
||||
|
||||
void setProperty (int64 index, const var& value) const
|
||||
{
|
||||
auto* ctx = engine->getQuickJSContext();
|
||||
|
||||
detail::qjs::JS_SetPropertyInt64 (ctx, valuePtr.get(), index, detail::juceToQuickJs (value, ctx));
|
||||
}
|
||||
|
||||
var get() const
|
||||
{
|
||||
if (auto* opaque = detail::qjs::JS_GetOpaque (valuePtr.get(), detail::DynamicObjectWrapper::getClassId()))
|
||||
if (detail::DynamicObjectWrapper::getDynamicObjects().count (opaque) != 0)
|
||||
return { static_cast<detail::DynamicObjectWrapper*> (opaque)->object.get() };
|
||||
|
||||
auto* ctx = engine->getQuickJSContext();
|
||||
return detail::discardError (detail::quickJSToJuce ({ detail::qjs::JS_DupValue (ctx, valuePtr.get()), ctx }));
|
||||
}
|
||||
|
||||
detail::VarOrError invokeMethod (const Identifier& methodName, Span<const var> args) const
|
||||
{
|
||||
if (! hasProperty (methodName))
|
||||
{
|
||||
jassertfalse;
|
||||
return {};
|
||||
}
|
||||
|
||||
auto* ctx = engine->getQuickJSContext();
|
||||
const auto methodAtom = JS_NewAtom (ctx, methodName.toString().toRawUTF8());
|
||||
ScopeGuard scope { [&] { detail::qjs::JS_FreeAtom (ctx, methodAtom); } };
|
||||
|
||||
detail::JSFunctionArguments arguments { ctx, args };
|
||||
|
||||
ValuePtr returnVal { detail::qjs::JS_Invoke (ctx,
|
||||
valuePtr.get(),
|
||||
methodAtom,
|
||||
arguments.getSize(),
|
||||
arguments.getArguments()),
|
||||
ctx };
|
||||
|
||||
return detail::quickJSToJuce (returnVal);
|
||||
}
|
||||
|
||||
NamedValueSet getProperties() const
|
||||
{
|
||||
NamedValueSet result;
|
||||
|
||||
auto* ctx = engine->getQuickJSContext();
|
||||
ValuePtr names { detail::qjs::JS_GetOwnPropertyNames2 (ctx,
|
||||
valuePtr.get(),
|
||||
detail::qjs::JS_GPN_ENUM_ONLY | detail::qjs::JS_GPN_STRING_MASK,
|
||||
detail::qjs::JS_ITERATOR_KIND_KEY),
|
||||
ctx };
|
||||
|
||||
|
||||
if (auto v = detail::discardError (detail::quickJSToJuce (names)); const auto* propertyNames = v.getArray())
|
||||
{
|
||||
for (const auto& name : *propertyNames)
|
||||
{
|
||||
if (name.isString())
|
||||
{
|
||||
const Identifier prop { name.toString() };
|
||||
result.set (prop, getChild (prop)->get());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
bool isArray() const
|
||||
{
|
||||
return detail::qjs::JS_IsArray (engine->getQuickJSContext(), valuePtr.get());
|
||||
}
|
||||
|
||||
int64 getSize() const
|
||||
{
|
||||
if (! isArray())
|
||||
{
|
||||
jassertfalse;
|
||||
return 0;
|
||||
}
|
||||
|
||||
auto lengthProp = valuePtr["length"];
|
||||
uint32_t length = 0;
|
||||
detail::qjs::JS_ToUint32 (engine->getQuickJSContext(), &length, lengthProp.get());
|
||||
return (int64) length;
|
||||
}
|
||||
|
||||
private:
|
||||
Impl (const detail::QuickJSWrapper* e, ValuePtr&& ptr)
|
||||
: engine (e), valuePtr (std::move (ptr))
|
||||
{
|
||||
}
|
||||
|
||||
const detail::QuickJSWrapper* engine = nullptr;
|
||||
ValuePtr valuePtr;
|
||||
};
|
||||
JUCE_END_IGNORE_WARNINGS_GCC_LIKE
|
||||
|
||||
JSObject::JSObject (const detail::QuickJSWrapper* engine)
|
||||
: impl (new Impl (engine))
|
||||
{
|
||||
}
|
||||
|
||||
JSObject::JSObject (std::unique_ptr<Impl> implIn)
|
||||
: impl (std::move (implIn))
|
||||
{
|
||||
}
|
||||
|
||||
JSObject::JSObject (const JSObject& other)
|
||||
: impl (new Impl (*other.impl))
|
||||
{
|
||||
}
|
||||
|
||||
JSObject::~JSObject() = default;
|
||||
|
||||
JSObject::JSObject (JSObject&&) noexcept = default;
|
||||
|
||||
JSObject& JSObject::operator= (const JSObject& other)
|
||||
{
|
||||
JSObject { other }.swap (*this);
|
||||
return *this;
|
||||
}
|
||||
|
||||
JSObject& JSObject::operator= (JSObject&& other) noexcept = default;
|
||||
|
||||
JSObject JSObject::getChild (const Identifier& name) const
|
||||
{
|
||||
return JSObject { impl->getChild (name) };
|
||||
}
|
||||
|
||||
JSObject JSObject::operator[] (const Identifier& name) const
|
||||
{
|
||||
return getChild (name);
|
||||
}
|
||||
|
||||
bool JSObject::isArray() const
|
||||
{
|
||||
return impl->isArray();
|
||||
}
|
||||
|
||||
int64 JSObject::getSize() const
|
||||
{
|
||||
return impl->getSize();
|
||||
}
|
||||
|
||||
JSObject JSObject::getChild (int64 index) const
|
||||
{
|
||||
jassert (isArray());
|
||||
return JSObject { impl->getChild (index) };
|
||||
}
|
||||
|
||||
JSObject JSObject::operator[] (int64 index) const
|
||||
{
|
||||
return getChild (index);
|
||||
}
|
||||
|
||||
bool JSObject::hasProperty (const Identifier& name) const
|
||||
{
|
||||
return impl->hasProperty (name);
|
||||
}
|
||||
|
||||
var JSObject::get() const
|
||||
{
|
||||
return impl->get();
|
||||
}
|
||||
|
||||
void JSObject::setProperty (const Identifier& name, const var& value) const
|
||||
{
|
||||
impl->setProperty (name, value);
|
||||
}
|
||||
|
||||
void JSObject::setProperty (int64 index, const var& value) const
|
||||
{
|
||||
impl->setProperty (index, value);
|
||||
}
|
||||
|
||||
var JSObject::invokeMethod (const Identifier& methodName,
|
||||
Span<const var> args,
|
||||
Result* result) const
|
||||
{
|
||||
const auto varOrError = impl->invokeMethod (methodName, args);
|
||||
|
||||
if (result != nullptr)
|
||||
{
|
||||
const auto* e = std::get_if<String> (&varOrError);
|
||||
*result = e != nullptr ? Result::fail (*e) : Result::ok();
|
||||
}
|
||||
|
||||
return detail::discardError (varOrError);
|
||||
}
|
||||
|
||||
NamedValueSet JSObject::getProperties() const
|
||||
{
|
||||
return impl->getProperties();
|
||||
}
|
||||
|
||||
void JSObject::swap (JSObject& other) noexcept
|
||||
{
|
||||
std::swap (impl, other.impl);
|
||||
}
|
||||
|
||||
} // namespace juce
|
||||
Loading…
Add table
Add a link
Reference in a new issue