/usr/share/perl5/Web/Machine/FSM.pm is in libweb-machine-perl 0.17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | package Web::Machine::FSM;
# ABSTRACT: The State Machine runner
use strict;
use warnings;
our $VERSION = '0.17';
use IO::Handle::Util 'io_from_getline';
use Plack::Util;
use Try::Tiny;
use HTTP::Status qw[ is_error ];
use Web::Machine::I18N;
use Web::Machine::FSM::States qw[
start_state
is_status_code
is_new_state
get_state_name
get_state_desc
];
sub new {
my ($class, %args) = @_;
bless {
tracing => !!$args{'tracing'},
tracing_header => $args{'tracing_header'} || 'X-Web-Machine-Trace'
} => $class
}
sub tracing { (shift)->{'tracing'} }
sub tracing_header { (shift)->{'tracing_header'} }
sub run {
my ( $self, $resource ) = @_;
my $DEBUG;
if ( $ENV{WM_DEBUG} ) {
$DEBUG
= $ENV{WM_DEBUG} eq 'diag'
? sub { Test::More::diag( $_[0] ) }
: sub { warn "$_[0]\n" };
}
my $request = $resource->request;
my $response = $resource->response;
my $metadata = {};
$request->env->{'web.machine.context'} = $metadata;
my @trace;
my $tracing = $self->tracing;
my $state = start_state;
try {
while (1) {
$DEBUG->( 'entering '
. get_state_name($state) . ' ('
. get_state_desc($state)
. ')' )
if $DEBUG;
push @trace => get_state_name( $state ) if $tracing;
my $result = $state->( $resource, $request, $response, $metadata );
if ( ! ref $result ) {
# TODO:
# We should be I18N this
# specific error
# - SL
$DEBUG->( '! ERROR with ' . ( $result || 'undef' ) )
if $DEBUG;
$response->status( 500 );
$response->header( 'Content-Type' => 'text/plain' );
$response->body( [ "Got bad state: " . ($result || 'undef') ] );
last;
}
elsif ( is_status_code( $result ) ) {
$DEBUG->( '.. terminating with ' . ${$result} ) if $DEBUG;
$response->status( $$result );
if ( is_error( $$result ) && !$response->body ) {
# NOTE:
# this will default to en, however I
# am not really confident that this
# will end up being sufficient.
# - SL
my $lang = Web::Machine::I18N->get_handle( $metadata->{'Language'} || 'en' )
or die "Could not get language handle for " . $metadata->{'Language'};
$response->header( 'Content-Type' => 'text/plain' );
$response->body([ $lang->maketext( $$result ) ]);
}
if ($DEBUG) {
require Data::Dumper;
local $Data::Dumper::Terse = 1;
local $Data::Dumper::Indent = 1;
local $Data::Dumper::Useqq = 1;
local $Data::Dumper::Deparse = 1;
local $Data::Dumper::Quotekeys = 0;
local $Data::Dumper::Sortkeys = 1;
$DEBUG->( Data::Dumper::Dumper( $request->env ) );
$DEBUG->( Data::Dumper::Dumper( $response->finalize ) );
}
last;
}
elsif ( is_new_state( $result ) ) {
$DEBUG->( '-> transitioning to ' . get_state_name($result) )
if $DEBUG;
$state = $result;
}
}
} catch {
# TODO:
# We should be I18N the errors
# - SL
$DEBUG->($_) if $DEBUG;
if ( $request->logger ) {
$request->logger->( { level => 'error', message => $_ } );
}
$response->status( 500 );
# NOTE:
# this way you can handle the
# exception if you like via
# the finish_request call below
# - SL
$metadata->{'exception'} = $_;
};
$self->filter_response( $resource )
unless $request->env->{'web.machine.streaming_push'};
try {
$resource->finish_request( $metadata );
}
catch {
$DEBUG->($_) if $DEBUG;
if ( $request->logger ) {
$request->logger->( { level => 'error', message => $_ } );
}
$response->status( 500 );
};
$response->header( $self->tracing_header, (join ',' => @trace) )
if $tracing;
$response;
}
sub filter_response {
my $self = shift;
my ($resource) = @_;
my $response = $resource->response;
my $filters = $resource->request->env->{'web.machine.content_filters'};
# XXX patch Plack::Response to make _body not private?
my $body = $response->_body;
for my $filter (@$filters) {
if (ref($body) eq 'ARRAY') {
$response->body( [ map { $filter->($_) } @$body ] );
$body = $response->body;
}
else {
my $old_body = $body;
$body = io_from_getline sub { $filter->($old_body->getline) };
$response->body($body);
}
}
if (ref($body) eq 'ARRAY'
&& !Plack::Util::status_with_no_entity_body($response->status)) {
$response->header(
'Content-Length' => Plack::Util::content_length($body)
);
}
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Web::Machine::FSM - The State Machine runner
=head1 VERSION
version 0.17
=head1 SYNOPSIS
use Web::Machine::FSM;
=head1 DESCRIPTION
This is the heart of the L<Web::Machine>, this is the thing
which runs the state machine whose states are contained in the
L<Web::Machine::FSM::States> module.
=for Pod::Coverage filter_response
=head1 METHODS
=over 4
=item C<new ( %params )>
This accepts two C<%params>, the first is a boolean to
indicate if you should turn on tracing or not, and the second
is optional name of the HTTP header in which to place the
tracing information.
=item C<tracing>
Are we tracing or not?
=item C<tracing_header>
Accessor for the HTTP header name to store tracing data in.
This default to C<X-Web-Machine-Trace>.
=item C<run ( $resource )>
Given a L<Web::Machine::Resource> instance, this will execute
the state machine.
=back
=head1 SEE ALSO
=over 4
=item L<Web Machine state diagram|https://github.com/Webmachine/webmachine/wiki/Diagram>
=back
=head1 SUPPORT
bugs may be submitted through L<https://github.com/houseabsolute/webmachine-perl/issues>.
=head1 AUTHORS
=over 4
=item *
Stevan Little <stevan@cpan.org>
=item *
Dave Rolsky <autarch@urth.org>
=back
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2016 by Infinity Interactive, Inc.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|