1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
|
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2008 litl, LLC
#include <config.h>
#include <stdint.h>
#include <girepository.h>
#include <glib-object.h>
#include <js/CallAndConstruct.h>
#include <js/CallArgs.h>
#include <js/Class.h>
#include <js/ColumnNumber.h>
#include <js/Exception.h>
#include <js/PropertyAndElement.h>
#include <js/PropertyDescriptor.h> // for JSPROP_ENUMERATE
#include <js/RootingAPI.h>
#include <js/SavedFrameAPI.h>
#include <js/Stack.h> // for BuildStackString, CaptureCurrentStack
#include <js/TypeDecls.h>
#include <js/Utility.h> // for UniqueChars
#include <js/Value.h>
#include <js/ValueArray.h>
#include <jsapi.h> // for InformalValueTypeName, JS_GetClassObject
#include <jspubtd.h> // for JSProtoKey, JSProto_Error, JSProt...
#include "gi/arg-inl.h"
#include "gi/boxed.h"
#include "gi/enumeration.h"
#include "gi/gerror.h"
#include "gi/repo.h"
#include "cjs/atoms.h"
#include "cjs/context-private.h"
#include "cjs/error-types.h"
#include "cjs/jsapi-util.h"
#include "cjs/macros.h"
#include "cjs/mem-private.h"
#include "util/log.h"
ErrorPrototype::ErrorPrototype(GIEnumInfo* info, GType gtype)
: GIWrapperPrototype(info, gtype),
m_domain(g_quark_from_string(g_enum_info_get_error_domain(info))) {
GJS_INC_COUNTER(gerror_prototype);
}
ErrorPrototype::~ErrorPrototype(void) { GJS_DEC_COUNTER(gerror_prototype); }
ErrorInstance::ErrorInstance(ErrorPrototype* prototype, JS::HandleObject obj)
: GIWrapperInstance(prototype, obj) {
GJS_INC_COUNTER(gerror_instance);
}
ErrorInstance::~ErrorInstance(void) {
GJS_DEC_COUNTER(gerror_instance);
}
/*
* ErrorBase::domain:
*
* Fetches ErrorPrototype::domain() for instances as well as prototypes.
*/
GQuark ErrorBase::domain(void) const { return get_prototype()->domain(); }
// See GIWrapperBase::constructor().
bool ErrorInstance::constructor_impl(JSContext* context,
JS::HandleObject object,
const JS::CallArgs& argv) {
if (argv.length() != 1 || !argv[0].isObject()) {
gjs_throw(context, "Invalid parameters passed to GError constructor, expected one object");
return false;
}
JS::RootedObject params_obj(context, &argv[0].toObject());
JS::UniqueChars message;
const GjsAtoms& atoms = GjsContextPrivate::atoms(context);
if (!gjs_object_require_property(context, params_obj, "GError constructor",
atoms.message(), &message))
return false;
int32_t code;
if (!gjs_object_require_property(context, params_obj, "GError constructor",
atoms.code(), &code))
return false;
m_ptr = g_error_new_literal(domain(), code, message.get());
/* We assume this error will be thrown in the same line as the constructor */
return gjs_define_error_properties(context, object);
}
/*
* ErrorBase::get_domain:
*
* JSNative property getter for `domain`. This property works on prototypes as
* well as instances.
*/
bool ErrorBase::get_domain(JSContext* cx, unsigned argc, JS::Value* vp) {
GJS_CHECK_WRAPPER_PRIV(cx, argc, vp, args, obj, ErrorBase, priv);
args.rval().setInt32(priv->domain());
return true;
}
// JSNative property getter for `message`.
bool ErrorBase::get_message(JSContext* cx, unsigned argc, JS::Value* vp) {
GJS_CHECK_WRAPPER_PRIV(cx, argc, vp, args, obj, ErrorBase, priv);
if (!priv->check_is_instance(cx, "get a field"))
return false;
return gjs_string_from_utf8(cx, priv->to_instance()->message(),
args.rval());
}
// JSNative property getter for `code`.
bool ErrorBase::get_code(JSContext* cx, unsigned argc, JS::Value* vp) {
GJS_CHECK_WRAPPER_PRIV(cx, argc, vp, args, obj, ErrorBase, priv);
if (!priv->check_is_instance(cx, "get a field"))
return false;
args.rval().setInt32(priv->to_instance()->code());
return true;
}
// JSNative implementation of `toString()`.
bool ErrorBase::to_string(JSContext* context, unsigned argc, JS::Value* vp) {
GJS_GET_THIS(context, argc, vp, rec, self);
GjsAutoChar descr;
// An error created via `new GLib.Error` will have a Boxed* private pointer,
// not an Error*, so we can't call regular to_string() on it.
if (BoxedBase::typecheck(context, self, nullptr, G_TYPE_ERROR,
GjsTypecheckNoThrow())) {
auto* gerror = BoxedBase::to_c_ptr<GError>(context, self);
if (!gerror)
return false;
descr =
g_strdup_printf("GLib.Error %s: %s",
g_quark_to_string(gerror->domain), gerror->message);
return gjs_string_from_utf8(context, descr, rec.rval());
}
ErrorBase* priv;
if (!for_js_typecheck(context, self, &priv, &rec))
return false;
/* We follow the same pattern as standard JS errors, at the expense of
hiding some useful information */
if (priv->is_prototype()) {
descr = g_strdup_printf("%s.%s", priv->ns(), priv->name());
} else {
descr = g_strdup_printf("%s.%s: %s", priv->ns(), priv->name(),
priv->to_instance()->message());
}
return gjs_string_from_utf8(context, descr, rec.rval());
}
// JSNative implementation of `valueOf()`.
bool ErrorBase::value_of(JSContext* context, unsigned argc, JS::Value* vp) {
GJS_GET_THIS(context, argc, vp, rec, self);
JS::RootedObject prototype(context);
const GjsAtoms& atoms = GjsContextPrivate::atoms(context);
if (!gjs_object_require_property(context, self, "constructor",
atoms.prototype(), &prototype)) {
/* This error message will be more informative */
JS_ClearPendingException(context);
gjs_throw(context, "GLib.Error.valueOf() called on something that is not"
" a constructor");
return false;
}
ErrorBase* priv;
if (!for_js_typecheck(context, prototype, &priv, &rec))
return false;
rec.rval().setInt32(priv->domain());
return true;
}
// clang-format off
const struct JSClassOps ErrorBase::class_ops = {
nullptr, // addProperty
nullptr, // deleteProperty
nullptr, // enumerate
nullptr, // newEnumerate
nullptr, // resolve
nullptr, // mayResolve
&ErrorBase::finalize,
};
const struct JSClass ErrorBase::klass = {
"GLib_Error",
JSCLASS_HAS_RESERVED_SLOTS(1) | JSCLASS_BACKGROUND_FINALIZE,
&ErrorBase::class_ops
};
/* We need to shadow all fields of GError, to prevent calling the getter from GBoxed
(which would trash memory accessing the instance private data) */
JSPropertySpec ErrorBase::proto_properties[] = {
JS_PSG("domain", &ErrorBase::get_domain, GJS_MODULE_PROP_FLAGS),
JS_PSG("code", &ErrorBase::get_code, GJS_MODULE_PROP_FLAGS),
JS_PSG("message", &ErrorBase::get_message, GJS_MODULE_PROP_FLAGS),
JS_PS_END
};
JSFunctionSpec ErrorBase::static_methods[] = {
JS_FN("valueOf", &ErrorBase::value_of, 0, GJS_MODULE_PROP_FLAGS),
JS_FS_END
};
// clang-format on
// Overrides GIWrapperPrototype::get_parent_proto().
bool ErrorPrototype::get_parent_proto(JSContext* cx,
JS::MutableHandleObject proto) const {
g_irepository_require(nullptr, "GLib", "2.0", GIRepositoryLoadFlags(0),
nullptr);
GjsAutoStructInfo glib_error_info =
g_irepository_find_by_name(nullptr, "GLib", "Error");
proto.set(gjs_lookup_generic_prototype(cx, glib_error_info));
return !!proto;
}
bool ErrorPrototype::define_class(JSContext* context,
JS::HandleObject in_object,
GIEnumInfo* info) {
JS::RootedObject prototype(context), constructor(context);
if (!ErrorPrototype::create_class(context, in_object, info, G_TYPE_ERROR,
&constructor, &prototype))
return false;
// Define a toString() on the prototype, as it does not exist on the
// prototype of GLib.Error; and create_class() will not define it since we
// supply a parent in get_parent_proto().
const GjsAtoms& atoms = GjsContextPrivate::atoms(context);
return JS_DefineFunctionById(context, prototype, atoms.to_string(),
&ErrorBase::to_string, 0,
GJS_MODULE_PROP_FLAGS) &&
gjs_define_enum_values(context, constructor, info);
}
[[nodiscard]] static GIEnumInfo* find_error_domain_info(GQuark domain) {
GIEnumInfo *info;
/* first an attempt without loading extra libraries */
info = g_irepository_find_by_error_domain(nullptr, domain);
if (info)
return info;
/* load standard stuff */
g_irepository_require(nullptr, "GLib", "2.0", GIRepositoryLoadFlags(0),
nullptr);
g_irepository_require(nullptr, "GObject", "2.0", GIRepositoryLoadFlags(0),
nullptr);
g_irepository_require(nullptr, "Gio", "2.0", GIRepositoryLoadFlags(0),
nullptr);
info = g_irepository_find_by_error_domain(nullptr, domain);
if (info)
return info;
/* last attempt: load GIRepository (for invoke errors, rarely
needed) */
g_irepository_require(nullptr, "GIRepository", "2.0",
GIRepositoryLoadFlags(0), nullptr);
info = g_irepository_find_by_error_domain(nullptr, domain);
return info;
}
/* define properties that JS Error() expose, such as
fileName, lineNumber and stack
*/
GJS_JSAPI_RETURN_CONVENTION
bool gjs_define_error_properties(JSContext* cx, JS::HandleObject obj) {
JS::RootedObject frame(cx);
JS::RootedString stack(cx);
JS::RootedString source(cx);
uint32_t line;
JS::TaggedColumnNumberOneOrigin tagged_column;
if (!JS::CaptureCurrentStack(cx, &frame) ||
!JS::BuildStackString(cx, nullptr, frame, &stack))
return false;
auto ok = JS::SavedFrameResult::Ok;
if (JS::GetSavedFrameSource(cx, nullptr, frame, &source) != ok ||
JS::GetSavedFrameLine(cx, nullptr, frame, &line) != ok ||
JS::GetSavedFrameColumn(cx, nullptr, frame, &tagged_column) != ok) {
gjs_throw(cx, "Error getting saved frame information");
return false;
}
const GjsAtoms& atoms = GjsContextPrivate::atoms(cx);
return JS_DefinePropertyById(cx, obj, atoms.stack(), stack,
JSPROP_ENUMERATE) &&
JS_DefinePropertyById(cx, obj, atoms.file_name(), source,
JSPROP_ENUMERATE) &&
JS_DefinePropertyById(cx, obj, atoms.line_number(), line,
JSPROP_ENUMERATE) &&
JS_DefinePropertyById(cx, obj, atoms.column_number(),
tagged_column.oneOriginValue(),
JSPROP_ENUMERATE);
}
[[nodiscard]] static JSProtoKey proto_key_from_error_enum(int val) {
switch (val) {
case GJS_JS_ERROR_EVAL_ERROR:
return JSProto_EvalError;
case GJS_JS_ERROR_INTERNAL_ERROR:
return JSProto_InternalError;
case GJS_JS_ERROR_RANGE_ERROR:
return JSProto_RangeError;
case GJS_JS_ERROR_REFERENCE_ERROR:
return JSProto_ReferenceError;
case GJS_JS_ERROR_SYNTAX_ERROR:
return JSProto_SyntaxError;
case GJS_JS_ERROR_TYPE_ERROR:
return JSProto_TypeError;
case GJS_JS_ERROR_URI_ERROR:
return JSProto_URIError;
case GJS_JS_ERROR_ERROR:
default:
return JSProto_Error;
}
}
GJS_JSAPI_RETURN_CONVENTION
static JSObject *
gjs_error_from_js_gerror(JSContext *cx,
GError *gerror)
{
JS::RootedValueArray<1> error_args(cx);
if (!gjs_string_from_utf8(cx, gerror->message, error_args[0]))
return nullptr;
JSProtoKey error_kind = proto_key_from_error_enum(gerror->code);
JS::RootedObject error_constructor(cx);
if (!JS_GetClassObject(cx, error_kind, &error_constructor))
return nullptr;
JS::RootedValue v_error_constructor(cx,
JS::ObjectValue(*error_constructor));
JS::RootedObject error(cx);
if (!JS::Construct(cx, v_error_constructor, error_args, &error))
return nullptr;
return error;
}
JSObject* ErrorInstance::object_for_c_ptr(JSContext* context, GError* gerror) {
GIEnumInfo *info;
if (!gerror)
return nullptr;
if (gerror->domain == GJS_JS_ERROR)
return gjs_error_from_js_gerror(context, gerror);
info = find_error_domain_info(gerror->domain);
if (!info) {
/* We don't have error domain metadata */
/* Marshal the error as a plain GError */
GjsAutoBaseInfo glib_boxed =
g_irepository_find_by_name(nullptr, "GLib", "Error");
return BoxedInstance::new_for_c_struct(context, glib_boxed, gerror);
}
gjs_debug_marshal(GJS_DEBUG_GBOXED,
"Wrapping struct %s with JSObject",
g_base_info_get_name((GIBaseInfo *)info));
JS::RootedObject obj(context,
gjs_new_object_with_generic_prototype(context, info));
if (!obj)
return nullptr;
ErrorInstance* priv = ErrorInstance::new_for_js_object(context, obj);
priv->copy_gerror(gerror);
return obj;
}
GError* ErrorBase::to_c_ptr(JSContext* cx, JS::HandleObject obj) {
/* If this is a plain GBoxed (i.e. a GError without metadata),
delegate marshalling.
*/
if (BoxedBase::typecheck(cx, obj, nullptr, G_TYPE_ERROR,
GjsTypecheckNoThrow()))
return BoxedBase::to_c_ptr<GError>(cx, obj);
return GIWrapperBase::to_c_ptr<GError>(cx, obj);
}
bool ErrorBase::transfer_to_gi_argument(JSContext* cx, JS::HandleObject obj,
GIArgument* arg,
GIDirection transfer_direction,
GITransfer transfer_ownership) {
g_assert(transfer_direction != GI_DIRECTION_INOUT &&
"transfer_to_gi_argument() must choose between in or out");
if (!ErrorBase::typecheck(cx, obj)) {
gjs_arg_unset<void*>(arg);
return false;
}
gjs_arg_set(arg, ErrorBase::to_c_ptr(cx, obj));
if (!gjs_arg_get<void*>(arg))
return false;
if ((transfer_direction == GI_DIRECTION_IN &&
transfer_ownership != GI_TRANSFER_NOTHING) ||
(transfer_direction == GI_DIRECTION_OUT &&
transfer_ownership == GI_TRANSFER_EVERYTHING)) {
gjs_arg_set(arg, ErrorInstance::copy_ptr(cx, G_TYPE_ERROR,
gjs_arg_get<void*>(arg)));
if (!gjs_arg_get<void*>(arg))
return false;
}
return true;
}
// Overrides GIWrapperBase::typecheck()
bool ErrorBase::typecheck(JSContext* cx, JS::HandleObject obj) {
if (BoxedBase::typecheck(cx, obj, nullptr, G_TYPE_ERROR,
GjsTypecheckNoThrow()))
return true;
return GIWrapperBase::typecheck(cx, obj, nullptr, G_TYPE_ERROR);
}
bool ErrorBase::typecheck(JSContext* cx, JS::HandleObject obj,
GjsTypecheckNoThrow no_throw) {
if (BoxedBase::typecheck(cx, obj, nullptr, G_TYPE_ERROR, no_throw))
return true;
return GIWrapperBase::typecheck(cx, obj, nullptr, G_TYPE_ERROR, no_throw);
}
GJS_JSAPI_RETURN_CONVENTION
static GError* gerror_from_error_impl(JSContext* cx, JS::HandleObject obj) {
if (ErrorBase::typecheck(cx, obj, GjsTypecheckNoThrow())) {
/* This is already a GError, just copy it */
GError* inner = ErrorBase::to_c_ptr(cx, obj);
if (!inner)
return nullptr;
return g_error_copy(inner);
}
/* Try to make something useful from the error
name and message (in case this is a JS error) */
const GjsAtoms& atoms = GjsContextPrivate::atoms(cx);
JS::RootedValue v_name(cx);
if (!JS_GetPropertyById(cx, obj, atoms.name(), &v_name))
return nullptr;
JS::RootedValue v_message(cx);
if (!JS_GetPropertyById(cx, obj, atoms.message(), &v_message))
return nullptr;
if (!v_name.isString() || !v_message.isString()) {
return g_error_new_literal(
GJS_JS_ERROR, GJS_JS_ERROR_ERROR,
"Object thrown with unexpected name or message property");
}
JS::UniqueChars name = gjs_string_to_utf8(cx, v_name);
if (!name)
return nullptr;
JS::UniqueChars message = gjs_string_to_utf8(cx, v_message);
if (!message)
return nullptr;
GjsAutoTypeClass<GEnumClass> klass(GJS_TYPE_JS_ERROR);
const GEnumValue *value = g_enum_get_value_by_name(klass, name.get());
int code;
if (value)
code = value->value;
else
code = GJS_JS_ERROR_ERROR;
return g_error_new_literal(GJS_JS_ERROR, code, message.get());
}
/*
* gjs_gerror_make_from_thrown_value:
*
* Attempts to convert a JavaScript thrown value (pending on @cx) into a
* #GError. This function is infallible and will always return a #GError with
* some message, even if the exception value couldn't be converted.
*
* Clears the pending exception on @cx.
*
* Returns: (transfer full): a new #GError
*/
GError* gjs_gerror_make_from_thrown_value(JSContext* cx) {
g_assert(JS_IsExceptionPending(cx) &&
"Should be called when an exception is pending");
JS::RootedValue exc(cx);
JS_GetPendingException(cx, &exc);
JS_ClearPendingException(cx); // don't log
if (!exc.isObject()) {
return g_error_new(GJS_JS_ERROR, GJS_JS_ERROR_ERROR,
"Non-exception %s value %s thrown",
JS::InformalValueTypeName(exc),
gjs_debug_value(exc).c_str());
}
JS::RootedObject obj(cx, &exc.toObject());
GError* retval = gerror_from_error_impl(cx, obj);
if (retval)
return retval;
// Make a GError with an InternalError even if it wasn't possible to convert
// the exception into one
gjs_log_exception(cx); // log the inner exception
return g_error_new_literal(GJS_JS_ERROR, GJS_JS_ERROR_INTERNAL_ERROR,
"Failed to convert JS thrown value into GError");
}
/*
* gjs_throw_gerror:
*
* Converts a GError into a JavaScript exception, and frees the GError.
* Differently from gjs_throw(), it will overwrite an existing exception, as it
* is used to report errors from C functions.
*
* Returns: false, for convenience in returning from the calling function.
*/
bool gjs_throw_gerror(JSContext* cx, GjsAutoError const& error) {
// return false even if the GError is null, as presumably something failed
// in the calling code, and the caller expects to throw.
g_return_val_if_fail(error, false);
JS::RootedObject err_obj(cx, ErrorInstance::object_for_c_ptr(cx, error));
if (!err_obj || !gjs_define_error_properties(cx, err_obj))
return false;
JS::RootedValue err(cx, JS::ObjectValue(*err_obj));
JS_SetPendingException(cx, err);
return false;
}
|