NAME
Class::Dot::Model::Util - Private utility functions.
VERSION
This document describes Class::Dot::Model version v%%VERSION%%
SYNOPSIS
# No user servicable parts inside...
DESCRIPTION
No user serviceable parts inside.
SUBROUTINES/METHODS
SUBROUTINES
install_coderef($coderef => $into_class, $method_name)
Install subroutine into a class with custom name.
Example:
use Class::Dot::Model qw(install_coderef);
install_coderef(sub { print "hello world" }, "Hello::World", "hello");
# prints: "hello world".
Hello::World->hello();
push_base_class($the_class, $class_target)
Push a base class into a target class.
Example:
push_base_class('DBIx::Class', 'MyApp::Model');
Is the same as:
push @MyApp::Model::ISA, 'DBIx::Class';
{
package MyApp::Model;
DBIx::Class->import();
}
run_as_call_class(($callclass, $method, @arguments) | %options_ref)
Run a method in a class, but make it look like another class runs it.
Example:
package Simpsons::Homer;
sub doh {
my $caller = caller 0;
print "$caller: Doh!\n";
}
run_as_call_class({
callclass => 'Hello::World', - the class to take we're in.
class => 'Simpsons::Homer', - the class that has the method to call.
method => 'hello' - the method to call.
});
Gives the output:
Hello::World: Doh!
Because it's basicly the same as writing:
package Simpsons::Homer;
sub doh {
my $caller = caller 0;
print "$caller: Doh!\n";
}
package Hello::World;
Simpsons::Homer->doh();
package Simpsons::Homer;
# resume other work.
There is also a shortcut method of calling this function if you want to run a method in the callclass itself:
package Hello::World;
run_as_callclass('Simpsons::Homer', 'doh');
Gives the output:
Simpsons::Homer: Doh!
FQDN(@class_components)
Return a valid Perl class name out of a list of class components.
Example:
FQDN('Class', 'Plugin', 'Util')
Becomes
Class::Plugin::Util
DIAGNOSTICS
None.
CONFIGURATION AND ENVIRONMENT
This module uses no external configuration or environment variables.
DEPENDENCIES
INCOMPATIBILITIES
None known.
BUGS AND LIMITATIONS
No bugs have been reported.
Please report any bugs or feature requests to bug-class-dot-model@rt.cpan.org, or through the web interface at CPAN Bug tracker.
SEE ALSO
Class::Dot::Model
DBIx::Class
Class::Dot
DBIx::Class::Relationships
DBIx::Class::Manual::Cookbook
AUTHOR
Ask Solem, ask@0x61736b.net.
LICENSE AND COPYRIGHT
Copyright (c), 2007 Ask Solem ask@0x61736b.net.
All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
DISCLAIMER OF WARRANTY
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.