1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 01:39:33 +00:00
actix-web/src/lib.rs

293 lines
7.9 KiB
Rust
Raw Normal View History

//! Actix web is a small, pragmatic, and extremely fast web framework
//! for Rust.
2017-12-14 07:35:21 +00:00
//!
2018-01-09 18:08:06 +00:00
//! ```rust
2018-06-02 23:03:23 +00:00
//! use actix_web::{server, App, Path, Responder};
2018-01-09 18:08:06 +00:00
//! # use std::thread;
2017-12-14 07:35:21 +00:00
//!
2018-06-02 23:03:23 +00:00
//! fn index(info: Path<(String, u32)>) -> impl Responder {
2018-06-01 16:36:16 +00:00
//! format!("Hello {}! id:{}", info.0, info.1)
2017-12-14 07:35:21 +00:00
//! }
//!
//! fn main() {
2018-06-01 17:27:23 +00:00
//! # thread::spawn(|| {
2018-06-01 16:36:16 +00:00
//! server::new(|| {
//! App::new().resource("/{name}/{id}/index.html", |r| r.with(index))
//! }).bind("127.0.0.1:8080")
//! .unwrap()
2018-01-09 18:08:06 +00:00
//! .run();
2018-06-01 17:27:23 +00:00
//! # });
2017-12-14 07:35:21 +00:00
//! }
//! ```
//!
//! ## Documentation & community resources
//!
//! Besides the API documentation (which you are currently looking
//! at!), several other resources are available:
2017-12-14 07:35:21 +00:00
//!
2018-05-23 18:20:12 +00:00
//! * [User Guide](https://actix.rs/docs/)
2018-01-12 02:49:30 +00:00
//! * [Chat on gitter](https://gitter.im/actix/actix)
2018-01-12 02:47:34 +00:00
//! * [GitHub repository](https://github.com/actix/actix-web)
//! * [Cargo package](https://crates.io/crates/actix-web)
//!
//! To get started navigating the API documentation you may want to
//! consider looking at the following pages:
//!
//! * [App](struct.App.html): This struct represents an actix-web
//! application and is used to configure routes and other common
//! settings.
//!
//! * [HttpServer](server/struct.HttpServer.html): This struct
//! represents an HTTP server instance and is used to instantiate and
//! configure servers.
//!
//! * [HttpRequest](struct.HttpRequest.html) and
//! [HttpResponse](struct.HttpResponse.html): These structs
//! represent HTTP requests and responses and expose various methods
2018-05-06 16:07:30 +00:00
//! for inspecting, creating and otherwise utilizing them.
2017-12-14 07:35:21 +00:00
//!
//! ## Features
//!
//! * Supported *HTTP/1.x* and *HTTP/2.0* protocols
//! * Streaming and pipelining
//! * Keep-alive and slow requests handling
2018-02-26 22:33:56 +00:00
//! * `WebSockets` server/client
2017-12-14 07:35:21 +00:00
//! * Transparent content compression/decompression (br, gzip, deflate)
//! * Configurable request routing
2018-03-01 06:31:54 +00:00
//! * Graceful server shutdown
2017-12-14 07:35:21 +00:00
//! * Multipart streams
//! * SSL support with OpenSSL or `native-tls`
2018-03-08 05:39:20 +00:00
//! * Middlewares (`Logger`, `Session`, `CORS`, `CSRF`, `DefaultHeaders`)
//! * Built on top of [Actix actor framework](https://github.com/actix/actix)
2018-05-25 04:09:20 +00:00
//! * Supported Rust version: 1.26 or later
2018-05-15 17:20:32 +00:00
//!
//! ## Package feature
//!
//! * `tls` - enables ssl support via `native-tls` crate
2018-09-08 21:55:39 +00:00
//! * `ssl` - enables ssl support via `openssl` crate, supports `http/2`
//! * `rust-tls` - enables ssl support via `rustls` crate, supports `http/2`
//! * `uds` - enables support for making client requests via Unix Domain Sockets.
//! Unix only. Not necessary for *serving* requests.
2018-05-15 17:20:32 +00:00
//! * `session` - enables session support, includes `ring` crate as
//! dependency
//! * `brotli` - enables `brotli` compression support, requires `c`
//! compiler
//! * `flate2-c` - enables `gzip`, `deflate` compression support, requires
2018-05-15 17:20:32 +00:00
//! `c` compiler
//! * `flate2-rust` - experimental rust based implementation for
2018-05-15 17:20:32 +00:00
//! `gzip`, `deflate` compression.
//!
2017-11-24 18:28:43 +00:00
#![cfg_attr(actix_nightly, feature(
specialization, // for impl ErrorResponse for std::error::Error
2018-06-11 19:21:09 +00:00
extern_prelude,
2018-10-02 04:16:56 +00:00
tool_lints,
))]
2018-06-02 13:50:45 +00:00
#![warn(missing_docs)]
2017-10-07 04:48:14 +00:00
#[macro_use]
extern crate log;
2018-01-28 06:03:03 +00:00
extern crate base64;
extern crate byteorder;
2018-04-13 23:02:01 +00:00
extern crate bytes;
2017-10-17 02:21:24 +00:00
extern crate regex;
2018-04-13 23:02:01 +00:00
extern crate sha1;
extern crate time;
2017-10-07 04:48:14 +00:00
#[macro_use]
extern crate bitflags;
#[macro_use]
2017-12-29 09:01:31 +00:00
extern crate failure;
#[macro_use]
extern crate lazy_static;
#[macro_use]
2017-10-07 04:48:14 +00:00
extern crate futures;
extern crate cookie;
2018-04-13 23:02:01 +00:00
extern crate futures_cpupool;
2018-03-31 00:31:18 +00:00
extern crate http as modhttp;
2018-04-13 23:02:01 +00:00
extern crate httparse;
extern crate language_tags;
2018-07-06 21:28:08 +00:00
extern crate lazycell;
2017-10-19 06:43:50 +00:00
extern crate mime;
2017-10-16 08:19:23 +00:00
extern crate mime_guess;
2018-04-13 23:02:01 +00:00
extern crate mio;
extern crate net2;
2018-06-17 22:56:18 +00:00
extern crate parking_lot;
2018-01-28 06:03:03 +00:00
extern crate rand;
extern crate slab;
2018-05-25 04:03:16 +00:00
extern crate tokio;
extern crate tokio_current_thread;
2018-04-13 23:02:01 +00:00
extern crate tokio_io;
2018-05-25 04:03:16 +00:00
extern crate tokio_reactor;
extern crate tokio_tcp;
extern crate tokio_timer;
#[cfg(all(unix, feature = "uds"))]
extern crate tokio_uds;
extern crate url;
2018-04-13 23:02:01 +00:00
#[macro_use]
extern crate serde;
#[cfg(feature = "brotli")]
2017-11-06 09:24:49 +00:00
extern crate brotli2;
extern crate encoding;
2018-04-24 19:24:04 +00:00
#[cfg(feature = "flate2")]
2018-04-13 23:02:01 +00:00
extern crate flate2;
extern crate h2 as http2;
extern crate num_cpus;
2018-08-23 16:48:01 +00:00
extern crate serde_urlencoded;
#[macro_use]
extern crate percent_encoding;
2018-04-13 23:02:01 +00:00
extern crate serde_json;
extern crate smallvec;
extern crate v_htmlescape;
2018-09-08 06:34:27 +00:00
extern crate actix_net;
2018-04-13 23:02:01 +00:00
#[macro_use]
2018-06-02 16:14:47 +00:00
extern crate actix as actix_inner;
2017-10-07 04:48:14 +00:00
2017-12-04 02:51:52 +00:00
#[cfg(test)]
2018-04-13 23:02:01 +00:00
#[macro_use]
extern crate serde_derive;
2017-11-16 06:06:28 +00:00
2018-04-13 23:02:01 +00:00
#[cfg(feature = "tls")]
extern crate native_tls;
2018-08-23 17:10:13 +00:00
#[cfg(feature = "tls")]
extern crate tokio_tls;
2018-04-13 23:02:01 +00:00
#[cfg(feature = "openssl")]
extern crate openssl;
2018-04-13 23:02:01 +00:00
#[cfg(feature = "openssl")]
extern crate tokio_openssl;
2018-07-29 06:43:04 +00:00
#[cfg(feature = "rust-tls")]
extern crate rustls;
#[cfg(feature = "rust-tls")]
extern crate tokio_rustls;
#[cfg(feature = "rust-tls")]
extern crate webpki;
#[cfg(feature = "rust-tls")]
extern crate webpki_roots;
2017-10-07 04:48:14 +00:00
mod application;
2017-10-24 06:25:32 +00:00
mod body;
2017-10-07 04:48:14 +00:00
mod context;
mod de;
2018-06-16 21:22:08 +00:00
mod extensions;
mod extractor;
mod handler;
2018-03-31 00:31:18 +00:00
mod header;
mod helpers;
2018-04-30 04:05:10 +00:00
mod httpcodes;
mod httpmessage;
mod httprequest;
2017-10-15 16:33:17 +00:00
mod httpresponse;
2017-12-06 01:09:15 +00:00
mod info;
2017-12-21 01:51:28 +00:00
mod json;
mod param;
mod payload;
2017-11-25 06:15:52 +00:00
mod pipeline;
2018-04-13 23:02:01 +00:00
mod resource;
mod route;
mod router;
2018-04-30 02:35:50 +00:00
mod scope;
2018-04-17 19:55:13 +00:00
mod uri;
2018-03-27 06:10:31 +00:00
mod with;
2017-10-08 04:48:00 +00:00
pub mod client;
2017-11-16 06:06:28 +00:00
pub mod error;
2018-04-13 23:02:01 +00:00
pub mod fs;
2017-12-27 03:59:41 +00:00
pub mod middleware;
2018-04-13 23:02:01 +00:00
pub mod multipart;
2017-12-04 21:32:05 +00:00
pub mod pred;
2018-01-12 02:35:05 +00:00
pub mod server;
2018-04-13 23:02:01 +00:00
pub mod test;
pub mod ws;
2018-03-31 07:16:55 +00:00
pub use application::App;
2018-04-13 23:02:01 +00:00
pub use body::{Binary, Body};
pub use context::HttpContext;
pub use error::{Error, ResponseError, Result};
2018-06-16 21:22:08 +00:00
pub use extensions::Extensions;
2018-04-13 23:02:01 +00:00
pub use extractor::{Form, Path, Query};
2018-05-15 17:20:32 +00:00
pub use handler::{
AsyncResponder, Either, FromRequest, FutureResponse, Responder, State,
};
pub use httpmessage::HttpMessage;
2017-12-08 00:40:29 +00:00
pub use httprequest::HttpRequest;
2017-11-27 06:53:28 +00:00
pub use httpresponse::HttpResponse;
2018-04-13 23:02:01 +00:00
pub use json::Json;
2018-04-30 02:35:50 +00:00
pub use scope::Scope;
2018-06-25 04:58:04 +00:00
pub use server::Request;
2018-05-09 12:48:06 +00:00
pub mod actix {
2018-06-02 16:14:47 +00:00
//! Re-exports [actix's](https://docs.rs/actix/) prelude
2018-12-11 05:15:07 +00:00
pub use super::actix_inner::actors::resolver;
pub use super::actix_inner::actors::signal;
pub use super::actix_inner::fut;
pub use super::actix_inner::msgs;
pub use super::actix_inner::prelude::*;
pub use super::actix_inner::{run, spawn};
}
2018-04-13 23:02:01 +00:00
#[cfg(feature = "openssl")]
2018-01-30 07:01:20 +00:00
pub(crate) const HAS_OPENSSL: bool = true;
2018-04-13 23:02:01 +00:00
#[cfg(not(feature = "openssl"))]
2018-01-30 07:01:20 +00:00
pub(crate) const HAS_OPENSSL: bool = false;
2018-04-13 23:02:01 +00:00
#[cfg(feature = "tls")]
2018-03-07 01:34:46 +00:00
pub(crate) const HAS_TLS: bool = true;
2018-04-13 23:02:01 +00:00
#[cfg(not(feature = "tls"))]
2018-03-07 01:34:46 +00:00
pub(crate) const HAS_TLS: bool = false;
2018-01-30 07:01:20 +00:00
2018-07-29 06:43:04 +00:00
#[cfg(feature = "rust-tls")]
pub(crate) const HAS_RUSTLS: bool = true;
#[cfg(not(feature = "rust-tls"))]
pub(crate) const HAS_RUSTLS: bool = false;
2017-12-07 01:06:40 +00:00
pub mod dev {
2018-04-13 23:02:01 +00:00
//! The `actix-web` prelude for library developers
//!
//! The purpose of this module is to alleviate imports of many common actix
//! traits by adding a glob import to the top of actix heavy modules:
//!
//! ```
//! # #![allow(unused_imports)]
//! use actix_web::dev::*;
//! ```
2017-12-07 01:06:40 +00:00
2017-12-14 06:36:28 +00:00
pub use body::BodyStream;
2018-02-28 19:10:54 +00:00
pub use context::Drain;
2018-12-11 05:15:07 +00:00
pub use extractor::{FormConfig, PayloadConfig, QueryConfig, PathConfig, EitherConfig, EitherCollisionStrategy};
2018-05-03 23:22:08 +00:00
pub use handler::{AsyncResult, Handler};
2018-08-16 13:11:15 +00:00
pub use httpmessage::{MessageBody, Readlines, UrlEncoded};
2017-12-07 01:06:40 +00:00
pub use httpresponse::HttpResponseBuilder;
2018-04-13 23:02:01 +00:00
pub use info::ConnectionInfo;
pub use json::{JsonBody, JsonConfig};
pub use param::{FromParam, Params};
2018-07-18 04:01:28 +00:00
pub use payload::{Payload, PayloadBuffer};
2018-08-23 16:48:01 +00:00
pub use pipeline::Pipeline;
2018-07-12 09:30:01 +00:00
pub use resource::Resource;
2018-04-13 23:02:01 +00:00
pub use route::Route;
2018-07-15 09:24:27 +00:00
pub use router::{ResourceDef, ResourceInfo, ResourceType, Router};
2017-12-07 01:06:40 +00:00
}
2018-03-31 00:31:18 +00:00
pub mod http {
//! Various HTTP related types
2018-03-31 00:31:18 +00:00
// re-exports
pub use modhttp::{Method, StatusCode, Version};
#[doc(hidden)]
2018-04-13 23:02:01 +00:00
pub use modhttp::{uri, Error, Extensions, HeaderMap, HttpTryFrom, Uri};
2018-03-31 00:31:18 +00:00
pub use cookie::{Cookie, CookieBuilder};
pub use helpers::NormalizePath;
/// Various http headers
2018-03-31 00:31:18 +00:00
pub mod header {
2018-04-13 23:02:01 +00:00
pub use header::*;
2018-08-23 16:48:01 +00:00
pub use header::{
Charset, ContentDisposition, DispositionParam, DispositionType, LanguageTag,
};
2018-03-31 00:31:18 +00:00
}
pub use header::ContentEncoding;
pub use httpresponse::ConnectionType;
}