documentation for WSA to get started
[catagits/Web-Simple.git] / lib / Web / Simple / Application.pm
index d52dc78..05873c5 100644 (file)
 package Web::Simple::Application;
 
-use strict;
-use warnings FATAL => 'all';
+use Moo;
 
-{
-  package Web::Simple::Dispatcher;
-
-  sub _is_dispatcher {
-    ref($_[1])
-      and "$_[1]" =~ /\w+=[A-Z]/
-      and $_[1]->isa(__PACKAGE__);
-  }
-
-  sub next {
-    @_ > 1
-      ? $_[0]->{next} = $_[1]
-      : shift->{next}
-  }
-
-  sub set_next {
-    $_[0]->{next} = $_[1];
-    $_[0]
-  }
-
-  sub dispatch {
-    my ($self, $env, @args) = @_;
-    my $next = $self->_has_match ? $self->next : undef;
-    if (my ($env_delta, @match) = $self->_match_against($env)) {
-      if (my ($result) = $self->_execute_with(@args, @match, $env)) {
-        if ($self->_is_dispatcher($result)) {
-          $next = $result->set_next($next);
-          $env = { %$env, %$env_delta };
-        } else {
-          return $result;
-        }
-      }
-    }
-    return () unless $next;
-    return $next->dispatch($env, @args);
-  }
-
-  sub call {
-    @_ > 1
-      ? $_[0]->{call} = $_[1]
-      : shift->{call}
-  }
-
-  sub _has_match { $_[0]->{match} }
-
-  sub _match_against {
-     return ({}, $_[1]) unless $_[0]->{match};
-     $_[0]->{match}->($_[1]);
-  }
-
-  sub _execute_with {
-    $_[0]->{call}->(@_);
-  }
-}
-
-sub new {
-  my ($class, $data) = @_;
-  my $config = { $class->_default_config, %{($data||{})->{config}||{}} };
-  my $new = bless({ config => $config }, $class);
-  $new->BUILDALL($data);
-  $new;
-}
-
-sub BUILDALL {
-  my ($self, $data) = @_;
-  my $targ = ref($self);
-  my @targ;
-  while ($targ->isa(__PACKAGE__) and $targ ne __PACKAGE__) {
-    push(@targ, "${targ}::BUILD")
-      if do { no strict 'refs'; defined *{"${targ}::BUILD"}{CODE} };
-    my @targ_isa = do { no strict 'refs'; @{"${targ}::ISA"} };
-    die "${targ} uses Multiple Inheritance: ISA is: ".join ', ', @targ_isa
-      if @targ_isa > 1;
-    $targ = $targ_isa[0];
-  }
-  $self->$_($data) for reverse @targ;
-  return;
-}
-
-sub _setup_default_config {
-  my $class = shift;
-  {
-    no strict 'refs';
-    if (${"${class}::_default_config"}{CODE}) {
-      $class->_cannot_call_twice('_setup_default_config', 'default_config');
-    }
+has 'config' => (
+  is => 'ro',
+  default => sub {
+    my ($self) = @_;
+    +{ $self->default_config }
+  },
+  trigger => sub {
+    my ($self, $value) = @_;
+    my %default = $self->default_config;
+    my @not = grep !exists $value->{$_}, keys %default;
+    @{$value}{@not} = @default{@not};
   }
-  my @defaults = (@_, $class->_default_config);
-  {
-    no strict 'refs';
-    *{"${class}::_default_config"} = sub { @defaults };
-  }
-}
-
-sub _default_config { () }
-
-sub config {
-  shift->{config};
-}
-
-sub _construct_response_filter {
-  my $code = $_[1];
-  $_[0]->_build_dispatcher({
-    call => sub {
-      my ($d, $self, $env) = (shift, shift, shift);
-      my @next = $d->next->dispatch($env, $self, @_);
-      return unless @next;
-      $self->_run_with_self($code, @next);
-    },
-  });
-}
-
-sub _construct_redispatch {
-  my ($self, $new_path) = @_;
-  $self->_build_dispatcher({
-    call => sub {
-      shift;
-      my ($self, $env) = @_;
-      $self->_dispatch({ %{$env}, PATH_INFO => $new_path })
-    }
-  })
-}
-
-sub _build_dispatch_parser {
-  require Web::Simple::DispatchParser;
-  return Web::Simple::DispatchParser->new;
-}
+);
 
-sub _cannot_call_twice {
-  my ($class, $method, $sub) = @_;
-  my $error = "Cannot call ${method} twice for ${class}";
-  if ($sub) {
-    $error .= " - did you call Web::Simple's ${sub} export twice?";
-  }
-  die $error;
-}
+sub default_config { () }
 
-sub _setup_dispatcher {
-  my ($class, $dispatch_specs) = @_;
-  {
-    no strict 'refs';
-    if (${"${class}::_dispatcher"}{CODE}) {
-      $class->_cannot_call_twice('_setup_dispatcher', 'dispatch');
-    }
-  }
-  my $chain = $class->_build_dispatch_chain(
-    [ @$dispatch_specs, $class->_build_final_dispatcher ]
-  );
-  {
-    no strict 'refs';
-    *{"${class}::_dispatcher"} = sub { $chain };
-  }
-}
-
-sub _construct_subdispatch {
-  my ($class, $dispatch_spec) = @_;
-  my $disp = $class->_build_dispatcher_from_spec($dispatch_spec);
-  my $call = $disp->call;
-  $disp->call(sub {
-    my @res = $call->(@_);
-    return unless @res;
-    my $chain = $class->_build_dispatch_chain(@res);
-    return $class->_build_dispatcher({
-      call => sub {
-        my ($d, $self, $env) = (shift, shift, shift); pop; # lose trailing $env
-        return $chain->dispatch($env, $self, @_);
-      }
-    });
-  });
-  return $class->_build_dispatcher({
-    call => sub {
-      my ($d, $self, $env) = (shift, shift, shift); pop; # lose trailing $env
-      my @sub = $disp->dispatch($env, $self, @_);
-      return @sub if @sub;
-      return unless (my $next = $d->next);
-      return $next->dispatch($env, $self, @_);
-    },
-  });
-}
+has '_dispatcher' => (is => 'lazy');
 
-sub _build_dispatcher_from_spec {
-  my ($class, $spec) = @_;
-  return $spec unless ref($spec) eq 'CODE';
-  my $proto = prototype $spec;
-  my $parser = $class->_build_dispatch_parser;
-  my $matcher = (
-    defined($proto) && length($proto)
-      ? $parser->parse_dispatch_specification($proto)
-      : sub { ({}, $_[1]) }
+sub _build__dispatcher {
+  my $self = shift;
+  require Web::Dispatch;
+  require Web::Simple::DispatchNode;
+  my $final = $self->_build_final_dispatcher;
+  Web::Dispatch->new(
+    app => sub { $self->dispatch_request(@_), $final },
+    node_class => 'Web::Simple::DispatchNode',
+    node_args => { app_object => $self }
   );
-  return $class->_build_dispatcher({
-    match => $matcher,
-    call => sub { shift;
-      shift->_run_with_self($spec, @_)
-    },
-  });
-}
-
-sub _build_dispatch_chain {
-  my ($class, $dispatch_specs) = @_;
-  my ($root, $last);
-  foreach my $dispatch_spec (@$dispatch_specs) {
-    my $new = $class->_build_dispatcher_from_spec($dispatch_spec);
-    $root ||= $new;
-    $last = $last ? $last->next($new) : $new;
-  }
-  return $root;
-}
-
-sub _build_dispatcher {
-  bless($_[1], 'Web::Simple::Dispatcher');
 }
 
 sub _build_final_dispatcher {
-  shift->_build_dispatcher({
-    call => sub {
-      [
-        404, [ 'Content-type', 'text/plain' ],
-        [ 'Not found' ]
-      ]
-    }
-  })
-}
-
-sub _dispatch {
-  my ($self, $env) = @_;
-  $self->_dispatcher->dispatch($env, $self);
-}
-
-sub _run_with_self {
-  my ($self, $run, @args) = @_;
-  my $class = ref($self);
-  no strict 'refs';
-  local *{"${class}::self"} = \$self;
-  $self->$run(@args);
+  [ 404, [ 'Content-type', 'text/plain' ], [ 'Not found' ] ]
 }
 
 sub run_if_script {
-  # ->as_psgi_app is true for require() but also works for plackup
-  return $_[0]->as_psgi_app if caller(1);
+  # ->to_psgi_app is true for require() but also works for plackup
+  return $_[0]->to_psgi_app if caller(1);
   my $self = ref($_[0]) ? $_[0] : $_[0]->new;
   $self->run(@_);
 }
@@ -250,18 +46,18 @@ sub run_if_script {
 sub _run_cgi {
   my $self = shift;
   require Plack::Server::CGI;
-  Plack::Server::CGI->run($self->as_psgi_app);
+  Plack::Server::CGI->run($self->to_psgi_app);
 }
 
 sub _run_fcgi {
   my $self = shift;
   require Plack::Server::FCGI;
-  Plack::Server::FCGI->run($self->as_psgi_app);
+  Plack::Server::FCGI->run($self->to_psgi_app);
 }
 
-sub as_psgi_app {
+sub to_psgi_app {
   my $self = ref($_[0]) ? $_[0] : $_[0]->new;
-  sub { $self->_dispatch(@_) };
+  $self->_dispatcher->to_app;
 }
 
 sub run {
@@ -272,7 +68,7 @@ sub run {
     return $self->_run_cgi;
   }
   unless (@ARGV && $ARGV[0] =~ m{^/}) {
-    return $self->_run_cli;
+    return $self->_run_cli(@ARGV);
   }
 
   my $path = shift @ARGV;
@@ -283,7 +79,7 @@ sub run {
 
   my $request = GET($path);
   my $response;
-  Plack::Test::test_psgi($self->as_psgi_app, sub { $response = shift->($request) });
+  Plack::Test::test_psgi($self->to_psgi_app, sub { $response = shift->($request) });
   print $response->as_string;
 }
 
@@ -300,3 +96,120 @@ sub _cli_usage {
 }
 
 1;
+
+=head1 NAME
+
+Web::Simple::Application - A base class for your Web-Simple applications
+
+=head1 DESCRIPTION
+
+This is a base class for your L<Web::Simple> application.  You probably don't
+need to construct this class yourself, since L<Web::Simple> does the 'heavy
+lifting' for you in that regards.
+
+=head1 METHODS
+
+This class exposes the follow public methods.
+
+=head2 default_config
+
+Provide configuration information to your application, for example:
+
+  sub default_config {
+    (
+      title => 'Bloggery',
+      posts_dir => $FindBin::Bin.'/posts',
+    );
+  }
+
+Now, C<$self> will have an attribute C<config> which will be set to a HashRef
+containing keys 'title' and 'posts_dir'.
+
+=head2 run_if_script
+
+In the case where you wish to run you L<Web::Simple> based application as a 
+stand alone CGI application, you can simple do:
+
+  ## my_web_simple_app.pl
+  use MyWebSimpleApp::Web;
+  MyWebSimpleApp::Web->run_if_script.
+
+Or (even more simply) just inline the entire application:
+
+  ## my_web_simple_app.pl
+  #!/usr/bin/env perl
+  use Web::Simple 'HelloWorld';
+
+  {
+    package HelloWorld;
+
+    sub dispatch_request {
+      sub (GET) {
+        [ 200, [ 'Content-type', 'text/plain' ], [ 'Hello world!' ] ]
+      },
+      sub () {
+        [ 405, [ 'Content-type', 'text/plain' ], [ 'Method not allowed' ] ]
+      }
+    }
+  }
+
+  HelloWorld->run_if_script;
+
+=head2 to_psgi_app
+
+Given a L<Web::Simple> application root namespace, return it in a form suitable
+to run in inside a L<Plack> container, or in L<Plack::Builder> or in a C<*.psgi>
+file:
+
+  ## app.psgi
+  use strictures 1;
+  use Plack::Builder;
+  use MyWebSimpleApp::Web;
+
+  builder {
+    ## enable middleware
+    enable 'StackTrace';
+    enable 'Debug';
+
+    ## return application
+    MyWebSimpleApp::Web->to_psgi_app;
+  };
+
+This could be run via C<plackup>, etc.  Please note the L<Plack::Builder> DSL
+is optional, if you are enabling L<Plack::Middleware> internally in your
+L<Web::Simple> application; your app.psgi could be as simple as:
+
+  use MyWebSimpleApp::Web;
+  MyWebSimpleApp::Web->to_psgi_app;
+
+As always, mix and match the pieces you actually need and remember the 
+L<Web::Simple> philosophy of trying to keep it as minimal and simple as possible.
+
+=head2 run
+
+Used for running your application under stand-alone CGI and FCGI modes. Also
+useful for testing:
+
+    my $app = MyWebSimpleApp::Web->new;
+    my $c = HTTP::Request::AsCGI->new(@args)->setup;
+    $app->run;
+
+=head1 AUTHOR
+
+Matt S. Trout <mst@shadowcat.co.uk>
+
+=head1 CONTRIBUTORS
+
+None required yet. Maybe this module is perfect (hahahahaha ...).
+
+=head1 COPYRIGHT
+
+Copyright (c) 2009 the Web::Simple L</AUTHOR> and L</CONTRIBUTORS>
+as listed above.
+
+=head1 LICENSE
+
+This library is free software and may be distributed under the same terms
+as perl itself.
+
+=cut