--- trunk/lib/Frey/Introspect.pm 2008/11/20 10:55:56 471 +++ trunk/lib/Frey/Introspect.pm 2008/12/01 23:28:27 662 @@ -11,10 +11,13 @@ use PPI; use PPI::HTML; +use Frey::Pod; + use lib 'lib'; -extends 'Frey::ClassLoader'; +extends 'Frey::PPI'; with 'Frey::Web'; +with 'Frey::Storage'; has 'class' => ( is => 'rw', @@ -107,6 +110,10 @@ my $class = $self->class; + my $introspect_path = "var/introspect/$class.yaml"; + $self->mkbasepath( $introspect_path ); + my $introspect = $self->load( $introspect_path ); + my ( $superclasses, $roles ) = ( 'Role', '' ); if ( ! $is_role ) { if ( $meta->superclasses ) { @@ -114,7 +121,8 @@ join(', ', map { my $name = $_->meta->name; - qq|$name| . $_->meta->dump(2) . qq||; + $introspect->{superclass}->{$name}++; + $self->dropdown( $name, $_->meta ) } #grep { $_ ne 'Moose::Object' } $meta->superclasses @@ -131,9 +139,10 @@ grep { ! m/\Q$class\E/ } # skip me map { my $name = $_->name; + $introspect->{role}->{$name}++; $role_method->{ $_ }->{$name} = $role_nr foreach $_->get_method_list; $role_attribute->{ $_ }->{$name} = $role_nr foreach $_->get_attribute_list; - qq|$name| . $name->meta->dump(2) . qq|| . $role_nr++ . qq||; + $self->dropdown( $name, $name->meta ) . qq|| . $role_nr++ . qq||; } $meta->calculate_all_roles ); @@ -144,6 +153,7 @@ my @methods; @methods = map { my $name = $_; + $introspect->{method}->{$name}++; if ( $role_method->{$name} ) { my ( $role_name, $nr ) = each %{ $role_method->{$name} }; $name .= qq|$nr|; @@ -155,12 +165,17 @@ if ( $meta->get_attribute_list ) { @attributes = map { my $name = $_; + $introspect->{attribute}->{$name}++; + my $html_name = $name; my $attr = $meta->get_attribute($name); confess "$class attribute $name isn't blessed ",dump( $attr ) unless blessed $attr; warn "## attr $name ref ",ref( $attr ) if $self->debug; - my ( $before, $title, $after ) = ( '', '', '' ); - ( $before, $title, $after ) = ( '', ' title="required"', '' ) if $attr->can('is_required') && $attr->is_required; - foreach my $check ( qw/has_type_constraint has_handles is_weak_ref is_required is_lazy should_coerce should_auto_deref has_default has_trigger has_documentation has_applied_traits/ ) { + + my ( $title, $properties ) = ( '', '' ); + ( $html_name, $title ) = ( "$name", ' title="required"' ) + if $attr->can('is_required') && $attr->is_required; + + foreach my $check ( qw/has_type_constraint has_handles is_weak_ref is_required is_lazy should_coerce should_auto_deref has_default has_trigger has_applied_traits/ ) { my $getter; $getter = $check; @@ -168,15 +183,13 @@ if ( $attr->can($check) && $attr->$check ) { if ( $getter eq $check ) { - $after .= "$check"; + $properties .= "$check"; } else { - $after .= qq{$check}; - # we need dump here instead of $attr->$getter->dump because default can return scalar - $after .= '' . dump( $attr->$getter ) . '' if $getter ne $check; - $after .= ''; + # we need our dump here instead of $attr->$getter->dump because default can return scalar + $properties .= $self->dropdown( $check, $attr->$getter ); } } - $after .= ' '; + $properties .= ' '; } my $type = $attr->can('has_type_constraint') && $attr->has_type_constraint ? $attr->type_constraint->name : ''; @@ -185,7 +198,9 @@ $name .= qq|$nr|; } - qq|$before $name$type$after| + eval { $properties = $attr->documentation . ' ' . $properties }; + + qq|$html_name$type$properties| } $meta->get_attribute_list } @@ -198,7 +213,7 @@ } $table .= qq||; - my $pod = Frey::Pod->new( class => $class )->as_markup; + my $pod = Frey::Pod->new( class => $class, request_url => $self->request_url )->as_markup; $pod = $pod->{body} if ref($pod); my $path = $self->class_path( $class ); @@ -223,21 +238,36 @@ # $source =~ s{^.*]+>}{}s; # $source =~ s{$_| + $introspect->{runnable}->{$_}++; + my $short = $_; + $short =~ s{_as_(?:markup|data|sponge)$}{}; + qq|$short| } $self->class_runnable( $class ) ); $runnable = " runnable: $runnable" if $runnable; + $self->store( $introspect_path, $introspect ); + $self->title( $class ); + my $has_tests = ''; + my @tests = grep { defined $_ } $self->has_tests; + if ( @tests ) { + $has_tests = + '
test' . ( $#tests > 0 ? 's' : '' ) . ': ' . + join("\n", map { + qq|$_| + } @tests ); + } + return join("\n", qq|

$class

|, qq|
$superclasses\n$roles\n$runnable\n|, $pod ? qq|pod| : '', $source ? qq|source| : '', + $has_tests, qq|$table\n$pod\n
\n|, qq|

Source

$source
|, );