Nonblocking and Streaming- Part 2

Overview

Modern versions of Catalyst allow you to take charge of how your write operations work. This enables better support for working inside common event loops such as AnyEvent and IO::Async to support non blocking writes to stream large files.

Lets explore how PSGI implements delayed and streaming responses and how we can use streaming response with an event loop to enable use of nonblocking IO. Then lets see how Catalyst exposes that API. This part two of a four part series.

Introduction

Previous We've seem how PSGI does delayed and streaming responses. Now lets translate that to how Catalyst works.

The Catalyst PSGI application

So you've probably seen the following example of using Catalyst as a PSGI application:

    use MyCatalystApp;
    my $app = MyCatalystApp->psgi_app;

And if that file is called mycatalystapp.psgi you can run it under Starman exactly like the simple examples above:

    $ plackup -s Starman mycatalystapp.psgi

But what is going on under the hood with Catalyst? What kind of PSGI application is it? As it turns out, the actual PSGI coderef follows the delayed and streaming model that we discussed in length during the preceding article. I really recommend that you see the full coder over here:

https://metacpan.org/source/JJNAPIORK/Catalyst-Runtime-5.90051/lib/Catalyst/Engine.pm#L702

But here's a snip for discussion, which is from Catalyst::Engine

    sub build_psgi_app {
        my ($self, $app) = @_;

        return sub {
            my ($env) = @_;

            return sub {
                my ($respond) = @_;
                confess("Did not get a response callback for writer, cannot continue") unless $respond;
                $app->handle_request(env => $env, response_cb => $respond);
            };
        };
    }

In this case <$app> is you Catalyst application (not to be confused with the context, which munges together your application along with request and response information). $app at this point is fully initialized, and all the models, views and controllers are loaded up.

So what happens is that Catalyst returns to the server a PSGI app in the delayed response form. Right here in this method we are not building any responses, we are just grabbing the PSGI env and the $responder and sending that off to the ->handle_request method of the main $app.

You can refer to the handle_request method here, btw:

https://metacpan.org/source/JJNAPIORK/Catalyst-Runtime-5.90051/lib/Catalyst.pm#L2019

This is a longer method so we won't snip the full code, but the important thing to note is that it is this method that prepares the $context, dispatches the request, and then calls finalize to serve up the response. The finalize method, you can see here:

https://metacpan.org/source/JJNAPIORK/Catalyst-Runtime-5.90051/lib/Catalyst.pm#L1830

And that finalizes the response and also does some housecleaning around stats and logs. It finalized the response by calling a method called (oddly enough :) ) finalize_body. BTW, it finalized the headers first, as you might expect.

Catalyst plays a bit of a game here, since finalize_body on Catalyst.pm just delegates the work to the same named method in Catalyst::Engine. This might just be a holdover from the pre PSGI days, but that's what it does now. So to see the real guts of how the body gets finalized you need to look over here:

https://metacpan.org/source/JJNAPIORK/Catalyst-Runtime-5.90051/lib/Catalyst/Engine.pm#L69

Now that is a method worth snipping and discussing:

    sub finalize_body {
        my ( $self, $c ) = @_;
        return if $c->response->_has_write_fh;

        my $body = $c->response->body;
        no warnings 'uninitialized';
        if ( blessed($body) && $body->can('read') or ref($body) eq 'GLOB' ) {
            my $got;
            do {
                $got = read $body, my ($buffer), $CHUNKSIZE;
                $got = 0 unless $self->write( $c, $buffer );  # same as $c->response->write($body)
            } while $got > 0;

            close $body;
        }
        else {
            $self->write( $c, $body );  # same as $c->response->write($body)
        }

        my $res = $c->response;
        $res->_writer->close;
        $res->_clear_writer;

        return;
    }

Ok, breaking it down. $res->_writer is the $writer object you get when you call $responder with just the status and headers. Remember, at this point Catalyst has already finalized the headers, so its safe to use them. If you go look at the write method in Catalyst::Response you'll see what I mean here.

Ok so, when you give $c->response->body a string, that string gets written all at once, and if you give it a filehandle, it calls ->read on that in blocks of size $CHUNKSIZE (which is a global variable you can monkey patch to a higher or lower value, btw.). So that's how Catalyst can handle streaming of your filehandles. Its very similar to the examples we saw in the previous article where we call $writer->write a bunch of times, followed by $writer->close. Catalyst is just playing into the PSGI specification here, but of course we need to adapt the Catalyst object MVC approach to what PSGI expects.

So this is what happens if you set $c->response->body( $string ) or $c->response->body( $filehandle ).

Additionally, Catalyst has long supported the ability to stream writes programatically in your Controllers via the res-write-data in Catalyst::Response method. This would allow you to stream a response in bits, as you have them. For example you could do:

    sub myaction :Local {
      my ($self, $c) = @_;
      $c->res->write("Hello");
      $c->res->write(" ");
      $c->res->write("World");
    }

And that would work nearly identically to the much similar example PSGI application we've already looked at. The finalize_body method will close the writer for you, so you don't need to worry about it.

So between calling the write method on Catalyst::Response and setting the response body to a filehandle (or filehandle like, for example this could be an in memory filehandle or an object that presented the filehandle API) Catalyst leverages a lot of what you can do with a PSGI delayed and/or streaming application.

So, what is that "return if $c->response->_has_write_fh;" right at the very top of the method all about? In order to understand that we need to step back and think about running your PSGI under an event loop and using nonblocking, asynchronous I/O, which is our next topic!

For More Information

Summary

We've seen how Catalyst leverages its PSGI roots to support delayed and streaming responses.

Author

John Napiorkowski jjnapiork@cpan.org