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 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
//! JS Class related functionality.
mod refs;
use crate::{
persistent::Outlive, qjs, value::Object, ClassId, Ctx, Error, FromJs, Function, IntoJs, Result,
Type, Value,
};
use std::{ffi::CString, marker::PhantomData, mem, ops::Deref, ptr};
pub use refs::{HasRefs, RefsMarker};
/// The ES6 class definition trait
///
/// This trait helps export rust data types to QuickJS so JS code can interoperate with it as with usual ES6 classes.
/// Usually implementing this trait only is not enough to introduce class.
/// At least [`IntoJs`] trait should be implemented for transfering class instances to JS side.
/// Get be able call methods or get access to class properties the [`FromJs`] trait should be implemented for class reference and for mutable reference when needed.
///
/// NOTE: Usually no need implements this trait manually. Instead you can use [`class_def`](crate::class_def) macro or [`bind`](attr.bind.html) attribute to export classes to JS in easy way.
///
/// ```
/// # use rquickjs::{ClassId, class::{ClassDef, RefsMarker}, FromJs, IntoJs, Ctx, Object, Result, Value};
/// #[derive(Clone)]
/// struct MyClass;
///
/// impl ClassDef for MyClass {
/// const CLASS_NAME: &'static str = "MyClass";
///
/// fn class_id() -> &'static ClassId {
/// static CLASS_ID: ClassId = ClassId::new();
/// &CLASS_ID
/// }
///
/// // With prototype
/// const HAS_PROTO: bool = true;
/// fn init_proto<'js>(ctx: Ctx<'js>, proto: &Object<'js>) -> Result<()> {
/// Ok(())
/// }
///
/// // With statics
/// const HAS_STATIC: bool = true;
/// fn init_static<'js>(ctx: Ctx<'js>, ctor: &Object<'js>) -> Result<()> {
/// Ok(())
/// }
///
/// // With internal references
/// const HAS_REFS: bool = true;
/// fn mark_refs(&self, marker: &RefsMarker) {
/// // marker.mark(&self.some_persistent_value);
/// }
/// }
///
/// impl<'js> IntoJs<'js> for MyClass {
/// fn into_js(self, ctx: Ctx<'js>) -> Result<Value<'js>> {
/// self.into_js_obj(ctx)
/// }
/// }
///
/// impl<'js> FromJs<'js> for &'js MyClass {
/// fn from_js(ctx: Ctx<'js>, value: Value<'js>) -> Result<Self> {
/// MyClass::from_js_ref(ctx, value)
/// }
/// }
///
/// impl<'js> FromJs<'js> for MyClass {
/// fn from_js(ctx: Ctx<'js>, value: Value<'js>) -> Result<Self> {
/// MyClass::from_js_obj(ctx, value)
/// }
/// }
/// ```
#[cfg_attr(feature = "doc-cfg", doc(cfg(feature = "classes")))]
pub trait ClassDef {
/// The name of a class
const CLASS_NAME: &'static str;
/// The reference to class identifier
///
/// # Safety
/// This method should return reference to static class id which should be initialized to zero.
fn class_id() -> &'static ClassId;
/// The class has prototype
const HAS_PROTO: bool = false;
/// The prototype initializer method
fn init_proto<'js>(_ctx: Ctx<'js>, _proto: &Object<'js>) -> Result<()> {
Ok(())
}
/// The class has static data
const HAS_STATIC: bool = false;
/// The static initializer method
fn init_static<'js>(_ctx: Ctx<'js>, _static: &Object<'js>) -> Result<()> {
Ok(())
}
/// The class has internal references to JS values
///
/// Needed for correct garbage collection
const HAS_REFS: bool = false;
/// Mark internal references to JS values
///
/// Should be implemented to work with garbage collector
fn mark_refs(&self, _marker: &RefsMarker) {}
/// Convert an instance of class into JS object
///
/// This method helps implement [`IntoJs`] trait for classes
fn into_js_obj<'js>(self, ctx: Ctx<'js>) -> Result<Value<'js>>
where
Self: Sized,
{
Class::<Self>::instance(ctx, self).map(|Class(Object(val), _)| val)
}
/// Get reference from JS object
///
/// This method helps implement [`FromJs`] trait for classes
fn from_js_ref<'js>(ctx: Ctx<'js>, value: Value<'js>) -> Result<&'js Self>
where
Self: Sized,
{
let value = Object::from_js(ctx, value)?;
Class::<Self>::try_ref(ctx, &value)
}
/// Get an instance of class from JS object
fn from_js_obj<'js>(ctx: Ctx<'js>, value: Value<'js>) -> Result<Self>
where
Self: Clone + Sized,
{
let value = Object::from_js(ctx, value)?;
let instance = Class::<Self>::try_ref(ctx, &value)?;
Ok(instance.clone())
}
}
/// The class object interface
///
// FIXME: Maybe it should be private.
#[cfg_attr(feature = "doc-cfg", doc(cfg(feature = "classes")))]
pub struct Class<'js, C>(pub(crate) Object<'js>, PhantomData<C>);
impl<'js, 't, C> Outlive<'t> for Class<'js, C> {
type Target = Class<'t, C>;
}
impl<'js, C> Deref for Class<'js, C> {
type Target = Object<'js>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl<'js, C> AsRef<Object<'js>> for Class<'js, C> {
fn as_ref(&self) -> &Object<'js> {
&self.0
}
}
impl<'js, C> AsRef<Value<'js>> for Class<'js, C> {
fn as_ref(&self) -> &Value<'js> {
&(self.0).0
}
}
impl<'js, C> AsRef<C> for Class<'js, C>
where
C: ClassDef,
{
fn as_ref(&self) -> &C {
let obj = &self.0;
Class::<C>::try_ref(obj.0.ctx, obj).unwrap()
}
}
impl<'js, C> Class<'js, C>
where
C: ClassDef,
{
/// Get an integer class identifier
#[inline]
pub(crate) fn id() -> qjs::JSClassID {
C::class_id().get()
}
/// Wrap constructor of class
#[inline]
pub fn constructor<F>(func: F) -> Constructor<C, F> {
Constructor(func, PhantomData)
}
/// Initialize static data
pub fn static_init(ctx: Ctx<'js>, func: &Function<'js>) -> Result<()> {
if C::HAS_STATIC {
C::init_static(ctx, func.as_object())?;
}
Ok(())
}
/// Instantiate the object of class
pub fn instance(ctx: Ctx<'js>, value: C) -> Result<Class<'js, C>> {
let val =
unsafe { ctx.handle_exception(qjs::JS_NewObjectClass(ctx.as_ptr(), Self::id() as _)) }?;
let ptr = Box::into_raw(Box::new(value));
unsafe { qjs::JS_SetOpaque(val, ptr as _) };
Ok(Self(
unsafe { Object::from_js_value(ctx, val) },
PhantomData,
))
}
/// Instantiate the object of class with given prototype
pub fn instance_proto(ctx: Ctx<'js>, value: C, proto: Object<'js>) -> Result<Class<'js, C>> {
let val = unsafe {
ctx.handle_exception(qjs::JS_NewObjectProtoClass(
ctx.as_ptr(),
proto.0.as_js_value(),
Self::id(),
))
}?;
let ptr = Box::into_raw(Box::new(value));
unsafe { qjs::JS_SetOpaque(val, ptr as _) };
Ok(Self(
unsafe { Object::from_js_value(ctx, val) },
PhantomData,
))
}
/// Get reference from object
pub fn try_ref<'r>(ctx: Ctx<'js>, value: &Object<'js>) -> Result<&'r C> {
Ok(unsafe { &*Self::try_ptr(ctx.as_ptr(), value.0.as_js_value())? })
}
/// Get instance pointer from object
unsafe fn try_ptr(ctx: *mut qjs::JSContext, value: qjs::JSValue) -> Result<*mut C> {
let ptr = qjs::JS_GetOpaque2(ctx, value, Self::id()) as *mut C;
if ptr.is_null() {
return Err(Error::FromJs {
from: "object",
to: C::CLASS_NAME,
message: None,
});
}
Ok(ptr)
}
/// Register the class
pub fn register(ctx: Ctx<'js>) -> Result<()> {
let rt = unsafe { qjs::JS_GetRuntime(ctx.as_ptr()) };
let class_id = Self::id();
let class_name = CString::new(C::CLASS_NAME).expect("class name has an internal null byte");
if 0 == unsafe { qjs::JS_IsRegisteredClass(rt, class_id) } {
let class_def = qjs::JSClassDef {
class_name: class_name.as_ptr(),
finalizer: Some(Self::finalizer),
gc_mark: if C::HAS_REFS {
Some(Self::gc_mark)
} else {
None
},
call: None,
exotic: ptr::null_mut(),
};
if 0 != unsafe { qjs::JS_NewClass(rt, class_id, &class_def) } {
return Err(Error::Unknown);
}
}
// Even if the class is registered we still need to set the prototype as this can be a new
// context.
if C::HAS_PROTO {
let proto = Object::new(ctx)?;
C::init_proto(ctx, &proto)?;
unsafe { qjs::JS_SetClassProto(ctx.as_ptr(), class_id, proto.0.into_js_value()) }
}
Ok(())
}
/// Register the class using raw context
///
/// # Safety
/// This function must only be called from `js_module_init` function or should be called right after context initialization.
/// From Rust code you should use [Class::register] instead.
pub unsafe fn register_raw(ctx: *mut qjs::JSContext) {
Self::register(Ctx::from_ptr(ctx)).unwrap()
}
/// Get the own prototype object of a class
pub fn prototype(ctx: Ctx<'js>) -> Result<Object<'js>> {
Ok(Object(unsafe {
let class_id = Self::id();
let proto = qjs::JS_GetClassProto(ctx.as_ptr(), class_id);
let proto = Value::from_js_value(ctx, proto);
let type_ = proto.type_of();
if type_ == Type::Object {
proto
} else {
return Err(Error::new_from_js_message(
type_.as_str(),
"prototype",
"Tried to get the prototype of class without prototype",
));
}
}))
}
/// Get class from value
pub fn from_object(value: Object<'js>) -> Result<Self> {
if value.instance_of::<C>() {
Ok(Self(value, PhantomData))
} else {
Err(Error::new_from_js("object", C::CLASS_NAME))
}
}
/// Get reference to class definition
#[inline]
pub fn as_class_def(&self) -> &C {
// This should always succeed
Self::try_ref(self.ctx, &self.0).unwrap()
}
/// Get reference to object
#[inline]
pub fn as_object(&self) -> &Object<'js> {
&self.0
}
/// Convert to object
#[inline]
pub fn into_object(self) -> Object<'js> {
self.0
}
/// Convert to value
#[inline]
pub fn into_value(self) -> Value<'js> {
self.into_object().0
}
unsafe extern "C" fn gc_mark(
rt: *mut qjs::JSRuntime,
val: qjs::JSValue,
mark_func: qjs::JS_MarkFunc,
) {
let ptr = qjs::JS_GetOpaque(val, Self::id()) as *mut C;
debug_assert!(!ptr.is_null());
let inst = &mut *ptr;
let marker = RefsMarker { rt, mark_func };
inst.mark_refs(&marker);
}
unsafe extern "C" fn finalizer(rt: *mut qjs::JSRuntime, val: qjs::JSValue) {
let ptr = qjs::JS_GetOpaque(val, Self::id()) as *mut C;
debug_assert!(!ptr.is_null());
let inst = Box::from_raw(ptr);
qjs::JS_FreeValueRT(rt, val);
mem::drop(inst);
}
}
impl<'js> Object<'js> {
/// Check the object for instance of
#[cfg_attr(feature = "doc-cfg", doc(cfg(feature = "classes")))]
pub fn instance_of<C: ClassDef>(&self) -> bool {
let ptr =
unsafe { qjs::JS_GetOpaque2(self.0.ctx.as_ptr(), self.0.value, Class::<C>::id()) };
!ptr.is_null()
}
/// Convert object into instance of class
#[cfg_attr(feature = "doc-cfg", doc(cfg(feature = "classes")))]
pub fn into_instance<C: ClassDef>(self) -> Option<Class<'js, C>> {
if self.instance_of::<C>() {
Some(Class(self, PhantomData))
} else {
None
}
}
}
impl<'js, C> IntoJs<'js> for Class<'js, C>
where
C: ClassDef,
{
fn into_js(self, ctx: Ctx<'js>) -> Result<Value<'js>> {
self.0.into_js(ctx)
}
}
impl<'js, C> FromJs<'js> for Class<'js, C>
where
C: ClassDef,
{
fn from_js(ctx: Ctx<'js>, value: Value<'js>) -> Result<Self> {
let value = Object::from_js(ctx, value)?;
Class::<C>::from_object(value)
}
}
/// The wrapper for constructor function
#[cfg_attr(feature = "doc-cfg", doc(cfg(feature = "classes")))]
#[repr(transparent)]
pub struct Constructor<C, F>(pub(crate) F, PhantomData<C>);
impl<C, F> AsRef<F> for Constructor<C, F> {
fn as_ref(&self) -> &F {
&self.0
}
}
impl<C, F> Deref for Constructor<C, F> {
type Target = F;
fn deref(&self) -> &Self::Target {
&self.0
}
}
/// The prototype setting wrapper
///
/// This wrapper helps instantiate a class with desired prototype
/// which is quite useful with constructors because allows class to be inheritable.
#[cfg_attr(feature = "doc-cfg", doc(cfg(feature = "classes")))]
pub struct WithProto<'js, C>(pub C, pub Object<'js>);
impl<'js, C> IntoJs<'js> for WithProto<'js, C>
where
C: ClassDef + IntoJs<'js>,
{
fn into_js(self, ctx: Ctx<'js>) -> Result<Value<'js>> {
Class::<C>::instance_proto(ctx, self.0, self.1).map(|Class(Object(val), _)| val)
}
}
/// The macro to simplify class definition.
///
/// ```
/// # use rquickjs::{class_def, function::{Method, Func}};
/// #
/// struct TestClass;
///
/// impl TestClass {
/// fn method(&self) {}
/// fn static_func() {}
/// }
///
/// class_def! {
/// TestClass
/// // optional prototype initializer
/// (proto) {
/// proto.set("method", Func::from(Method(TestClass::method)))?;
/// }
/// // optional static initializer
/// @(ctor) {
/// ctor.set("static_func", Func::from(TestClass::static_func))?;
/// }
/// // optional internal refs marker (for gc)
/// ~(_self, _marker) {
/// // mark internal refs if exists
/// }
/// }
/// ```
#[cfg_attr(feature = "doc-cfg", doc(cfg(feature = "classes")))]
#[macro_export]
macro_rules! class_def {
($name:ident $($rest:tt)*) => {
$crate::class_def!{@decl $name
$crate::class_def!{@parse $($rest)*}}
};
(@parse ($proto:ident) { $($body:tt)* } $($rest:tt)*) => {
$crate::class_def!{@proto _ctx $proto $($body)*}
$crate::class_def!{@parse $($rest)*}
};
(@parse ($ctx:ident, $proto:ident) { $($body:tt)* } $($rest:tt)*) => {
$crate::class_def!{@proto $ctx $proto $($body)*}
$crate::class_def!{@parse $($rest)*}
};
(@parse @($ctor:ident) { $($body:tt)* } $($rest:tt)*) => {
$crate::class_def!{@ctor _ctx $ctor $($body)*}
$crate::class_def!{@parse $($rest)*}
};
(@parse @($ctx:ident, $ctor:ident) { $($body:tt)* } $($rest:tt)*) => {
$crate::class_def!{@ctor $ctx $ctor $($body)*}
$crate::class_def!{@parse $($rest)*}
};
(@parse ~($self:ident, $marker:ident) { $($body:tt)* } $($rest:tt)*) => {
$crate::class_def!{@mark $self $marker $($body)*}
$crate::class_def!{@parse $($rest)*}
};
(@parse ~ $($rest:tt)*) => {
$crate::class_def!{@mark this marker $crate::class::HasRefs::mark_refs(this, marker);}
$crate::class_def!{@parse $($rest)*}
};
(@parse) => {};
(@proto $ctx:ident $proto:ident $($body:tt)*) => {
const HAS_PROTO: bool = true;
fn init_proto<'js>($ctx: $crate::Ctx<'js>, $proto: &$crate::Object<'js>) -> $crate::Result<()> {
$($body)*
Ok(())
}
};
(@ctor $ctx:ident $ctor:ident $($body:tt)*) => {
const HAS_STATIC: bool = true;
fn init_static<'js>($ctx: $crate::Ctx<'js>, $ctor: &$crate::Object<'js>) -> $crate::Result<()> {
$($body)*
Ok(())
}
};
(@mark $self:ident $marker:ident $($body:tt)*) => {
const HAS_REFS: bool = true;
fn mark_refs(&self, $marker: &$crate::class::RefsMarker) {
let $self = self;
$($body)*
}
};
(@decl $name:ident $($body:tt)*) => {
impl $crate::class::ClassDef for $name {
const CLASS_NAME: &'static str = stringify!($name);
fn class_id() -> &'static $crate::ClassId {
static CLASS_ID: $crate::ClassId = $crate::ClassId::new();
&CLASS_ID
}
$($body)*
}
impl<'js> $crate::IntoJs<'js> for $name {
fn into_js(self, ctx: $crate::Ctx<'js>) -> $crate::Result<$crate::Value<'js>> {
<$name as $crate::class::ClassDef>::into_js_obj(self, ctx)
}
}
impl<'js> $crate::FromJs<'js> for &'js $name {
fn from_js(ctx: $crate::Ctx<'js>, value: $crate::Value<'js>) -> $crate::Result<Self> {
<$name as $crate::class::ClassDef>::from_js_ref(ctx, value)
}
}
};
}
#[cfg(test)]
mod test {
use crate::*;
use approx::assert_abs_diff_eq as assert_approx_eq;
use function::{Func, Method};
#[test]
fn class_basics() {
struct Foo(pub StdString);
class_def!(Foo);
struct Bar(pub i32);
class_def!(Bar);
test_with(|ctx| {
let global = ctx.globals();
Class::<Foo>::register(ctx).unwrap();
Class::<Bar>::register(ctx).unwrap();
global.set("foo", Foo("I'm foo".into())).unwrap();
global.set("bar", Bar(14)).unwrap();
let foo: &Foo = global.get("foo").unwrap();
assert_eq!(foo.0, "I'm foo");
let bar: &Bar = global.get("bar").unwrap();
assert_eq!(bar.0, 14);
if let Err(Error::FromJs { from, to, .. }) = global.get::<_, &Bar>("foo") {
assert_eq!(from, "object");
assert_eq!(to, "Bar");
} else {
panic!("An error was expected");
}
if let Err(Error::FromJs { from, to, .. }) = global.get::<_, &Foo>("bar") {
assert_eq!(from, "object");
assert_eq!(to, "Foo");
} else {
panic!("An error was expected");
}
// which doesn't fail
Class::<Bar>::register(ctx).unwrap();
Class::<Foo>::register(ctx).unwrap();
});
test_with(|ctx| {
// which doesn't fail too
Class::<Foo>::register(ctx).unwrap();
Class::<Bar>::register(ctx).unwrap();
});
}
#[test]
fn point_class() {
struct Point {
pub x: f64,
pub y: f64,
}
impl Point {
pub fn new(x: f64, y: f64) -> Self {
Self { x, y }
}
pub fn zero() -> Self {
Self::new(0.0, 0.0)
}
pub fn get_x(&self) -> f64 {
self.x
}
}
class_def! {
Point (proto) {
proto.set("get_x", Func::from(Method(Point::get_x)))?;
proto.set("get_y", Func::from(Method(|Point { y, .. }: &Point| *y)))?;
} @(ctor) {
ctor.set("zero", Func::from(Point::zero))?;
}
}
test_with(|ctx| {
Class::<Point>::register(ctx).unwrap();
let global = ctx.globals();
let ctor = Function::new(ctx, Class::<Point>::constructor(Point::new)).unwrap();
{
let ctor = ctor.as_object();
let proto: Object = ctor.get("prototype").unwrap();
let ctor_: Function = proto.get("constructor").unwrap();
assert_eq!(&ctor_.into_object(), ctor);
}
global.set("Point", ctor).unwrap();
let res: f64 = ctx
.eval(
r#"
let p = new Point(2, 3);
let z = Point.zero();
(p.get_x() + z.get_x()) * (p.get_y() + z.get_y())
"#,
)
.unwrap();
assert_approx_eq!(res, 6.0);
let res: f64 = ctx
.eval(
r#"
class ColorPoint extends Point {
constructor(x, y, color) {
super(x, y);
this.color = color;
}
get_color() {
return this.color;
}
}
let c = new ColorPoint(3, 5, 2);
c.get_x() * c.get_y() + c.get_color()
"#,
)
.unwrap();
assert_approx_eq!(res, 17.0);
});
}
#[test]
fn no_prototype_with_constructor() {
struct X;
class_def!(X);
test_with(|ctx| {
Class::<X>::register(ctx).unwrap();
ctx.globals()
.set("X", Func::new("X", Class::<X>::constructor(|| X)))
.unwrap();
ctx.eval::<(), _>("X()").unwrap();
ctx.eval::<(), _>("new X()").unwrap();
});
}
#[test]
fn concurrent_register() {
struct X;
class_def!(
X (_proto) {
println!("X::register");
}
);
fn run() {
test_with(|ctx| {
Class::<X>::register(ctx).unwrap();
let global = ctx.globals();
global
.set("X", Func::from(Class::<X>::constructor(|| X)))
.unwrap();
});
}
let h1 = std::thread::spawn(run);
let h2 = std::thread::spawn(run);
let h3 = std::thread::spawn(run);
let h4 = std::thread::spawn(run);
let h5 = std::thread::spawn(run);
h1.join().unwrap();
h2.join().unwrap();
h3.join().unwrap();
h4.join().unwrap();
h5.join().unwrap();
}
mod internal_refs {
use crate::class::{HasRefs, RefsMarker};
use super::*;
use std::{cell::RefCell, collections::HashSet};
struct A {
name: StdString,
refs: RefCell<HashSet<Persistent<Class<'static, A>>>>,
}
impl HasRefs for A {
fn mark_refs(&self, marker: &RefsMarker) {
println!("A::mark {}", self.name);
self.refs.borrow_mut().mark_refs(marker);
}
}
impl Drop for A {
fn drop(&mut self) {
println!("A::drop {}", self.name);
}
}
impl A {
fn new(name: StdString) -> Self {
println!("A::new {name}");
Self {
name,
refs: RefCell::new(HashSet::new()),
}
}
}
impl<'js> Class<'js, A> {
pub fn add(self, val: Persistent<Class<'static, A>>) {
self.as_class_def().refs.borrow_mut().insert(val);
}
pub fn rm(self, val: Persistent<Class<'static, A>>) {
self.as_class_def().refs.borrow_mut().remove(&val);
}
}
class_def!(
A~ (proto) {
println!("A::register");
proto.set("add", Func::from(Method(Class::<A>::add)))?;
proto.set("rm", Func::from(Method(Class::<A>::rm)))?;
}
);
#[test]
fn single_ref() {
test_with(|ctx| {
Class::<A>::register(ctx).unwrap();
let global = ctx.globals();
global
.set("A", Func::from(Class::<A>::constructor(A::new)))
.unwrap();
// a -> b
let _: () = ctx
.eval(
r#"
let a = new A("a");
let b = new A("b");
//a.add(b);
b.add(a);
"#,
)
.unwrap();
});
}
#[test]
fn cross_refs() {
test_with(|ctx| {
Class::<A>::register(ctx).unwrap();
let global = ctx.globals();
global
.set("A", Func::from(Class::<A>::constructor(A::new)))
.unwrap();
// a -> b
// b -> a
let _: () = ctx
.eval(
r#"
let a = new A("a");
let b = new A("b");
a.add(b);
b.add(a);
"#,
)
.unwrap();
});
}
#[test]
fn ref_loops() {
test_with(|ctx| {
Class::<A>::register(ctx).unwrap();
let global = ctx.globals();
global
.set("A", Func::from(Class::<A>::constructor(A::new)))
.unwrap();
// a -> b
// b -> c
// c -> a
let _: () = ctx
.eval(
r#"
let a = new A("a");
let b = new A("b");
let c = new A("c");
a.add(b);
b.add(c);
c.add(a);
"#,
)
.unwrap();
});
}
#[test]
fn managed_rm() {
test_with(|ctx| {
Class::<A>::register(ctx).unwrap();
let global = ctx.globals();
global
.set("A", Func::from(Class::<A>::constructor(A::new)))
.unwrap();
let _: () = ctx
.eval(
r#"
let a = new A("a");
let b = new A("b");
a.add(b);
b.add(a);
a.rm(b);
b.rm(a);
"#,
)
.unwrap();
});
}
}
}