I have defined own metamodel class to create a special kind of classes. Now, I would like these classes to automatically register themselves with a special kind of manager. Basically, this would like like this (would only compose be called each time when class' module is being loaded):
use MyManager;
class MyHOW is Metamodel::ClassHOW {
method compose ( Mu \type ) {
self.add_parent( type, MyParentClass );
callsame;
registerMyClass( type );
}
}
Then I have something like:
use v6;
use MyClass;
myclass Foo { ... }
in a module. Then there is a manager object which scans repositories/file system and requires modules with names matching to a certain pattern. Afterwards, it needs to know what myclasses are defined in each module. It could scan the symbol table of the loaded module. But this won't work if the loaded file contains multiple modules or no modules at all – like in the example above.
So far, it looks like the INIT phaser would provide the solution, but I'm struggling to find how to get the body block of a class from within the composer method.
myclasssupposed to bemy class? If so, I don't have anything for you. If not, it sounds like github.com/jnthn/oo-actors might be helpful.::('My::Foo::Module')there will be module namedMy::Foo::Module; or it is the only module in that file. I can apply extra restriction for the future developers using my module but would be happy to provide more freedom.myclassis a keyword declared same way, as inOO::Actors. I have edited my sample code to include the key part of the question – the registration line. That's the line I need to call whenever amyclassgets imported. With the sample code it would executed only once, at the precompilation stage. I need it to be called same moment, whenINITphaser is executed.composemethod. Line$*W.context.cur_code_object().add_phaser('POST', { note "AUTOGEN" } );inside the method results inCannot invoke this object (REPR: Null; VMNull)error. Though I'm not even surecur_code_objectreturns class' block here.