/[Frey]/trunk/lib/Frey/Introspect.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/Frey/Introspect.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 308 by dpavlin, Wed Nov 5 19:13:01 2008 UTC revision 534 by dpavlin, Wed Nov 26 07:58:40 2008 UTC
# Line 8  use Data::Dump qw/dump/; Line 8  use Data::Dump qw/dump/;
8  use File::Slurp;  use File::Slurp;
9  use List::Util;  use List::Util;
10    
11    use PPI;
12    use PPI::HTML;
13    
14  use lib 'lib';  use lib 'lib';
15    
16  extends 'Frey::ClassLoader';  extends 'Frey::PPI';
17  with 'Frey::Web';  with 'Frey::Web';
18    
19  has 'class' => (  has 'class' => (
# Line 19  has 'class' => ( Line 22  has 'class' => (
22          required => 1,          required => 1,
23  );  );
24    
 has 'path' => (  
         is => 'rw',  
 );  
   
25  =head2 joose  =head2 joose
26    
27    my $js = $o->joose;    my $js = $o->joose;
# Line 95  sub joose { Line 94  sub joose {
94          my $path = "static/blib/$filename";          my $path = "static/blib/$filename";
95          write_file( $path, $out );          write_file( $path, $out );
96          warn "# created $path\n";          warn "# created $path\n";
         $self->path( $path );  
97    
98          return $out;          return $out;
99  }  }
100    
101  =head2 methods  sub as_markup {
   
   my @methods = $o->methods;  
   
 =cut  
   
 sub methods {  
         my $self = shift;  
   
         my ( $meta, $is_role ) = $self->class_meta;  
   
         my $attr;  
         $attr->{$_}++ foreach $meta->get_attribute_list;  
         my @methods = grep { ! defined($attr->{$_}) } $meta->get_method_list;  
         warn "# methods = ",dump( @methods ) if $self->debug;  
   
         return sort @methods;  
 }  
   
 =head1 OUTPUT GENERATION  
   
 =head2 markup  
   
   $o->markup;  
   
 =cut  
   
 sub markup {  
102          my ( $self ) = @_;          my ( $self ) = @_;
103    
104          $self->add_head( 'static/introspect.css' );          $self->add_head( 'static/introspect.css' );
# Line 136  sub markup { Line 107  sub markup {
107    
108          my $class = $self->class;          my $class = $self->class;
109    
110            my ( $superclasses, $roles ) = ( '<b>Role</b>', '' );
111            if ( ! $is_role ) {
112                    if ( $meta->superclasses ) {
113                            $superclasses = 'Superclasses: ' .
114                                    join(', ',
115                                            map {
116                                                    my $name = $_->meta->name;
117                                                    qq|<a class="frey-popdown" href="/$name">$name<code>| . $_->meta->dump(2) . qq|</code></a>|;
118                                            }
119                                            #grep { $_ ne 'Moose::Object' }
120                                            $meta->superclasses
121                                    );
122                    }
123            }
124    
125            my $role_method;
126            my $role_attribute;
127    
128            if ( $meta->can('roles') ) {
129                    my $role_nr = 1;
130                    $roles = join(' ',
131                            grep { ! m/\Q$class\E/ }        # skip me
132                            map {
133                                    my $name = $_->name;
134                                    $role_method->{    $_ }->{$name} = $role_nr foreach $_->get_method_list;
135                                    $role_attribute->{ $_ }->{$name} = $role_nr foreach $_->get_attribute_list;
136                                    qq|<a class="frey-popdown" href="/$name">$name<code>| . $name->meta->dump(2) . qq|</code></a><sup>| . $role_nr++ . qq|</sup>|;
137                            }
138                            $meta->calculate_all_roles
139                    );
140                    $roles = qq| with roles: $roles| if $roles;
141            }
142            warn "# role_method ",dump( $role_method );
143    
144          my @methods;          my @methods;
145          @methods = map { qq|<td class="m">$_</td>| } $self->methods;          @methods = map {
146                    my $name = $_;
147                    if ( $role_method->{$name} ) {
148                            my ( $role_name, $nr ) = each %{ $role_method->{$name} };
149                            $name .= qq|<sup title="$role_name">$nr</sup>|;
150                    }
151                    qq|<td class="m">$name</td>|
152            } $self->class_methods( $class );
153    
154          my @attributes;          my @attributes;
155          if ( $meta->get_attribute_list ) {          if ( $meta->get_attribute_list ) {
156          @attributes = map {                  @attributes = map {
157                          my $attr = $meta->get_attribute($_);                          my $name = $_;
158                            my $attr = $meta->get_attribute($name);
159                            confess "$class attribute $name isn't blessed ",dump( $attr ) unless blessed $attr;
160                            warn "## attr $name ref ",ref( $attr ) if $self->debug;
161                          my ( $before, $title, $after ) = ( '', '', '' );                          my ( $before, $title, $after ) = ( '', '', '' );
162                          ( $before, $title, $after ) = ( '<b>', ' title="required"', '</b>' ) if $attr->is_required;                          ( $before, $title, $after ) = ( '<b>', ' title="required"', '</b>' ) if $attr->can('is_required') && $attr->is_required;
 warn $attr->dump(3);  
163                          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/ ) {                          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/ ) {
164                                  my $getter;                                  my $getter;
165                                                                    
166                                  $getter = $check;                                  $getter = $check;
167                                  $getter =~ s/^has_//;                                  $getter =~ s/^has_//;
168                                                                    
169                                  if ( $attr->$check ) {                                  if ( $attr->can($check) && $attr->$check ) {
170                                          if ( $getter eq $check ) {                                          if ( $getter eq $check ) {
171                                                  $after .= "$check";                                                  $after .= "$check";
172                                          } else {                                          } else {
# Line 164  warn $attr->dump(3); Line 178  warn $attr->dump(3);
178                                  }                                  }
179                                  $after .= ' ';                                  $after .= ' ';
180                          }                          }
181                          my $type = $attr->has_type_constraint ? $attr->type_constraint->name : '';                          my $type = $attr->can('has_type_constraint') && $attr->has_type_constraint ? $attr->type_constraint->name : '';
182                          qq|<td class="a">$before $_</td><td class="t">$type</td><td>$after</td>|  
183                  } sort $meta->get_attribute_list                          if ( $role_attribute->{$name} ) {
184                                    my ( $role_name, $nr ) = each %{ $role_attribute->{$name} };
185                                    $name .= qq|<sup title="$role_name">$nr</sup>|;
186                            }
187    
188                            qq|<td class="a">$before $name</td><td class="t">$type</td><td>$after</td>|
189                    } $meta->get_attribute_list
190          }          }
191    
192          my $table = qq|<table class="frey-object-browser"><tr><th class="m">Methods</th><th class="a">Attributes</th><th>Type</th><th class="p">Properties</th></tr>|;          my $table = qq|<table class="frey-introspect"><tr><th class="m">Methods</th><th class="a">Attributes</th><th>Type</th><th class="p">Properties</th></tr>|;
193          while ( @methods || @attributes ) {          while ( @methods || @attributes ) {
194                  my ($m,$a) = ( shift @methods, shift @attributes );                  my ($m,$a) = ( shift @methods, shift @attributes );
195                  $m ||= '<td></td>';                  $m ||= '<td></td>';
# Line 178  warn $attr->dump(3); Line 198  warn $attr->dump(3);
198          }          }
199          $table .= qq|</table>|;          $table .= qq|</table>|;
200    
201          my ( $superclasses, $roles ) = ( '<b>Role</b>', '' );          my $pod = Frey::Pod->new( class => $class )->as_markup;
202          if ( ! $is_role ) {          $pod = $pod->{body} if ref($pod);
                 if ( $meta->superclasses ) {  
                         $superclasses = 'Superclasses: ' .  
                                 join(', ',  
                                         map {  
                                                 my $name = $_->meta->name;  
                                                 qq|<a class="frey-popdown" href="/$name">$name<code>| . $_->meta->dump(2) . qq|</code></a>|;  
                                         }  
                                         #grep { $_ ne 'Moose::Object' }  
                                         $meta->superclasses  
                                 );  
                 }  
         }  
203    
204          if ( $meta->can('roles') ) {          my $path = $self->class_path( $class );
205                  $roles = join(', ',          my $Document = PPI::Document->new( $path );
                         grep { ! m/\Q$class\E/ }        # skip me  
                         map {  
                                 my $name = $_->name;  
                                 qq|<a class="frey-popdown" href="/$name">$name<code>| . $name->meta->dump(2) . qq|</code></a>|;  
                         }  
                         $meta->calculate_all_roles  
                 );  
                 $roles = " with roles: $roles" if $roles;  
         }  
206    
207          my $pod = Frey::Pod->new( class => $class )->markup;          # Create a reusable syntax highlighter
208            my $Highlight = PPI::HTML->new(
209                    line_numbers => 1,
210    #               page => 1,
211    #               colors => {
212    #                       line_number => '#CCCCCC',
213    #                       number      => '#990000',
214    #               },
215            );
216    
217          use Frey::Run;          # Spit out the HTML
218          my $execute = join("\n", map { qq|<a href="/$class/$_">$_</a>| } grep { $class->can($_) } Frey::Run->execute );          my $source = $Highlight->html( $Document );
         $execute = " execute: $execute" if $execute;  
219    
220          my $html = $self->page(          $source =~ s{(<span.*?line_number.*>\s*)(\d+)(:\s*</span>)}{$1<a target="editor" href="/editor+$path+$2">$2</a>$3}g;
                 title => "Introspect $class",  
                 body => qq|<h1>$class</h1>|  
                         . qq|$superclasses\n$roles\n$execute\n|  
                         . ( $pod ? qq|<a href="#___top" title="Skip to POD" style="font-size: 80%; color: #aaa;">&darr;pod&darr</a>| : '' )  
                         . qq|$table\n$pod|  
221    
222            # strip page html
223    #       $source =~ s{^.*<body[^>]+>}{}s;
224    #       $source =~ s{</body.*$}{}s;
225    
226            my $runnable = join("\n",
227                    map {
228                            qq|<a target="$class" href="/$class/$_">$_</a>|
229                    } $self->class_runnable( $class )
230          );          );
231            $runnable = " runnable: $runnable" if $runnable;
232    
233          return $html;          $self->title( $class );
234    
235            my $has_tests = '';
236            if ( my @tests = $self->has_tests ) {
237                    $has_tests =
238                    '<br/>test' . ( $#tests > 0 ? 's' : '' ) . ': ' .      
239                    join("\n", map {
240                            qq|<a target="$class" href="/Frey::Test::Runner/as_markup?test=$_">$_</a>|
241                    } @tests );
242            }
243    
244            return join("\n",
245                    qq|<h1>$class</h1>|,
246                    qq|<div class="frey-introspect">$superclasses\n$roles\n$runnable\n|,
247                    $pod    ? qq|<a class="frey-skip" href="#___top" title="Skip to POD"    >pod</a>|    : '',
248                    $source ? qq|<a class="frey-skip" href="#source" title="Skip to source" >source</a>| : '',
249                    $has_tests,
250                    qq|$table\n$pod\n</div>\n|,
251                    qq|<h1>Source</h1><a name="source"></a><div class="frey-source">$source</div>|,
252            );
253  }  }
254    
255  =head1 SEE ALSO  =head1 SEE ALSO

Legend:
Removed from v.308  
changed lines
  Added in v.534

  ViewVC Help
Powered by ViewVC 1.1.26