forked from phper-framework/phper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.rs
1112 lines (992 loc) · 35 KB
/
classes.rs
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
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) 2022 PHPER Framework Team
// PHPER is licensed under Mulan PSL v2.
// You can use this software according to the terms and conditions of the Mulan
// PSL v2. You may obtain a copy of Mulan PSL v2 at:
// http://license.coscl.org.cn/MulanPSL2
// THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY
// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
// See the Mulan PSL v2 for more details.
//! Apis relate to [zend_class_entry].
use crate::{
arrays::ZArr,
errors::{ClassNotFoundError, InitializeObjectError, Throwable},
functions::{Function, FunctionEntry, HandlerMap, Method, MethodEntity},
modules::global_module,
objects::{StateObj, StateObject, ZObject},
strings::ZStr,
sys::*,
types::Scalar,
utils::ensure_end_with_zero,
values::ZVal,
};
use std::{
any::Any,
cell::RefCell,
ffi::{c_char, c_void, CString},
fmt::Debug,
marker::PhantomData,
mem::{replace, size_of, zeroed, ManuallyDrop},
os::raw::c_int,
ptr::null_mut,
rc::Rc,
slice,
};
/// Predefined interface `Iterator`.
#[inline]
pub fn iterator_class<'a>() -> &'a ClassEntry {
unsafe { ClassEntry::from_ptr(zend_ce_iterator) }
}
/// Predefined interface `ArrayAccess`.
#[inline]
pub fn array_access_class<'a>() -> &'a ClassEntry {
unsafe { ClassEntry::from_ptr(zend_ce_arrayaccess) }
}
/// Wrapper of [zend_class_entry].
#[repr(transparent)]
pub struct ClassEntry {
inner: zend_class_entry,
_p: PhantomData<*mut ()>,
}
impl ClassEntry {
/// Wraps a raw pointer.
///
/// # Safety
///
/// Create from raw pointer.
///
/// # Panics
///
/// Panics if pointer is null.
#[inline]
pub unsafe fn from_ptr<'a>(ptr: *const zend_class_entry) -> &'a Self {
(ptr as *const Self).as_ref().expect("ptr should't be null")
}
/// Wraps a raw pointer, return None if pointer is null.
///
/// # Safety
///
/// Create from raw pointer.
#[inline]
pub unsafe fn try_from_ptr<'a>(ptr: *const zend_class_entry) -> Option<&'a Self> {
(ptr as *const Self).as_ref()
}
/// Wraps a raw pointer.
///
/// # Safety
///
/// Create from raw pointer.
///
/// # Panics
///
/// Panics if pointer is null.
#[inline]
pub unsafe fn from_mut_ptr<'a>(ptr: *mut zend_class_entry) -> &'a mut Self {
(ptr as *mut Self).as_mut().expect("ptr should't be null")
}
/// Wraps a raw pointer, return None if pointer is null.
///
/// # Safety
///
/// Create from raw pointer.
#[inline]
pub unsafe fn try_from_mut_ptr<'a>(ptr: *mut zend_class_entry) -> Option<&'a mut Self> {
(ptr as *mut Self).as_mut()
}
/// Returns a raw pointer wrapped.
pub const fn as_ptr(&self) -> *const zend_class_entry {
&self.inner
}
/// Returns a raw pointer wrapped.
#[inline]
pub fn as_mut_ptr(&mut self) -> *mut zend_class_entry {
&mut self.inner
}
/// Create reference from global class name.
///
/// # Examples
///
/// ```no_run
/// use phper::classes::ClassEntry;
///
/// let std_class = ClassEntry::from_globals("stdClass").unwrap();
/// let _obj = std_class.new_object([]).unwrap();
/// ```
pub fn from_globals(class_name: impl AsRef<str>) -> crate::Result<&'static Self> {
let name = class_name.as_ref();
let ptr: *mut Self = find_global_class_entry_ptr(name).cast();
unsafe {
ptr.as_ref().ok_or_else(|| {
crate::Error::ClassNotFound(ClassNotFoundError::new(name.to_string()))
})
}
}
/// Create the object from class and call `__construct` with arguments.
///
/// If the `__construct` is private, or protected and the called scope isn't
/// parent class, it will throw PHP Error.
pub fn new_object(&self, arguments: impl AsMut<[ZVal]>) -> crate::Result<ZObject> {
let mut object = self.init_object()?;
object.call_construct(arguments)?;
Ok(object)
}
/// Create the object from class, without calling `__construct`.
///
/// **Be careful when `__construct` is necessary.**
pub fn init_object(&self) -> crate::Result<ZObject> {
unsafe {
let ptr = self.as_ptr() as *mut _;
let mut val = ZVal::default();
if !phper_object_init_ex(val.as_mut_ptr(), ptr) {
Err(InitializeObjectError::new(self.get_name().to_str()?.to_owned()).into())
} else {
// Can't drop val here! Otherwise the object will be dropped too (wasting me a
// day of debugging time here).
let mut val = ManuallyDrop::new(val);
let ptr = phper_z_obj_p(val.as_mut_ptr());
Ok(ZObject::from_raw(ptr))
}
}
}
/// Get the class name.
pub fn get_name(&self) -> &ZStr {
unsafe { ZStr::from_ptr(self.inner.name) }
}
/// Detect if the method is exists in class.
pub fn has_method(&self, method_name: &str) -> bool {
unsafe {
let function_table = ZArr::from_ptr(&self.inner.function_table);
function_table.exists(method_name)
}
}
/// Detect if the class is instance of parent class.
pub fn is_instance_of(&self, parent: &ClassEntry) -> bool {
unsafe { phper_instanceof_function(self.as_ptr(), parent.as_ptr()) }
}
/// Get the static property by name of class.
///
/// Return None when static property hasn't register by
/// [ClassEntity::add_static_property].
pub fn get_static_property(&self, name: impl AsRef<str>) -> Option<&ZVal> {
let ptr = self.as_ptr() as *mut _;
let prop = Self::inner_get_static_property(ptr, name);
unsafe { ZVal::try_from_ptr(prop) }
}
/// Set the static property by name of class.
///
/// Return `Some(x)` where `x` is the previous value of static property, or
/// return `None` when static property hasn't register by
/// [ClassEntity::add_static_property].
pub fn set_static_property(&self, name: impl AsRef<str>, val: impl Into<ZVal>) -> Option<ZVal> {
let ptr = self.as_ptr() as *mut _;
let prop = Self::inner_get_static_property(ptr, name);
let prop = unsafe { ZVal::try_from_mut_ptr(prop) };
prop.map(|prop| replace(prop, val.into()))
}
fn inner_get_static_property(scope: *mut zend_class_entry, name: impl AsRef<str>) -> *mut zval {
let name = name.as_ref();
unsafe {
#[allow(clippy::useless_conversion)]
zend_read_static_property(scope, name.as_ptr().cast(), name.len(), true.into())
}
}
}
impl Debug for ClassEntry {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_tuple("ClassEntry")
.field(&self.get_name().to_c_str())
.finish()
}
}
#[allow(clippy::useless_conversion)]
fn find_global_class_entry_ptr(name: impl AsRef<str>) -> *mut zend_class_entry {
let name = name.as_ref();
let name = name.to_lowercase();
unsafe {
phper_zend_hash_str_find_ptr(
compiler_globals.class_table,
name.as_ptr().cast(),
name.len().try_into().unwrap(),
)
.cast()
}
}
/// The [StateClass] holds [zend_class_entry] and inner state, created by
/// [Module::add_class](crate::modules::Module::add_class) or
/// [ClassEntity::bind_class].
///
/// When the class registered (module initialized), the [StateClass] will
/// be initialized, so you can use the [StateClass] to new stateful
/// object, etc.
///
/// So, You shouldn't use [StateClass] in `module_init` stage, because it
/// hasn't initialized.
///
/// # Examples
///
/// ```rust
/// use phper::{
/// classes::{ClassEntity, StateClass},
/// modules::Module,
/// php_get_module,
/// };
///
/// #[derive(Default)]
/// pub struct FooState;
///
/// fn make_foo_class() -> ClassEntity<FooState> {
/// ClassEntity::new_with_default_state_constructor("Foo")
/// }
///
/// #[php_get_module]
/// pub fn get_module() -> Module {
/// let mut module = Module::new(
/// env!("CARGO_CRATE_NAME"),
/// env!("CARGO_PKG_VERSION"),
/// env!("CARGO_PKG_AUTHORS"),
/// );
///
/// let _foo_class: StateClass<FooState> = module.add_class(make_foo_class());
///
/// module
/// }
/// ```
pub struct StateClass<T> {
inner: Rc<RefCell<*mut zend_class_entry>>,
_p: PhantomData<T>,
}
impl<T> StateClass<T> {
fn null() -> Self {
Self {
inner: Rc::new(RefCell::new(null_mut())),
_p: PhantomData,
}
}
fn bind(&self, ptr: *mut zend_class_entry) {
*self.inner.borrow_mut() = ptr;
}
/// Converts to class entry.
pub fn as_class_entry(&self) -> &ClassEntry {
unsafe { ClassEntry::from_mut_ptr(*self.inner.borrow()) }
}
/// Create the object from class and call `__construct` with arguments.
///
/// If the `__construct` is private, or protected and the called scope isn't
/// parent class, it will throw PHP Error.
pub fn new_object(&self, arguments: impl AsMut<[ZVal]>) -> crate::Result<StateObject<T>> {
self.as_class_entry()
.new_object(arguments)
.map(ZObject::into_raw)
.map(StateObject::<T>::from_raw_object)
}
/// Create the object from class, without calling `__construct`.
///
/// **Be careful when `__construct` is necessary.**
pub fn init_object(&self) -> crate::Result<StateObject<T>> {
self.as_class_entry()
.init_object()
.map(ZObject::into_raw)
.map(StateObject::<T>::from_raw_object)
}
}
impl<T> Clone for StateClass<T> {
fn clone(&self) -> Self {
Self {
inner: self.inner.clone(),
_p: self._p,
}
}
}
/// The [Interface] holds [zend_class_entry], created by
/// [Module::add_interface](crate::modules::Module::add_interface).
///
/// When the interface registered (module initialized), the [Interface]
/// will be initialized.
///
/// So, You shouldn't use [Interface] in `module_init` stage, because it
/// hasn't initialized.
///
/// # Examples
///
/// ```rust
/// use phper::{
/// classes::{Interface, InterfaceEntity},
/// modules::Module,
/// php_get_module,
/// };
///
/// fn make_foo_interface() -> InterfaceEntity {
/// InterfaceEntity::new("Foo")
/// }
///
/// #[php_get_module]
/// pub fn get_module() -> Module {
/// let mut module = Module::new(
/// env!("CARGO_CRATE_NAME"),
/// env!("CARGO_PKG_VERSION"),
/// env!("CARGO_PKG_AUTHORS"),
/// );
///
/// let _foo_interface: Interface = module.add_interface(make_foo_interface());
///
/// module
/// }
/// ```
#[derive(Clone)]
pub struct Interface {
inner: Rc<RefCell<*mut zend_class_entry>>,
}
impl Interface {
fn null() -> Self {
Self {
inner: Rc::new(RefCell::new(null_mut())),
}
}
fn bind(&self, ptr: *mut zend_class_entry) {
*self.inner.borrow_mut() = ptr;
}
/// Converts to class entry.
pub fn as_class_entry(&self) -> &ClassEntry {
unsafe { ClassEntry::from_mut_ptr(*self.inner.borrow()) }
}
}
pub(crate) type StateConstructor = dyn Fn() -> *mut dyn Any;
pub(crate) type StateCloner = dyn Fn(*const dyn Any) -> *mut dyn Any;
/// Builder for registering class.
///
/// `<T>` means the type of holding state.
///
/// *It is a common practice for PHP extensions to use PHP objects to package
/// third-party resources.*
pub struct ClassEntity<T: 'static> {
class_name: CString,
state_constructor: Rc<StateConstructor>,
method_entities: Vec<MethodEntity>,
property_entities: Vec<PropertyEntity>,
parent: Option<Box<dyn Fn() -> &'static ClassEntry>>,
interfaces: Vec<Box<dyn Fn() -> &'static ClassEntry>>,
constants: Vec<ConstantEntity>,
bind_class: StateClass<T>,
state_cloner: Option<Rc<StateCloner>>,
_p: PhantomData<(*mut (), T)>,
}
impl ClassEntity<()> {
/// Construct a new `ClassEntity` with class name, do not own state.
pub fn new(class_name: impl Into<String>) -> Self {
Self::new_with_state_constructor(class_name, || ())
}
}
impl<T: Default + 'static> ClassEntity<T> {
/// Construct a new `ClassEntity` with class name and default state
/// constructor.
pub fn new_with_default_state_constructor(class_name: impl Into<String>) -> Self {
Self::new_with_state_constructor(class_name, Default::default)
}
}
impl<T: 'static> ClassEntity<T> {
/// Construct a new `ClassEntity` with class name and the constructor to
/// build state.
pub fn new_with_state_constructor(
class_name: impl Into<String>, state_constructor: impl Fn() -> T + 'static,
) -> Self {
Self {
class_name: ensure_end_with_zero(class_name),
state_constructor: Rc::new(move || {
let state = state_constructor();
let boxed = Box::new(state) as Box<dyn Any>;
Box::into_raw(boxed)
}),
method_entities: Vec::new(),
property_entities: Vec::new(),
parent: None,
interfaces: Vec::new(),
constants: Vec::new(),
bind_class: StateClass::null(),
state_cloner: None,
_p: PhantomData,
}
}
/// Add member method to class, with visibility and method handler.
pub fn add_method<F, Z, E>(
&mut self, name: impl Into<String>, vis: Visibility, handler: F,
) -> &mut MethodEntity
where
F: Fn(&mut StateObj<T>, &mut [ZVal]) -> Result<Z, E> + 'static,
Z: Into<ZVal> + 'static,
E: Throwable + 'static,
{
self.method_entities.push(MethodEntity::new(
name,
Some(Rc::new(Method::new(handler))),
vis,
));
self.method_entities.last_mut().unwrap()
}
/// Add static method to class, with visibility and method handler.
pub fn add_static_method<F, Z, E>(
&mut self, name: impl Into<String>, vis: Visibility, handler: F,
) -> &mut MethodEntity
where
F: Fn(&mut [ZVal]) -> Result<Z, E> + 'static,
Z: Into<ZVal> + 'static,
E: Throwable + 'static,
{
let mut entity = MethodEntity::new(name, Some(Rc::new(Function::new(handler))), vis);
entity.set_vis_static();
self.method_entities.push(entity);
self.method_entities.last_mut().unwrap()
}
/// Add abstract method to class, with visibility (shouldn't be private).
pub fn add_abstract_method(
&mut self, name: impl Into<String>, vis: Visibility,
) -> &mut MethodEntity {
let mut entity = MethodEntity::new(name, None, vis);
entity.set_vis_abstract();
self.method_entities.push(entity);
self.method_entities.last_mut().unwrap()
}
/// Declare property.
///
/// The argument `value` should be `Copy` because 'zend_declare_property'
/// receive only scalar zval , otherwise will report fatal error:
/// "Internal zvals cannot be refcounted".
pub fn add_property(
&mut self, name: impl Into<String>, visibility: Visibility, value: impl Into<Scalar>,
) {
self.property_entities
.push(PropertyEntity::new(name, visibility, value));
}
/// Declare static property.
///
/// The argument `value` should be `Copy` because 'zend_declare_property'
/// receive only scalar zval , otherwise will report fatal error:
/// "Internal zvals cannot be refcounted".
pub fn add_static_property(
&mut self, name: impl Into<String>, visibility: Visibility, value: impl Into<Scalar>,
) {
let mut entity = PropertyEntity::new(name, visibility, value);
entity.set_vis_static();
self.property_entities.push(entity);
}
/// Add constant to class
pub fn add_constant(&mut self, name: impl Into<String>, value: impl Into<Scalar>) {
let constant = ConstantEntity::new(name, value);
self.constants.push(constant);
}
/// Register class to `extends` the parent class.
///
/// *Because in the `MINIT` phase, the class starts to register, so the*
/// *closure is used to return the `ClassEntry` to delay the acquisition of*
/// *the class.*
///
/// # Examples
///
/// ```no_run
/// use phper::classes::{ClassEntity, ClassEntry};
///
/// let mut class = ClassEntity::new("MyException");
/// class.extends(|| ClassEntry::from_globals("Exception").unwrap());
/// ```
pub fn extends(&mut self, parent: impl Fn() -> &'static ClassEntry + 'static) {
self.parent = Some(Box::new(parent));
}
/// Register class to `implements` the interface, due to the class can
/// implement multi interface, so this method can be called multi time.
///
/// *Because in the `MINIT` phase, the class starts to register, so the*
/// *closure is used to return the `ClassEntry` to delay the acquisition of*
/// *the class.*
///
/// # Examples
///
/// ```no_run
/// use phper::classes::{ClassEntity, ClassEntry};
///
/// let mut class = ClassEntity::new("MyClass");
/// class.implements(|| ClassEntry::from_globals("Stringable").unwrap());
///
/// // Here you have to the implement the method `__toString()` in `Stringable`
/// // for `MyClass`, otherwise `MyClass` will become abstract class.
/// // ...
/// ```
pub fn implements(&mut self, interface: impl Fn() -> &'static ClassEntry + 'static) {
self.interfaces.push(Box::new(interface));
}
/// Add the state clone function, called when cloning PHP object.
///
/// By default, the object registered by `phper` is uncloneable, if you
/// clone the object in PHP like this:
///
/// ```php
/// $foo = new Foo();
/// $foo2 = clone $foo;
/// ```
///
/// Will throw the Error: `Uncaught Error: Trying to clone an uncloneable
/// object of class Foo`.
///
/// And then, if you want the object to be cloneable, you should register
/// the state clone method for the class.
///
/// # Examples
///
/// ```
/// use phper::classes::ClassEntity;
///
/// fn make_foo_class() -> ClassEntity<i64> {
/// let mut class = ClassEntity::new_with_state_constructor("Foo", || 123456);
/// class.state_cloner(Clone::clone);
/// class
/// }
/// ```
pub fn state_cloner(&mut self, clone_fn: impl Fn(&T) -> T + 'static) {
self.state_cloner = Some(Rc::new(move |src| {
let src = unsafe {
src.as_ref()
.unwrap()
.downcast_ref::<T>()
.expect("cast Any to T failed")
};
let dest = clone_fn(src);
let boxed = Box::new(dest) as Box<dyn Any>;
Box::into_raw(boxed)
}));
}
#[allow(clippy::useless_conversion)]
pub(crate) unsafe fn init(&self) -> *mut zend_class_entry {
let parent: *mut zend_class_entry = self
.parent
.as_ref()
.map(|parent| parent())
.map(|entry| entry.as_ptr() as *mut _)
.unwrap_or(null_mut());
let class_ce = phper_init_class_entry_ex(
self.class_name.as_ptr().cast(),
self.class_name.as_bytes().len().try_into().unwrap(),
self.function_entries(),
Some(class_init_handler),
parent.cast(),
);
self.bind_class.bind(class_ce);
for interface in &self.interfaces {
let interface_ce = interface().as_ptr();
zend_class_implements(class_ce, 1, interface_ce);
}
for constant in &self.constants {
add_class_constant(class_ce, constant);
}
*phper_get_create_object(class_ce) = Some(create_object);
class_ce
}
pub(crate) unsafe fn declare_properties(&self, ce: *mut zend_class_entry) {
for property in &self.property_entities {
property.declare(ce);
}
}
unsafe fn function_entries(&self) -> *const zend_function_entry {
let mut methods = self
.method_entities
.iter()
.map(|method| FunctionEntry::from_method_entity(method))
.collect::<Vec<_>>();
methods.push(zeroed::<zend_function_entry>());
// Store the state constructor pointer to zend_class_entry.
methods.push(self.take_state_constructor_into_function_entry());
// Store the state cloner pointer to zend_class_entry.
methods.push(self.take_state_cloner_into_function_entry());
Box::into_raw(methods.into_boxed_slice()).cast()
}
unsafe fn take_state_constructor_into_function_entry(&self) -> zend_function_entry {
let mut entry = zeroed::<zend_function_entry>();
let ptr = &mut entry as *mut _ as *mut *const StateConstructor;
let state_constructor = Rc::into_raw(self.state_constructor.clone());
ptr.write(state_constructor);
entry
}
unsafe fn take_state_cloner_into_function_entry(&self) -> zend_function_entry {
let mut entry = zeroed::<zend_function_entry>();
let ptr = &mut entry as *mut _ as *mut *const StateCloner;
if let Some(state_cloner) = &self.state_cloner {
let state_constructor = Rc::into_raw(state_cloner.clone());
ptr.write(state_constructor);
}
entry
}
pub(crate) fn handler_map(&self) -> HandlerMap {
self.method_entities
.iter()
.filter_map(|method| {
method.handler.as_ref().map(|handler| {
(
(Some(self.class_name.clone()), method.name.clone()),
handler.clone(),
)
})
})
.collect()
}
/// Get the bound class.
///
/// # Examples
///
/// ```
/// use phper::classes::{ClassEntity, Visibility};
///
/// pub fn make_foo_class() -> ClassEntity<()> {
/// let mut class = ClassEntity::<()>::new_with_default_state_constructor("Foo");
/// let foo_class = class.bind_class();
/// class.add_static_method("newInstance", Visibility::Public, move |_| {
/// let mut object = foo_class.init_object()?;
/// Ok::<_, phper::Error>(object)
/// });
/// class
/// }
/// ```
#[inline]
pub fn bind_class(&self) -> StateClass<T> {
self.bind_class.clone()
}
}
unsafe extern "C" fn class_init_handler(
class_ce: *mut zend_class_entry, argument: *mut c_void,
) -> *mut zend_class_entry {
let parent = argument as *mut zend_class_entry;
if parent.is_null() {
zend_register_internal_class(class_ce)
} else {
zend_register_internal_class_ex(class_ce, parent)
}
}
/// Builder for registering interface.
pub struct InterfaceEntity {
interface_name: CString,
method_entities: Vec<MethodEntity>,
constants: Vec<ConstantEntity>,
extends: Vec<Box<dyn Fn() -> &'static ClassEntry>>,
bind_interface: Interface,
}
impl InterfaceEntity {
/// Construct a new `InterfaceEntity` with interface name.
pub fn new(interface_name: impl Into<String>) -> Self {
Self {
interface_name: ensure_end_with_zero(interface_name.into()),
method_entities: Vec::new(),
constants: Vec::new(),
extends: Vec::new(),
bind_interface: Interface::null(),
}
}
/// Add member method to interface, with mandatory visibility public
/// abstract.
pub fn add_method(&mut self, name: impl Into<String>) -> &mut MethodEntity {
let mut entity = MethodEntity::new(name, None, Visibility::Public);
entity.set_vis_abstract();
self.method_entities.push(entity);
self.method_entities.last_mut().unwrap()
}
/// Add constant to interface
pub fn add_constant(&mut self, name: impl Into<String>, value: impl Into<Scalar>) {
let constant = ConstantEntity::new(name, value);
self.constants.push(constant);
}
/// Register interface to `extends` the interfaces, due to the interface can
/// extends multi interface, so this method can be called multi time.
///
/// *Because in the `MINIT` phase, the class starts to register, so the*
/// *closure is used to return the `ClassEntry` to delay the acquisition of*
/// *the class.*
///
/// # Examples
///
/// ```no_run
/// use phper::classes::{ClassEntry, InterfaceEntity};
///
/// let mut interface = InterfaceEntity::new("MyInterface");
/// interface.extends(|| ClassEntry::from_globals("Stringable").unwrap());
/// ```
pub fn extends(&mut self, interface: impl Fn() -> &'static ClassEntry + 'static) {
self.extends.push(Box::new(interface));
}
#[allow(clippy::useless_conversion)]
pub(crate) unsafe fn init(&self) -> *mut zend_class_entry {
let class_ce = phper_init_class_entry_ex(
self.interface_name.as_ptr().cast(),
self.interface_name.as_bytes().len().try_into().unwrap(),
self.function_entries(),
Some(interface_init_handler),
null_mut(),
);
self.bind_interface.bind(class_ce);
for interface in &self.extends {
let interface_ce = interface().as_ptr();
zend_class_implements(class_ce, 1, interface_ce);
}
for constant in &self.constants {
add_class_constant(class_ce, constant);
}
class_ce
}
unsafe fn function_entries(&self) -> *const zend_function_entry {
let mut methods = self
.method_entities
.iter()
.map(|method| FunctionEntry::from_method_entity(method))
.collect::<Vec<_>>();
methods.push(zeroed::<zend_function_entry>());
Box::into_raw(methods.into_boxed_slice()).cast()
}
/// Get the bound interface.
#[inline]
pub fn bind_interface(&self) -> Interface {
self.bind_interface.clone()
}
}
unsafe extern "C" fn interface_init_handler(
class_ce: *mut zend_class_entry, _argument: *mut c_void,
) -> *mut zend_class_entry {
zend_register_internal_interface(class_ce)
}
/// Builder for registering class/interface constants
pub struct ConstantEntity {
name: String,
value: Scalar,
}
impl ConstantEntity {
fn new(name: impl Into<String>, value: impl Into<Scalar>) -> Self {
Self {
name: name.into(),
value: value.into(),
}
}
}
/// Builder for declare class property.
struct PropertyEntity {
name: String,
visibility: RawVisibility,
value: Scalar,
}
impl PropertyEntity {
fn new(name: impl Into<String>, visibility: Visibility, value: impl Into<Scalar>) -> Self {
Self {
name: name.into(),
visibility: visibility as RawVisibility,
value: value.into(),
}
}
#[inline]
pub(crate) fn set_vis_static(&mut self) -> &mut Self {
self.visibility |= ZEND_ACC_STATIC;
self
}
#[allow(clippy::useless_conversion)]
pub(crate) fn declare(&self, ce: *mut zend_class_entry) {
let name = self.name.as_ptr().cast();
let name_length = self.name.len().try_into().unwrap();
let access_type = self.visibility as i32;
unsafe {
match &self.value {
Scalar::Null => {
zend_declare_property_null(ce, name, name_length, access_type);
}
Scalar::Bool(b) => {
zend_declare_property_bool(ce, name, name_length, *b as zend_long, access_type);
}
Scalar::I64(i) => {
zend_declare_property_long(ce, name, name_length, *i, access_type);
}
Scalar::F64(f) => {
zend_declare_property_double(ce, name, name_length, *f, access_type);
}
Scalar::String(s) => {
// If the `ce` is `ZEND_INTERNAL_CLASS`, then the `zend_string` is allocated
// as persistent.
zend_declare_property_stringl(
ce,
name,
name_length,
s.as_ptr().cast(),
s.len().try_into().unwrap(),
access_type,
);
}
Scalar::Bytes(b) => {
zend_declare_property_stringl(
ce,
name,
name_length,
b.as_ptr().cast(),
b.len().try_into().unwrap(),
access_type,
);
}
}
}
}
}
/// Visibility of class properties and methods.
#[repr(u32)]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Default)]
pub enum Visibility {
/// Public.
#[default]
Public = ZEND_ACC_PUBLIC,
/// Protected.
Protected = ZEND_ACC_PROTECTED,
/// Private.
Private = ZEND_ACC_PRIVATE,
}
/// Raw visibility flag.
pub(crate) type RawVisibility = u32;
#[allow(clippy::useless_conversion)]
unsafe extern "C" fn create_object(ce: *mut zend_class_entry) -> *mut zend_object {
// Get real ce which hold state_constructor.
let real_ce = find_real_ce(ce).unwrap();
// Alloc more memory size to store state data.
let state_object = phper_zend_object_alloc(size_of::<StateObj<()>>().try_into().unwrap(), ce);
let state_object = StateObj::<()>::from_mut_ptr(state_object);
// Find the hack elements hidden behind null builtin_function.
let mut func_ptr = (*real_ce).info.internal.builtin_functions;
while !(*func_ptr).fname.is_null() {
func_ptr = func_ptr.offset(1);
}
// Get state constructor.
func_ptr = func_ptr.offset(1);
let state_constructor = func_ptr as *mut *const StateConstructor;
let state_constructor = state_constructor.read().as_ref().unwrap();
// Get state cloner.
func_ptr = func_ptr.offset(1);
let has_state_cloner =
slice::from_raw_parts(func_ptr as *const u8, size_of::<*const StateCloner>())
!= [0u8; size_of::<*const StateCloner>()];
// Common initialize process.
let object = state_object.as_mut_object().as_mut_ptr();
zend_object_std_init(object, ce);
object_properties_init(object, ce);
cfg_if::cfg_if! {
if #[cfg(any(
phper_major_version = "7",
all(
phper_major_version = "8",
any(
phper_minor_version = "0",
phper_minor_version = "1",
phper_minor_version = "2",
phper_minor_version = "3",
),
)
))] {
rebuild_object_properties(object);
} else {
rebuild_object_properties_internal(object);
}
}
// Set handlers
let mut handlers = Box::new(std_object_handlers);
handlers.offset = StateObj::<()>::offset() as c_int;
handlers.free_obj = Some(free_object);
handlers.clone_obj = has_state_cloner.then_some(clone_object);
(*object).handlers = Box::into_raw(handlers);
// Call the state constructor and store the state.
let data = (state_constructor)();
*state_object.as_mut_any_state() = data;
object
}
#[cfg(phper_major_version = "8")]
unsafe extern "C" fn clone_object(object: *mut zend_object) -> *mut zend_object {
clone_object_common(object)