/[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 940 by dpavlin, Tue Jan 6 13:18:43 2009 UTC
# Line 1  Line 1 
1  package Frey::Pipe;  package Frey::Pipe;
2  use Moose;  use Moose;
3  extends 'Frey';  extends 'Frey::Class::Loader';
4  with 'Frey::Web';  with 'Frey::Web';
5    
6    use lib 'lib';
7  use Frey::Action;  use Frey::Action;
8    
9  =head1 DESCRIPTION  =head1 DESCRIPTION
# Line 11  Shell pipes for structured data Line 12  Shell pipes for structured data
12    
13  =head1 EXAMPLE  =head1 EXAMPLE
14    
15   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
16    
17  this will produce following code:  this will produce following code:
18    
19          Frey::Dumper->new( data =>          Frey::View::Dumper->new( data =>
20                  Frey::Feed->new( uri => 'http://blog.rot13.org/index.xml' )->as_data                  Frey::Feed->new( uri => 'http://blog.rot13.org/index.xml' )->as_data
21          )->as_markup          )->as_markup
22    
# Line 24  this will produce following code: Line 25  this will produce following code:
25  has pipe => (  has pipe => (
26          is => 'rw',          is => 'rw',
27          required => 1,          required => 1,
28          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',
29  );  );
30    
31    sub render_pipe { 'radio' };
32    
33  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
34    
35  sub as_markup {  sub as_markup {
# Line 35  sub as_markup { Line 38  sub as_markup {
38          my $out;          my $out;
39          my $pipe;          my $pipe;
40    
41          $self->title( ref($self) . ' | ' . $self->pipe );          $self->title( $self->pipe );
42    
43            my @parts;
44    
45          foreach my $part ( split(/\|/, $self->pipe ) ) {          foreach my $part ( split(/\|/, $self->pipe ) ) {
46                  warn "# part: '$part'";                  warn "# part: '$part'";
47                  if ( $part =~ m{^([^/]+)/([^\+\?]+)(.*)?$} ) {                  if ( $part =~ m{^([^/]+)/([^\+\?]+)(.*)?$} ) {
48                          my ( $class, $method, $args ) = ( $1, $2, $3 );                          my ( $class, $method, $args ) = ( $1, $2, $3 );
                         push @{ $self->status }, { $class => { method => $method, args => $args } };  
49                          my $params = $pipe;                          my $params = $pipe;
50                          $params = {} unless defined $params;                          $params = {} unless defined $params;
51                          if ( defined $args ) {                          if ( defined $args ) {
52                                  $args =~ s{^[\?\+\s]}{};                                  $args =~ s{^[\?\+\s]}{};
53                                  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 };  
54                                  map {                                  map {
55                                          my ( $name, $value ) = ( $1, $2 ) if m{^([^=]+)=(.+)$} || confess "can't parse '$_'";                                          my ( $name, $value ) = ( $1, $2 ) if m{^([^=]+)=(.+)$} || confess "can't parse '$_'";
56                                          $params->{$name} = $value;                                          $params->{$name} = $value;
# Line 58  sub as_markup { Line 61  sub as_markup {
61                          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
62    
63                          warn "# pipe $part" if $self->debug;                          warn "# pipe $part" if $self->debug;
64                          my $o = $class->new( %$default );                          my $o = $self->new_frey_class( $class, $default );
65    
66                            # XXX copy depends from parts of pipe
67                            if ( $o->can('depends') ) {
68                                    $o->depends;
69                                    my $current_head;
70                                    $current_head->{$_}++ foreach $self->head;
71                                    foreach ( $o->head ) {
72                                            next if $current_head->{$_}++;
73                                            $self->add_head( $_ );
74                                    }
75                            }
76    
77                          my $result = $o->$method;                          my $result = $o->$method;
78                          warn "# result ",length( $result ), " bytes ", ref($result);                          warn "# result ",length( $result ), " bytes ", ref($result);
79    
80                            my $current_status;
81                            $current_status->{$_}++ foreach $self->status;
82                            foreach ( $o->status ) {
83                                    next if $current_status->{$_}++;
84                                    $self->add_status( $_ );
85                                    warn "# pipe add_status: $_";
86                            }
87    
88                          $self->content_type( $o->content_type ) if $o->can('content_type');                          $self->content_type( $o->content_type ) if $o->can('content_type');
89    
90                          $out = $result;                          $out = $result;
# Line 72  sub as_markup { Line 95  sub as_markup {
95                  }                  }
96          }          }
97    
98          warn "# pipe ", $self->title;          $out = $self->error("$out not scalar" . $self->html_dump($out) ) if ref $out;
99    
100          return $out;          return $out;
101  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.26