quickjs 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -6
- data/ext/quickjsrb/quickjsrb.c +47 -9
- data/ext/quickjsrb/quickjsrb.h +2 -0
- data/lib/quickjs/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 460654c8f6d8174bf3f7025c0ae6e37a0bed766f3a8bdf57da5b9f5fc4ef8e0b
|
4
|
+
data.tar.gz: 100eb2a30022baada73c5d83eb79675c19ba1df439da494278638917c3df16a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1527a557f744d35f9d79965d51c70f82cba82328351e1ec301ea66fd0293a7cd8bbe713766c470648774c6b589382d4e4357d89b01aa788a8c089e29f974f652
|
7
|
+
data.tar.gz: d06c84aac9d3a440e885d769dfceb3849276c3b93c6d43e60788c8bc476416f61fef2898f1f94c90db44a4e0bc7e847c19c23366983555ee22138feeb9889a75
|
data/README.md
CHANGED
@@ -163,13 +163,13 @@ vm.logs.last.raw #=> ['log me', nil]
|
|
163
163
|
|
164
164
|
- `ext/quickjsrb/quickjs`
|
165
165
|
- [MIT License Copyright (c) 2017-2021 by Fabrice Bellard and Charlie Gordon](https://github.com/bellard/quickjs/blob/6e2e68fd0896957f92eb6c242a2e048c1ef3cae0/LICENSE).
|
166
|
-
- `ext/quickjsrb/vendor/polyfill-intl-en.min.js`
|
166
|
+
- `ext/quickjsrb/vendor/polyfill-intl-en.min.js` (bundled and minified)
|
167
167
|
- MIT License Copyright (c) 2023 FormatJS
|
168
|
-
-
|
169
|
-
-
|
170
|
-
-
|
171
|
-
-
|
172
|
-
-
|
168
|
+
- [@formatjs/intl-getcanonicallocales](https://github.com/formatjs/formatjs/blob/main/packages/intl-getcanonicallocales/LICENSE.md)
|
169
|
+
- [@formatjs/intl-locale](https://github.com/formatjs/formatjs/blob/main/packages/intl-locale/LICENSE.md)
|
170
|
+
- [@formatjs/intl-pluralrules](https://github.com/formatjs/formatjs/blob/main/packages/intl-pluralrules/LICENSE.md)
|
171
|
+
- [@formatjs/intl-numberformat](https://github.com/formatjs/formatjs/blob/main/packages/intl-numberformat/LICENSE.md)
|
172
|
+
- [@formatjs/intl-datetimeformat](https://github.com/formatjs/formatjs/blob/main/packages/intl-datetimeformat/LICENSE.md)
|
173
173
|
- MIT License Copyright (c) 2025 Michael Mclaughlin
|
174
174
|
- [decimal.js](https://www.npmjs.com/package/decimal.js)
|
175
175
|
|
data/ext/quickjsrb/quickjsrb.c
CHANGED
@@ -4,11 +4,11 @@ JSValue j_error_from_ruby_error(JSContext *ctx, VALUE r_error)
|
|
4
4
|
{
|
5
5
|
JSValue j_error = JS_NewError(ctx); // may wanna have custom error class to determine in JS' end
|
6
6
|
|
7
|
-
VALUE r_object_id = rb_funcall(r_error, rb_intern("object_id"), 0
|
7
|
+
VALUE r_object_id = rb_funcall(r_error, rb_intern("object_id"), 0);
|
8
8
|
int objectId = NUM2INT(r_object_id);
|
9
9
|
JS_SetPropertyStr(ctx, j_error, "rb_object_id", JS_NewInt32(ctx, objectId));
|
10
10
|
|
11
|
-
VALUE r_exception_message = rb_funcall(r_error, rb_intern("message"), 0
|
11
|
+
VALUE r_exception_message = rb_funcall(r_error, rb_intern("message"), 0);
|
12
12
|
const char *errorMessage = StringValueCStr(r_exception_message);
|
13
13
|
JS_SetPropertyStr(ctx, j_error, "message", JS_NewString(ctx, errorMessage));
|
14
14
|
|
@@ -24,7 +24,7 @@ JSValue to_js_value(JSContext *ctx, VALUE r_value)
|
|
24
24
|
case T_FIXNUM:
|
25
25
|
case T_FLOAT:
|
26
26
|
{
|
27
|
-
VALUE r_str = rb_funcall(r_value, rb_intern("to_s"), 0
|
27
|
+
VALUE r_str = rb_funcall(r_value, rb_intern("to_s"), 0);
|
28
28
|
char *str = StringValueCStr(r_str);
|
29
29
|
JSValue j_global = JS_GetGlobalObject(ctx);
|
30
30
|
JSValue j_numberClass = JS_GetPropertyStr(ctx, j_global, "Number");
|
@@ -44,7 +44,7 @@ JSValue to_js_value(JSContext *ctx, VALUE r_value)
|
|
44
44
|
}
|
45
45
|
case T_SYMBOL:
|
46
46
|
{
|
47
|
-
VALUE r_str = rb_funcall(r_value, rb_intern("to_s"), 0
|
47
|
+
VALUE r_str = rb_funcall(r_value, rb_intern("to_s"), 0);
|
48
48
|
char *str = StringValueCStr(r_str);
|
49
49
|
|
50
50
|
return JS_NewString(ctx, str);
|
@@ -56,7 +56,7 @@ JSValue to_js_value(JSContext *ctx, VALUE r_value)
|
|
56
56
|
case T_HASH:
|
57
57
|
case T_ARRAY:
|
58
58
|
{
|
59
|
-
VALUE r_json_str = rb_funcall(r_value, rb_intern("to_json"), 0
|
59
|
+
VALUE r_json_str = rb_funcall(r_value, rb_intern("to_json"), 0);
|
60
60
|
char *str = StringValueCStr(r_json_str);
|
61
61
|
JSValue j_parsed = JS_ParseJSON(ctx, str, strlen(str), "<quickjsrb.c>");
|
62
62
|
|
@@ -71,7 +71,7 @@ JSValue to_js_value(JSContext *ctx, VALUE r_value)
|
|
71
71
|
{
|
72
72
|
return j_error_from_ruby_error(ctx, r_value);
|
73
73
|
}
|
74
|
-
VALUE r_inspect_str = rb_funcall(r_value, rb_intern("inspect"), 0
|
74
|
+
VALUE r_inspect_str = rb_funcall(r_value, rb_intern("inspect"), 0);
|
75
75
|
char *str = StringValueCStr(r_inspect_str);
|
76
76
|
|
77
77
|
return JS_NewString(ctx, str);
|
@@ -284,7 +284,7 @@ VALUE to_rb_value(JSContext *ctx, JSValue j_val)
|
|
284
284
|
JS_FreeValue(ctx, j_strigified);
|
285
285
|
JS_FreeCString(ctx, msg);
|
286
286
|
|
287
|
-
return rb_funcall(r_str, rb_intern("to_i"), 0
|
287
|
+
return rb_funcall(r_str, rb_intern("to_i"), 0);
|
288
288
|
}
|
289
289
|
case JS_TAG_BIG_FLOAT:
|
290
290
|
case JS_TAG_BIG_DECIMAL:
|
@@ -381,6 +381,37 @@ static JSValue js_quickjsrb_call_global(JSContext *ctx, JSValueConst _this, int
|
|
381
381
|
}
|
382
382
|
}
|
383
383
|
|
384
|
+
static JSValue js_delay_and_eval_job(JSContext *ctx, int argc, JSValueConst *argv)
|
385
|
+
{
|
386
|
+
VALUE rb_delay_msec = to_rb_value(ctx, argv[1]);
|
387
|
+
VALUE rb_delay_sec = rb_funcall(rb_delay_msec, rb_intern("/"), 1, rb_float_new(1000));
|
388
|
+
rb_thread_wait_for(rb_time_interval(rb_delay_sec));
|
389
|
+
JS_Call(ctx, argv[0], JS_UNDEFINED, 0, NULL);
|
390
|
+
|
391
|
+
return JS_UNDEFINED;
|
392
|
+
}
|
393
|
+
|
394
|
+
static JSValue js_quickjsrb_set_timeout(JSContext *ctx, JSValueConst _this, int argc, JSValueConst *argv)
|
395
|
+
{
|
396
|
+
JSValueConst func;
|
397
|
+
int64_t delay;
|
398
|
+
|
399
|
+
func = argv[0];
|
400
|
+
if (!JS_IsFunction(ctx, func))
|
401
|
+
return JS_ThrowTypeError(ctx, "not a function");
|
402
|
+
if (JS_ToInt64(ctx, &delay, argv[1])) // TODO: should be lower than global timeout
|
403
|
+
return JS_EXCEPTION;
|
404
|
+
|
405
|
+
JSValueConst args[2];
|
406
|
+
args[0] = func;
|
407
|
+
args[1] = argv[1]; // delay
|
408
|
+
// TODO: implement timer manager and poll with quickjs' queue
|
409
|
+
// Currently, queueing multiple js_delay_and_eval_job is not parallelized
|
410
|
+
JS_EnqueueJob(ctx, js_delay_and_eval_job, 2, args);
|
411
|
+
|
412
|
+
return JS_UNDEFINED;
|
413
|
+
}
|
414
|
+
|
384
415
|
static JSValue js_quickjsrb_log(JSContext *ctx, JSValueConst _this, int argc, JSValueConst *argv, const char *severity)
|
385
416
|
{
|
386
417
|
VMData *data = JS_GetContextOpaque(ctx);
|
@@ -492,6 +523,8 @@ static VALUE vm_m_initialize(int argc, VALUE *argv, VALUE r_self)
|
|
492
523
|
JS_SetModuleLoaderFunc(runtime, NULL, js_module_loader, NULL);
|
493
524
|
js_std_init_handlers(runtime);
|
494
525
|
|
526
|
+
JSValue j_global = JS_GetGlobalObject(data->context);
|
527
|
+
|
495
528
|
if (RTEST(rb_funcall(r_features, rb_intern("include?"), 1, QUICKJSRB_SYM(featureStdId))))
|
496
529
|
{
|
497
530
|
js_init_module_std(data->context, "std");
|
@@ -524,6 +557,12 @@ static VALUE vm_m_initialize(int argc, VALUE *argv, VALUE r_self)
|
|
524
557
|
free(enableTimeout);
|
525
558
|
JS_FreeValue(data->context, j_timeoutEval);
|
526
559
|
}
|
560
|
+
else if (RTEST(rb_funcall(r_features, rb_intern("include?"), 1, QUICKJSRB_SYM(featureOsTimeoutBetaId))))
|
561
|
+
{
|
562
|
+
JS_SetPropertyStr(
|
563
|
+
data->context, j_global, "setTimeout",
|
564
|
+
JS_NewCFunction(data->context, js_quickjsrb_set_timeout, "setTimeout", 2));
|
565
|
+
}
|
527
566
|
|
528
567
|
if (RTEST(rb_funcall(r_features, rb_intern("include?"), 1, QUICKJSRB_SYM(featurePolyfillIntlId))))
|
529
568
|
{
|
@@ -553,7 +592,6 @@ static VALUE vm_m_initialize(int argc, VALUE *argv, VALUE r_self)
|
|
553
592
|
data->context, j_console, "error",
|
554
593
|
JS_NewCFunction(data->context, js_console_error, "error", 1));
|
555
594
|
|
556
|
-
JSValue j_global = JS_GetGlobalObject(data->context);
|
557
595
|
JS_SetPropertyStr(data->context, j_global, "console", j_console);
|
558
596
|
JS_FreeValue(data->context, j_global);
|
559
597
|
|
@@ -623,7 +661,7 @@ static VALUE vm_m_defineGlobalFunction(int argc, VALUE *argv, VALUE r_self)
|
|
623
661
|
JS_FreeValue(data->context, ruby_data[0]);
|
624
662
|
JS_FreeValue(data->context, ruby_data[1]);
|
625
663
|
|
626
|
-
return rb_funcall(r_name, rb_intern("to_sym"), 0
|
664
|
+
return rb_funcall(r_name, rb_intern("to_sym"), 0);
|
627
665
|
}
|
628
666
|
|
629
667
|
static VALUE vm_m_import(int argc, VALUE *argv, VALUE r_self)
|
data/ext/quickjsrb/quickjsrb.h
CHANGED
@@ -18,6 +18,7 @@ extern const uint8_t qjsc_polyfill_intl_en_min;
|
|
18
18
|
const char *featureStdId = "feature_std";
|
19
19
|
const char *featureOsId = "feature_os";
|
20
20
|
const char *featureOsTimeoutId = "feature_os_timeout";
|
21
|
+
const char *featureOsTimeoutBetaId = "feature_os_timeout_beta";
|
21
22
|
const char *featurePolyfillIntlId = "feature_polyfill_intl";
|
22
23
|
|
23
24
|
const char *undefinedId = "undefined";
|
@@ -137,6 +138,7 @@ static void r_define_constants(VALUE r_parent_class)
|
|
137
138
|
rb_define_const(r_parent_class, "MODULE_STD", QUICKJSRB_SYM(featureStdId));
|
138
139
|
rb_define_const(r_parent_class, "MODULE_OS", QUICKJSRB_SYM(featureOsId));
|
139
140
|
rb_define_const(r_parent_class, "FEATURES_TIMEOUT", QUICKJSRB_SYM(featureOsTimeoutId));
|
141
|
+
rb_define_const(r_parent_class, "FEATURES_TIMEOUT_BETA", QUICKJSRB_SYM(featureOsTimeoutBetaId));
|
140
142
|
rb_define_const(r_parent_class, "POLYFILL_INTL", QUICKJSRB_SYM(featurePolyfillIntlId));
|
141
143
|
|
142
144
|
VALUE rb_cQuickjsValue = rb_define_class_under(r_parent_class, "Value", rb_cObject);
|
data/lib/quickjs/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quickjs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- hmsk
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -104,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
104
|
- !ruby/object:Gem::Version
|
105
105
|
version: '0'
|
106
106
|
requirements: []
|
107
|
-
rubygems_version: 3.
|
107
|
+
rubygems_version: 3.5.9
|
108
108
|
signing_key:
|
109
109
|
specification_version: 4
|
110
110
|
summary: Run binding of QuickJS
|