|
Perl 6
SMOP OO API: Revision 39
In order to ensure the interoperability among object representations and even between different object systems that uses the same representation. In this context we need to define the HOW and REPR API, this is the SMOP OO API that allows representations to be interchanged, and custom BUILD methods to be written. The interesting aspect is that all this methods must be called in the object itself in SMOP, and that's why they have the "^" and "^!" prefixes, where the first mean a HOW call, and the second means a REPR call. It is important to stress that the REPR API is SMOP specific, whereas the HOW API is supposed to be transversal to Perl 6 implementations. Object APIThis is what is implemented by Object
method new($prototype: *@protoobjects, *%initialize --> Object) {...}
method bless($prototype: $candidate?, *@protoobjects, *%initialize --> Object) {...}
method clone($object: --> Object ) {...}
method can($object: $name, $capture? --> List of Method) {...}
method does($object: $prototype --> bool) {...}
method isa($object: $prototype --> bool) {...}
method defined($object: --> bool ) {...}
method CREATE($prototype: :$repr --> Object) {...}
method BUILDALL($object: *@protoobjects, *%initialize) {...}
method DESTROYALL($object: ) {...}
submethod BUILD($object: *@protoobjects, *%initialize) {...}
submethod DESTROY($object: ) {...}
Package APIAs submethods are stored in the package as subroutines with invocants, we need to have the API for Package defined here.
method CANDO($package: $name, $capture? --> List of Sub) {...}
method members($package: --> Hash ) {...}
HOW APIThis is the instrospection API, that is available as standard Perl 6 and relate to the Object considering all the inheritance and composition. This represent all object capabilities, including the inherited ones, not only the ones implemented by this specific instance (as opposed to the REPR API).
our Object method ^CREATE($object: ) {...}
our List of Method method ^methods($object: ) {...}
our List of Attribute method ^attributes($object: ) {...}
our bool method ^isa($object: $superclass) {...}
our bool method ^does($object: $otherclass) {...}
our List of Method method ^can($object: $identifier, $capture?) {...}
our Attribute method ^has($object: $identifier) {...}
REPR APIThe representation API defines how the runtime can ask different representations. This API is the real enabler on having different representations, even for the same classes. Unlike the HOW API, this only applies to this specific object. The responder interface is supposed to intercept that calls and never call them using standard MRO. None of the information returned by the methods of the REPR API reflects inherited behaviours, it reflects only the definitions made in that object. Basic initialization and destruction API.
method ^!CREATE($prototype: ) {...}
method ^!DESTROY($object: ) {...}
method ^!clone($object: ) {...}
method ^!initialize_instance_storage($object: $package) {...}
method ^!destroy_instance_storage($object: $package) {...}
Defined/UndefinedThe default "defined" implemented by Object, delegates the call to the representation. By default, an object is defined if there is any instance storage initialized. Which basically means that an object is undefined after CREATE and will become defined after BUILDALL.
our bool method ^!defined($object: ) {...}
Skipping lookup on instancesThe instance method defines if this object is a direct instance of some class. This means that it might have only a single isa, no role and it must not have any other definition. If this value is true, then no lookup is made directly in this object, which means the return for WHAT will be the isa of this object. On the other hand, if this returns false, this is a prototype. In order to avoid defining Undef, you can only add instance storage to "instance" values. You can't have a "defined" class.
our bool method ^!instance($object: ) {...}
RW introspection APITrying to access the private storage of a class (which returns false to "instance") will result in a failure. Trying to add definitions to a defined object will result in a failure.
our Routine method ^!whence($object: ) is rw {...}
our Array of Class method ^!isa($object: ) {...}
our Array or Role method ^!role($object: ) {...}
our Hash method ^!private_storage($object: $package) {...}
our Hash method ^!class_storage($prototype: ) {...}
our Array of Method method ^!methods($prototype: ) {...}
our Array of Attribute method ^!attributes($prototype: ) {...}
our Package method ^!package($object: ) is rw {...}
our Hash method ^!properties($object: ) {...}
# these are the helper methods
our List of Method method ^!can($prototype: $name, $capture?) {...}
our Attribute method ^!has($prototype: $name) {...}
|