#tokio #fast-cgi #web #async #protocols

tokio-fastcgi

FastCGI handler (responder, authorizer, filter) library for Tokio

4 stable releases

1.2.0 Feb 6, 2024
1.1.1 Dec 3, 2023
1.1.0 Aug 7, 2022
1.0.0 Jun 5, 2022

#5 in #fast-cgi

Download history 8/week @ 2024-02-05 6/week @ 2024-02-19 34/week @ 2024-02-26 1/week @ 2024-03-11 8/week @ 2024-04-01 46/week @ 2024-04-08

54 downloads per month

Apache-2.0

52KB
663 lines

Rust Current Version Docs.rs License Apache 2.0

Async FastCGI handler library

This crate implements a FastCGI handler for Tokio. It's a complete re-implementation of the FastCGI protocol in safe rust and supports all three FastCGI roles: Responder, Authorizer and Filter. The Role enum documents the different roles and their input and output parameters.

If you just want to use this library, look at the examples, open the documentation and start using it by adding the following to the [dependencies] section of your Cargo.toml:

tokio-fastcgi = "1"

Principle of operation

The tokio-fastcgi library handles FastCGI requests that are sent by a server. Accepting the connection and spawning a new task to handle the requests is done via Tokio. Within the handler task, Requests::from_split_socket is called to create an asynchronous requests stream. Calling Requests::next().await on this stream will return a new Request instance as soon as it was completely received from the web-server.

The returned Request instance has a process method that accepts an asynchronous callback function or closure that will process the request. The current request will be passed to the callback as a parameter and can be used to retrieve the input streams sent by the web-server and to write to the output streams. The callback returns a result or an error, if processing the request failed.

This is repeated while the Requests instance for the connection returns more requests. If no more requests are returned, the stream will be dropped and the connection to the web-server will be closed.

This library handles connection reuse and aborting requests for the user. See Requests::next for more details.

Examples

The library contains two examples: A bare bones one and a litte REST API. Just have a look :)

Changelog

  • Version 1.0.0
    Initial release

  • Version 1.1.0
    Add methods to enumerate the parameters of a request (params_iter and str_params_iter).

  • Version 1.1.1
    Update dependency versions. Make dependency to once_cell less restrictive.

  • Version 1.2.0
    Fix bug #4: Under heavy load, FastCGI responses are not delivered correctly. This makes the FastCGI protocol fail and connections get dropped with various error messages. This release fixes this problem. The tokio-fastcgi library is now stable even under heavy load.

Dependencies

~2.6–4MB
~71K SLoC