This is about 50% of the way towards making
[gitmo/Moose.git] / lib / Moose / Meta / Class.pm
CommitLineData
c0e30cf5 1
2package Moose::Meta::Class;
3
4use strict;
5use warnings;
6
0addec44 7use Class::MOP;
648e79ae 8
6ba6d68c 9use Carp 'confess';
21f1e231 10use Scalar::Util 'weaken', 'blessed';
a15dff8d 11
75b95414 12our $VERSION = '0.55_01';
13$VERSION = eval $VERSION;
d44714be 14our $AUTHORITY = 'cpan:STEVAN';
bc1e29b5 15
8ee73eeb 16use Moose::Meta::Method::Overriden;
3f9e4b0a 17use Moose::Meta::Method::Augmented;
8ee73eeb 18
c0e30cf5 19use base 'Class::MOP::Class';
20
598340d5 21__PACKAGE__->meta->add_attribute('roles' => (
ef333f17 22 reader => 'roles',
23 default => sub { [] }
24));
25
231be3be 26__PACKAGE__->meta->add_attribute('constructor_class' => (
27 accessor => 'constructor_class',
28 default => sub { 'Moose::Meta::Method::Constructor' }
29));
30
31__PACKAGE__->meta->add_attribute('destructor_class' => (
32 accessor => 'destructor_class',
33 default => sub { 'Moose::Meta::Method::Destructor' }
34));
35
590868a3 36sub initialize {
37 my $class = shift;
38 my $pkg = shift;
685f7e44 39 return Class::MOP::get_metaclass_by_name($pkg)
40 || $class->SUPER::initialize($pkg,
41 'attribute_metaclass' => 'Moose::Meta::Attribute',
42 'method_metaclass' => 'Moose::Meta::Method',
43 'instance_metaclass' => 'Moose::Meta::Instance',
44 @_
45 );
ac2dc464 46}
590868a3 47
61bdd94f 48sub create {
49 my ($self, $package_name, %options) = @_;
50
51 (ref $options{roles} eq 'ARRAY')
52 || confess "You must pass an ARRAY ref of roles"
53 if exists $options{roles};
54
55 my $class = $self->SUPER::create($package_name, %options);
56
48045612 57 if (exists $options{roles}) {
61bdd94f 58 Moose::Util::apply_all_roles($class, @{$options{roles}});
59 }
60
61 return $class;
62}
63
17594769 64my %ANON_CLASSES;
65
66sub create_anon_class {
67 my ($self, %options) = @_;
68
69 my $cache_ok = delete $options{cache};
17594769 70
71 # something like Super::Class|Super::Class::2=Role|Role::1
72 my $cache_key = join '=' => (
6d5cbd2b 73 join('|', sort @{$options{superclasses} || []}),
74 join('|', sort @{$options{roles} || []}),
17594769 75 );
76
6d5cbd2b 77 if ($cache_ok && defined $ANON_CLASSES{$cache_key}) {
17594769 78 return $ANON_CLASSES{$cache_key};
79 }
80
81 my $new_class = $self->SUPER::create_anon_class(%options);
82
6d5cbd2b 83 $ANON_CLASSES{$cache_key} = $new_class
84 if $cache_ok;
17594769 85
86 return $new_class;
87}
88
ef333f17 89sub add_role {
90 my ($self, $role) = @_;
91 (blessed($role) && $role->isa('Moose::Meta::Role'))
92 || confess "Roles must be instances of Moose::Meta::Role";
93 push @{$self->roles} => $role;
94}
95
b8aeb4dc 96sub calculate_all_roles {
97 my $self = shift;
98 my %seen;
99 grep { !$seen{$_->name}++ } map { $_->calculate_all_roles } @{ $self->roles };
100}
101
ef333f17 102sub does_role {
103 my ($self, $role_name) = @_;
104 (defined $role_name)
105 || confess "You must supply a role name to look for";
9c429218 106 foreach my $class ($self->class_precedence_list) {
81c3738f 107 next unless $class->can('meta') && $class->meta->can('roles');
9c429218 108 foreach my $role (@{$class->meta->roles}) {
109 return 1 if $role->does_role($role_name);
110 }
ef333f17 111 }
112 return 0;
113}
114
d79e62fd 115sub excludes_role {
116 my ($self, $role_name) = @_;
117 (defined $role_name)
118 || confess "You must supply a role name to look for";
ac2dc464 119 foreach my $class ($self->class_precedence_list) {
120 next unless $class->can('meta');
5cb193ed 121 # NOTE:
122 # in the pretty rare instance when a Moose metaclass
ac2dc464 123 # is itself extended with a role, this check needs to
5cb193ed 124 # be done since some items in the class_precedence_list
ac2dc464 125 # might in fact be Class::MOP based still.
126 next unless $class->meta->can('roles');
9c429218 127 foreach my $role (@{$class->meta->roles}) {
128 return 1 if $role->excludes_role($role_name);
129 }
d79e62fd 130 }
131 return 0;
132}
133
65e14c86 134sub new_object {
d7af0635 135 my $class = shift;
136 my $params = @_ == 1 ? $_[0] : {@_};
137 my $self = $class->SUPER::new_object($params);
65e14c86 138 foreach my $attr ($class->compute_all_applicable_attributes()) {
139 # if we have a trigger, then ...
140 if ($attr->can('has_trigger') && $attr->has_trigger) {
141 # make sure we have an init-arg ...
142 if (defined(my $init_arg = $attr->init_arg)) {
143 # now make sure an init-arg was passes ...
d7af0635 144 if (exists $params->{$init_arg}) {
65e14c86 145 # and if get here, fire the trigger
146 $attr->trigger->(
147 $self,
148 # check if there is a coercion
149 ($attr->should_coerce
150 # and if so, we need to grab the
151 # value that is actually been stored
152 ? $attr->get_read_method_ref->($self)
153 # otherwise, just get the value from
154 # the constructor params
d7af0635 155 : $params->{$init_arg}),
65e14c86 156 $attr
157 );
158 }
159 }
160 }
161 }
162 return $self;
163}
164
a15dff8d 165sub construct_instance {
d7af0635 166 my $class = shift;
167 my $params = @_ == 1 ? $_[0] : {@_};
ddd0ec20 168 my $meta_instance = $class->get_meta_instance;
575db57d 169 # FIXME:
170 # the code below is almost certainly incorrect
171 # but this is foreign inheritence, so we might
ac2dc464 172 # have to kludge it in the end.
d7af0635 173 my $instance = $params->{'__INSTANCE__'} || $meta_instance->create_instance();
ac2dc464 174 foreach my $attr ($class->compute_all_applicable_attributes()) {
d7af0635 175 $attr->initialize_instance_slot($meta_instance, $instance, $params);
a15dff8d 176 }
177 return $instance;
178}
179
093b12c2 180# FIXME:
181# This is ugly
ac2dc464 182sub get_method_map {
093b12c2 183 my $self = shift;
53dd42d8 184
d5c56b0f 185 my $current = Class::MOP::check_package_cache_flag($self->name);
186
187 if (defined $self->{'_package_cache_flag'} && $self->{'_package_cache_flag'} == $current) {
0d1c8e55 188 return $self->{'methods'};
53dd42d8 189 }
190
d5c56b0f 191 $self->{_package_cache_flag} = $current;
192
0d1c8e55 193 my $map = $self->{'methods'};
ac2dc464 194
093b12c2 195 my $class_name = $self->name;
196 my $method_metaclass = $self->method_metaclass;
ac2dc464 197
0addec44 198 my %all_code = $self->get_all_package_symbols('CODE');
ac2dc464 199
0addec44 200 foreach my $symbol (keys %all_code) {
201 my $code = $all_code{$symbol};
ac2dc464 202
203 next if exists $map->{$symbol} &&
204 defined $map->{$symbol} &&
205 $map->{$symbol}->body == $code;
206
53dd42d8 207 my ($pkg, $name) = Class::MOP::get_code_info($code);
ac2dc464 208
53dd42d8 209 if ($pkg->can('meta')
4f8f3aab 210 # NOTE:
211 # we don't know what ->meta we are calling
53dd42d8 212 # here, so we need to be careful cause it
213 # just might blow up at us, or just complain
214 # loudly (in the case of Curses.pm) so we
4f8f3aab 215 # just be a little overly cautious here.
216 # - SL
217 && eval { no warnings; blessed($pkg->meta) }
218 && $pkg->meta->isa('Moose::Meta::Role')) {
093b12c2 219 #my $role = $pkg->meta->name;
220 #next unless $self->does_role($role);
221 }
222 else {
2887c827 223
224 # NOTE:
225 # in 5.10 constant.pm the constants show up
226 # as being in the right package, but in pre-5.10
227 # they show up as constant::__ANON__ so we
228 # make an exception here to be sure that things
229 # work as expected in both.
230 # - SL
231 unless ($pkg eq 'constant' && $name eq '__ANON__') {
232 next if ($pkg || '') ne $class_name ||
233 (($name || '') ne '__ANON__' && ($pkg || '') ne $class_name);
234 }
53dd42d8 235
093b12c2 236 }
ac2dc464 237
1b2aea39 238 $map->{$symbol} = $method_metaclass->wrap(
239 $code,
240 package_name => $class_name,
241 name => $symbol
242 );
093b12c2 243 }
ac2dc464 244
093b12c2 245 return $map;
a7d0cd00 246}
247
093b12c2 248### ---------------------------------------------
249
a2eec5e7 250sub add_attribute {
251 my $self = shift;
e472c9a5 252 $self->SUPER::add_attribute(
253 (blessed $_[0] && $_[0]->isa('Class::MOP::Attribute')
254 ? $_[0]
255 : $self->_process_attribute(@_))
256 );
a2eec5e7 257}
258
78cd1d3b 259sub add_override_method_modifier {
260 my ($self, $name, $method, $_super_package) = @_;
18c2ec0e 261
d05cd563 262 (!$self->has_method($name))
263 || confess "Cannot add an override method if a local method is already present";
18c2ec0e 264
265 $self->add_method($name => Moose::Meta::Method::Overriden->new(
3f9e4b0a 266 method => $method,
267 class => $self,
268 package => $_super_package, # need this for roles
269 name => $name,
18c2ec0e 270 ));
78cd1d3b 271}
272
273sub add_augment_method_modifier {
ac2dc464 274 my ($self, $name, $method) = @_;
d05cd563 275 (!$self->has_method($name))
ac2dc464 276 || confess "Cannot add an augment method if a local method is already present";
3f9e4b0a 277
278 $self->add_method($name => Moose::Meta::Method::Augmented->new(
279 method => $method,
280 class => $self,
281 name => $name,
282 ));
78cd1d3b 283}
284
1341f10c 285## Private Utility methods ...
286
05d9eaf6 287sub _find_next_method_by_name_which_is_not_overridden {
288 my ($self, $name) = @_;
68efb014 289 foreach my $method ($self->find_all_methods_by_name($name)) {
ac2dc464 290 return $method->{code}
05d9eaf6 291 if blessed($method->{code}) && !$method->{code}->isa('Moose::Meta::Method::Overriden');
292 }
293 return undef;
294}
295
6db0eb42 296# Right now, this method does not handle the case where two
297# metaclasses differ only in roles applied against a common parent
298# class. This can happen fairly easily when ClassA applies metaclass
299# Role1, and then a subclass, ClassB, applies a metaclass Role2. In
300# reality, the way to resolve the problem is to apply Role1 to
301# ClassB's metaclass. However, we cannot currently detect this, and so
302# we simply fail to fix the incompatibility.
303#
304# The algorithm for fixing it is not that complicated.
305#
306# First, we see if the two metaclasses share a common parent (probably
307# Moose::Meta::Class).
308#
309# Second, we see if the metaclasses only differ in terms of roles
310# applied. This second point is where things break down. There is no
311# easy way to determine if the difference is from roles only. To do
312# that, we'd need to able to reliably determine the origin of each
313# method and attribute in each metaclass. If all the unshared methods
314# & attributes come from roles, and there is no name collision, then
315# we can apply the missing roles to the child's metaclass.
316#
317# Tracking the origin of these things will require some fairly
318# invasive changes to various parts of Moose & Class::MOP.
319#
320# For now, the workaround is for ClassB to subclass ClassA _and then_
321# apply metaclass roles to its metaclass.
1341f10c 322sub _fix_metaclass_incompatability {
323 my ($self, @superclasses) = @_;
abe60f2e 324
4c598161 325 my $self_meta_name = ref($self);
326
1341f10c 327 foreach my $super (@superclasses) {
328 # don't bother if it does not have a meta.
abe60f2e 329 my $super_meta = Class::MOP::Class->initialize($super) or next;
330 next unless $super_meta->isa("Class::MOP::Class");
fa411d22 331
ac2dc464 332 # get the name, make sure we take
8ecb1fa0 333 # immutable classes into account
a43804a5 334 my $super_meta_name
abe60f2e 335 = $super_meta->is_immutable
336 ? $super_meta->get_mutable_metaclass_name
337 : ref($super_meta);
fa411d22 338
a43804a5 339 next if
340 # if our metaclass is compatible
fa411d22 341 $self->isa($super_meta_name)
342 and
a43804a5 343 # and our instance metaclass is also compatible then no
344 # fixes are needed
abe60f2e 345 $self->instance_metaclass->isa( $super_meta->instance_metaclass );
a43804a5 346
4c598161 347 if ( $super_meta->isa($self_meta_name) ) {
348 $self->_require_pristine_to_reinitialize;
349
350 $self = $super_meta->reinitialize(
351 $self->name,
352 attribute_metaclass => $super_meta->attribute_metaclass,
353 method_metaclass => $super_meta->method_metaclass,
354 instance_metaclass => $super_meta->instance_metaclass,
355 );
a43804a5 356
4c598161 357 $self->$_( $super_meta->$_ )
358 for qw( constructor_class destructor_class );
359 }
360 elsif ( __difference_is_roles_only( $self, $super_meta ) ) {
361 $self->_require_pristine_to_reinitialize;
362
363 my @roles = map { $_->name } @{$self->meta->roles};
364
365 $self = $super_meta->reinitialize(
366 $self->name,
367 attribute_metaclass => $super_meta->attribute_metaclass,
368 method_metaclass => $super_meta->method_metaclass,
369 instance_metaclass => $super_meta->instance_metaclass,
370 );
371
372 $self = Moose::Util::MetaRole::apply_metaclass_roles(
373 for_class => $self->name,
374 metaclass_roles => \@roles,
375 );
1341f10c 376 }
4c598161 377 }
b15c3ddb 378
4c598161 379 return $self;
380}
381
382sub _require_pristine_to_reinitialize {
383 my $self = shift;
384
385 return if $self->is_pristine;
386
387 confess "Not reinitializing metaclass for "
388 . $self->name
389 . ", it isn't pristine";
390}
391
392# This stuff is called as functions because while it operates on
393# metaclasses, it might get a Class::MOP::Class as opposed to a
394# Moose::Meta::Class.
395sub __difference_is_roles_only {
396 my ( $meta1, $meta2 ) = @_;
397
398 return
399 unless $meta1->meta->can('does_role')
400 || $meta2->meta->can('does_role');
401
402 return
403 if __arrays_differ(
404 __methods_excluding_roles( $meta1->meta ),
405 __methods_excluding_roles( $meta2->meta )
406 );
407
408 return
409 if __arrays_differ(
410 __attr_excluding_roles( $meta1->meta ),
411 __attr_excluding_roles( $meta2->meta )
b15c3ddb 412 );
4c598161 413
414 return 1;
415}
416
417sub __arrays_differ {
418 my ( $arr1, $arr2 ) = @_;
419
420 my %arr1_vals = map { $_ => 1 } @{$arr1};
421 delete @arr1_vals{ @{$arr2} };
422
423 return keys %arr1_vals ? 1 : 0;
424}
425
426sub __methods_excluding_roles {
427 my $meta = shift;
428
429 my %map = map { $_->name => $_ } $meta->get_all_methods;
430
431 delete $map{meta};
432
433 return values %map unless $meta->can('roles') && $meta->roles;
434
435 for my $role ( @{$meta->roles} ) {
436 for my $role_meth ( values %{$role->get_method_map} ) {
437 next if $role_meth->name eq 'meta';
438
439 my $meta_meth = $map{ $role_meth->name };
440
441 next unless $meta_meth;
442 next unless $meta_meth->body eq $role_meth->body;
443
444 delete $map{ $role_meth->name };
445 }
446
447 for my $attr ( grep { defined } map { $meta->get_attribute($_) } $role->get_attribute_list ) {
448 delete @map{ map { $_->name } @{$attr->associated_methods} };
449 }
1341f10c 450 }
a43804a5 451
4c598161 452 return [ values %map ];
453}
454
455sub __attr_excluding_roles {
456 my $meta = shift;
457
458 my %map = map { $_->name => $_ } $meta->get_all_attributes;
459
460 return values %map unless $meta->can('roles') && $meta->roles;
461
462 for my $role ( @{$meta->roles} ) {
463 delete @map{ $role->get_attribute_list };
464 }
465
466 return [ values %map ];
1341f10c 467}
468
d7d8a8c7 469# NOTE:
d9bb6c63 470# this was crap anyway, see
471# Moose::Util::apply_all_roles
d7d8a8c7 472# instead
4498537c 473sub _apply_all_roles {
547dda77 474 Carp::croak 'DEPRECATED: use Moose::Util::apply_all_roles($meta, @roles) instead'
4498537c 475}
1341f10c 476
477sub _process_attribute {
a3738e5b 478 my ( $self, $name, @args ) = @_;
7e59b803 479
480 @args = %{$args[0]} if scalar @args == 1 && ref($args[0]) eq 'HASH';
d9bb6c63 481
1341f10c 482 if ($name =~ /^\+(.*)/) {
7e59b803 483 return $self->_process_inherited_attribute($1, @args);
1341f10c 484 }
485 else {
7e59b803 486 return $self->_process_new_attribute($name, @args);
487 }
488}
489
490sub _process_new_attribute {
491 my ( $self, $name, @args ) = @_;
7e59b803 492
d5c30e52 493 $self->attribute_metaclass->interpolate_class_and_new($name, @args);
1341f10c 494}
495
496sub _process_inherited_attribute {
497 my ($self, $attr_name, %options) = @_;
498 my $inherited_attr = $self->find_attribute_by_name($attr_name);
499 (defined $inherited_attr)
500 || confess "Could not find an attribute by the name of '$attr_name' to inherit from";
1341f10c 501 if ($inherited_attr->isa('Moose::Meta::Attribute')) {
d7d8a8c7 502 return $inherited_attr->clone_and_inherit_options(%options);
1341f10c 503 }
504 else {
505 # NOTE:
506 # kind of a kludge to handle Class::MOP::Attributes
d7d8a8c7 507 return $inherited_attr->Moose::Meta::Attribute::clone_and_inherit_options(%options);
ac2dc464 508 }
1341f10c 509}
510
5cf3dbcf 511## -------------------------------------------------
512
513use Moose::Meta::Method::Constructor;
1f779926 514use Moose::Meta::Method::Destructor;
5cf3dbcf 515
ac2dc464 516# This could be done by using SUPER and altering ->options
517# I am keeping it this way to make it more explicit.
518sub create_immutable_transformer {
519 my $self = shift;
520 my $class = Class::MOP::Immutable->new($self, {
521 read_only => [qw/superclasses/],
522 cannot_call => [qw/
523 add_method
524 alias_method
525 remove_method
526 add_attribute
527 remove_attribute
ac2dc464 528 remove_package_symbol
529 add_role
530 /],
531 memoize => {
532 class_precedence_list => 'ARRAY',
723a5102 533 linearized_isa => 'ARRAY', # FIXME perl 5.10 memoizes this on its own, no need?
534 get_all_methods => 'ARRAY',
535 #get_all_attributes => 'ARRAY', # it's an alias, no need, but maybe in the future
ac2dc464 536 compute_all_applicable_attributes => 'ARRAY',
537 get_meta_instance => 'SCALAR',
538 get_method_map => 'SCALAR',
ac2dc464 539 calculate_all_roles => 'ARRAY',
8453c358 540 },
541 # NOTE:
542 # this is ugly, but so are typeglobs,
543 # so whattayahgonnadoboutit
544 # - SL
545 wrapped => {
546 add_package_symbol => sub {
547 my $original = shift;
548 confess "Cannot add package symbols to an immutable metaclass"
549 unless (caller(2))[3] eq 'Class::MOP::Package::get_package_symbol';
550 goto $original->body;
551 },
552 },
ac2dc464 553 });
554 return $class;
555}
556
557sub make_immutable {
558 my $self = shift;
559 $self->SUPER::make_immutable
560 (
231be3be 561 constructor_class => $self->constructor_class,
562 destructor_class => $self->destructor_class,
ac2dc464 563 inline_destructor => 1,
564 # NOTE:
565 # no need to do this,
566 # Moose always does it
567 inline_accessors => 0,
568 @_,
569 );
5cf3dbcf 570}
571
c0e30cf5 5721;
573
574__END__
575
576=pod
577
578=head1 NAME
579
e522431d 580Moose::Meta::Class - The Moose metaclass
c0e30cf5 581
c0e30cf5 582=head1 DESCRIPTION
583
ac2dc464 584This is a subclass of L<Class::MOP::Class> with Moose specific
e522431d 585extensions.
586
ac2dc464 587For the most part, the only time you will ever encounter an
588instance of this class is if you are doing some serious deep
589introspection. To really understand this class, you need to refer
6ba6d68c 590to the L<Class::MOP::Class> documentation.
591
c0e30cf5 592=head1 METHODS
593
594=over 4
595
590868a3 596=item B<initialize>
597
61bdd94f 598=item B<create>
599
17594769 600Overrides original to accept a list of roles to apply to
61bdd94f 601the created class.
602
17594769 603 my $metaclass = Moose::Meta::Class->create( 'New::Class', roles => [...] );
604
605=item B<create_anon_class>
606
607Overrides original to support roles and caching.
608
609 my $metaclass = Moose::Meta::Class->create_anon_class(
610 superclasses => ['Foo'],
611 roles => [qw/Some Roles Go Here/],
612 cache => 1,
613 );
614
5cf3dbcf 615=item B<make_immutable>
616
ac2dc464 617Override original to add default options for inlining destructor
618and altering the Constructor metaclass.
619
620=item B<create_immutable_transformer>
621
622Override original to lock C<add_role> and memoize C<calculate_all_roles>
623
65e14c86 624=item B<new_object>
625
626We override this method to support the C<trigger> attribute option.
627
a15dff8d 628=item B<construct_instance>
629
ac2dc464 630This provides some Moose specific extensions to this method, you
631almost never call this method directly unless you really know what
632you are doing.
6ba6d68c 633
634This method makes sure to handle the moose weak-ref, type-constraint
ac2dc464 635and type coercion features.
ef1d5f4b 636
093b12c2 637=item B<get_method_map>
e9ec68d6 638
ac2dc464 639This accommodates Moose::Meta::Role::Method instances, which are
640aliased, instead of added, but still need to be counted as valid
e9ec68d6 641methods.
642
78cd1d3b 643=item B<add_override_method_modifier ($name, $method)>
644
ac2dc464 645This will create an C<override> method modifier for you, and install
02a0fb52 646it in the package.
647
78cd1d3b 648=item B<add_augment_method_modifier ($name, $method)>
649
ac2dc464 650This will create an C<augment> method modifier for you, and install
02a0fb52 651it in the package.
652
2b14ac61 653=item B<calculate_all_roles>
654
ef333f17 655=item B<roles>
656
ac2dc464 657This will return an array of C<Moose::Meta::Role> instances which are
02a0fb52 658attached to this class.
659
ef333f17 660=item B<add_role ($role)>
661
ac2dc464 662This takes an instance of C<Moose::Meta::Role> in C<$role>, and adds it
02a0fb52 663to the list of associated roles.
664
ef333f17 665=item B<does_role ($role_name)>
666
ac2dc464 667This will test if this class C<does> a given C<$role_name>. It will
668not only check it's local roles, but ask them as well in order to
02a0fb52 669cascade down the role hierarchy.
670
d79e62fd 671=item B<excludes_role ($role_name)>
672
ac2dc464 673This will test if this class C<excludes> a given C<$role_name>. It will
674not only check it's local roles, but ask them as well in order to
d79e62fd 675cascade down the role hierarchy.
676
9e93dd19 677=item B<add_attribute ($attr_name, %params|$params)>
4e848edb 678
9e93dd19 679This method does the same thing as L<Class::MOP::Class::add_attribute>, but adds
680support for taking the C<$params> as a HASH ref.
ac1ef2f9 681
c0e30cf5 682=back
683
684=head1 BUGS
685
ac2dc464 686All complex software has bugs lurking in it, and this module is no
c0e30cf5 687exception. If you find a bug please either email me, or add the bug
688to cpan-RT.
689
c0e30cf5 690=head1 AUTHOR
691
692Stevan Little E<lt>stevan@iinteractive.comE<gt>
693
694=head1 COPYRIGHT AND LICENSE
695
778db3ac 696Copyright 2006-2008 by Infinity Interactive, Inc.
c0e30cf5 697
698L<http://www.iinteractive.com>
699
700This library is free software; you can redistribute it and/or modify
ac2dc464 701it under the same terms as Perl itself.
c0e30cf5 702
8a7a9c53 703=cut
1a563243 704