NAME
Clownfish::Class - An object representing a single class definition.
CONSTRUCTORS
Clownfish::Class objects are stored as quasi-singletons, one for each unique parcel/class_name combination.
fetch_singleton
my $class = Clownfish::Class->fetch_singleton(
parcel => 'Crustacean',
class_name => 'Crustacean::Lobster::LobsterClaw',
);
Retrieve a Class, if one has already been created.
create
my $class = Clownfish::Class->create(
parcel => 'Crustacean', # default: special
class_name => 'Crustacean::Lobster::LobsterClaw', # required
cnick => 'LobClaw', # default: special
exposure => 'public', # default: 'parcel'
source_class => undef, # default: same as class_name
parent_class_name => 'Crustacean::Claw', # default: undef
inert => undef, # default: undef
docucomment => $documcom, # default: undef,
);
Create and register a quasi-singleton. May only be called once for each unique parcel/class_name combination.
parcel, class_name, cnick, exposure - see Clownfish::Symbol.
source_class - The name of the class that owns the file in which this class was declared. Should be "Foo" if "Foo::FooJr" is defined in
Foo.cfh
.parent_class_name - The name of this class's parent class. Needed in order to establish the class hierarchy.
inert - Should be true if the class is inert, i.e. cannot be instantiated.
docucomment - A Clownfish::DocuComment describing this Class.
METHODS
get_cnick get_struct_sym get_parent_class_name get_source_class get_docucomment get_parent get_autocode inert final
Accessors.
set_parent
$class->set_parent($ancestor);
Set the parent class.
add_child
$class->add_child($child_class);
Add a child class.
add_method
$class->add_method($method);
Add a Method to the class. Valid only before grow_tree() is called.
add_function
$class->add_function($function);
Add a Function to the class. Valid only before grow_tree() is called.
add_member_var
$class->add_member_var($var);
Add a member variable to the class. Valid only before grow_tree() is called.
add_inert_var
$class->add_inert_var($var);
Add an inert (class) variable to the class. Valid only before grow_tree() is called.
add_attribute
$class->add_attribute($var, $value);
Add an arbitrary attribute to the class.
function
my $do_stuff_function = $class->function("do_stuff");
Return the inert Function object for the supplied micro_sym
, if any.
method
my $pinch_method = $class->method("Pinch");
Return the Method object for the supplied micro_sym
/ macro_sym
, if any.
novel_method
my $pinch_method = $class->novel_method("Pinch");
Return a Method object if the Method corresponding to the supplied string is novel.
children
my $child_classes = $class->children;
Return an array of all child classes.
functions
my $functions = $class->functions;
Return an array of all (inert) functions.
methods
my $methods = $class->methods;
Return an array of all methods.
inert_vars
my $inert_vars = $class->inert_vars;
Return an array of all inert (shared, class) variables.
member_vars
my $members = $class->member_vars;
Return an array of all member variables.
novel_methods
my $novel_methods = $class->novel_methods;
Return an array of all novel methods.
novel_member_vars
my $new_members = $class->novel_member_vars;
Return an array of all novel member variables.
grow_tree
$class->grow_tree;
Bequeath all inherited methods and members to children.
tree_to_ladder
my $ordered = $class->tree_to_ladder;
Return this class and all its child classes as an array, where all children appear after their parent nodes.
include_h
my $relative_path = $class->include_h;
Return a relative path to a C header file, appropriately formatted for a pound-include directive.
append_autocode
$class->append_autocode($code);
Append auxiliary C code.
short_vtable_var
The short name of the global VTable object for this class.
full_vtable_var
Fully qualified vtable variable name, including the parcel prefix.
full_vtable_type
The fully qualified C type specifier for this class's vtable, including the parcel prefix. Each vtable needs to have its own type because each has a variable number of methods at the end of the struct, and it's not possible to initialize a static struct with a flexible array at the end under C89.
full_struct_sym
Fully qualified struct symbol, including the parcel prefix.