Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

functor_invoke_thunk should return errors using Value::error_string #4

Open
4silvertooth opened this issue Sep 7, 2024 · 2 comments

Comments

@4silvertooth
Copy link

4silvertooth commented Sep 7, 2024

Although I know it's very much WIP, do notice that method_thunk shouldn't return 0

The body should be similar to functor_invoke_thunk

unsafe extern "C" fn functor_invoke_thunk(

*p_value must be either result or Value::error_string

member_function thunk here always returns TRUE
https://gitlab.com/sciter-engine/sciter-js-sdk/-/blob/main/include/sciter-om-def.h?ref_type=heads#L227

@vsrs
Copy link
Owner

vsrs commented Sep 7, 2024

@4silvertooth,

*p_value must be either result or Value::error_string

Not necessary. You can place your own error in p_value (Value::error_string as you correctly pointed out), but if you just return 0, the engine will generate the TypeError error on its own.

Here is the relevant sciter code (if you have a license, you can check engine\xdomjs\xasset.cpp,25 asset_method_magic_bound function):

      if (!md.func(pass, nargs, args.cbegin(), &rv))
        //throw qjs::om::type_error(string::format("method %s::%s",symbol_name_a(psp->name).c_str(), symbol_name_a(md.name).c_str()));
        return JS_ThrowTypeError(ctx, string::format("method %s::%s", hruntime::current().symbol_name_a(psp->name).c_str(), hruntime::current().symbol_name_a(md.name).c_str()));
      return conv<tool::value>::wrap(ctx, rv);

So returning 0 is a convinient way to report a method call error without details.

Anyway, thank you for your attention :) In the final code, I'll definitely construct the Value::error string first to provide a better error message.

@vsrs
Copy link
Owner

vsrs commented Sep 7, 2024

btw, just realized that functor_invoke_thunk

unsafe extern "C" fn functor_invoke_thunk(
tag: *mut ::std::os::raw::c_void,
argc: UINT,
argv: *const VALUE,
retval: *mut VALUE,
) {
let state = &mut *(tag as *mut FunctorState);
let args = args_from_raw_parts(argv, argc);
if let Some(res) = state.functor.invoke(args) {
if !retval.is_null() {
*retval = res.take();
}
}
}

may report error via Value::error_string if state.functor.invoke(args) call fails. Thanks.

@vsrs vsrs changed the title method_thunk shouldn't return 0 functor_invoke_thunk should return errors using Value::error_string Sep 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants