/[Frey]/trunk/lib/Frey/Pipe.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/Pipe.pm

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

revision 455 by dpavlin, Wed Nov 19 15:28:23 2008 UTC revision 519 by dpavlin, Tue Nov 25 17:15:18 2008 UTC
# Line 1  Line 1 
1  package Frey::Pipe;  package Frey::Pipe;
2  use Moose;  use Moose;
3  extends 'Frey';  extends 'Frey::ClassLoader';
4  with 'Frey::Web';  with 'Frey::Web';
5    
6  use Frey::Action;  use Frey::Action;
# Line 11  Shell pipes for structured data Line 11  Shell pipes for structured data
11    
12  =head1 EXAMPLE  =head1 EXAMPLE
13    
14   Frey::Feed/as_data + uri=http://blog.rot13.org/index.xml | Frey::Dumper/as_markup   Frey::Feed/as_data + uri=http://blog.rot13.org/index.xml | Frey::View::Dumper/as_markup
15    
16  this will produce following code:  this will produce following code:
17    
18          Frey::Dumper->new( data =>          Frey::View::Dumper->new( data =>
19                  Frey::Feed->new( uri => 'http://blog.rot13.org/index.xml' )->as_data                  Frey::Feed->new( uri => 'http://blog.rot13.org/index.xml' )->as_data
20          )->as_markup          )->as_markup
21    
# Line 24  this will produce following code: Line 24  this will produce following code:
24  has pipe => (  has pipe => (
25          is => 'rw',          is => 'rw',
26          required => 1,          required => 1,
27          default => 'Frey::Feed/as_data+uri=http://blog.rot13.org/index.xml|Frey::Dumper/as_markup',          default => 'Frey::Feed/as_data+uri=http://blog.rot13.org/index.xml|Frey::View::Dumper/as_markup',
28  );  );
29    
30  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
# Line 35  sub as_markup { Line 35  sub as_markup {
35          my $out;          my $out;
36          my $pipe;          my $pipe;
37    
38          $self->title( ref($self) . ' | ' . $self->pipe );          $self->title( $self->pipe );
39    
40            my @parts;
41    
42          foreach my $part ( split(/\|/, $self->pipe ) ) {          foreach my $part ( split(/\|/, $self->pipe ) ) {
43                  warn "# part: '$part'";                  warn "# part: '$part'";
44                  if ( $part =~ m{^([^/]+)/([^\+\?]+)(.*)?$} ) {                  if ( $part =~ m{^([^/]+)/([^\+\?]+)(.*)?$} ) {
45                          my ( $class, $method, $args ) = ( $1, $2, $3 );                          my ( $class, $method, $args ) = ( $1, $2, $3 );
                         push @{ $self->status }, { $class => { method => $method, args => $args } };  
46                          my $params = $pipe;                          my $params = $pipe;
47                          $params = {} unless defined $params;                          $params = {} unless defined $params;
48                          if ( defined $args ) {                          if ( defined $args ) {
49                                  $args =~ s{^[\?\+\s]}{};                                  $args =~ s{^[\?\+\s]}{};
50                                  warn "# class $class method $method args '$args'", $pipe ? " pipe args " . join(',',keys %$pipe) : '' if $self->debug;                                  warn "# class $class method $method args '$args'", $pipe ? " pipe args " . join(',',keys %$pipe) : '' if $self->debug;
                                 push @{ $self->status }, { $class =>$args };  
51                                  map {                                  map {
52                                          my ( $name, $value ) = ( $1, $2 ) if m{^([^=]+)=(.+)$} || confess "can't parse '$_'";                                          my ( $name, $value ) = ( $1, $2 ) if m{^([^=]+)=(.+)$} || confess "can't parse '$_'";
53                                          $params->{$name} = $value;                                          $params->{$name} = $value;
# Line 58  sub as_markup { Line 58  sub as_markup {
58                          warn "$class need more params than ",dump( $default ) if $html && $self->debug; # FIXME replace with query                          warn "$class need more params than ",dump( $default ) if $html && $self->debug; # FIXME replace with query
59    
60                          warn "# pipe $part" if $self->debug;                          warn "# pipe $part" if $self->debug;
61                          my $o = $class->new( %$default );                          my $o = $self->new_frey_class( $class, $default );
62                          my $result = $o->$method;                          my $result = $o->$method;
63                          warn "# result ",length( $result ), " bytes ", ref($result);                          warn "# result ",length( $result ), " bytes ", ref($result);
64    
65                            $self->add_status({ $part => { $class => { method => $method, args => $args } } });
66    
67                          $self->content_type( $o->content_type ) if $o->can('content_type');                          $self->content_type( $o->content_type ) if $o->can('content_type');
68    
69                          $out = $result;                          $out = $result;
# Line 72  sub as_markup { Line 74  sub as_markup {
74                  }                  }
75          }          }
76    
         warn "# pipe ", $self->title;  
   
77          return $out;          return $out;
78  }  }
79    

Legend:
Removed from v.455  
changed lines
  Added in v.519

  ViewVC Help
Powered by ViewVC 1.1.26