2019-03-02 06:51:32 +00:00
|
|
|
use std::ops::Deref;
|
2019-03-06 18:03:18 +00:00
|
|
|
use std::sync::Arc;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
use actix_http::error::{Error, ErrorInternalServerError};
|
|
|
|
use actix_http::Extensions;
|
2020-05-18 02:47:20 +00:00
|
|
|
use futures_util::future::{err, ok, LocalBoxFuture, Ready};
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-04-07 21:43:07 +00:00
|
|
|
use crate::dev::Payload;
|
2019-03-03 21:53:31 +00:00
|
|
|
use crate::extract::FromRequest;
|
2019-04-07 21:43:07 +00:00
|
|
|
use crate::request::HttpRequest;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-03-17 03:17:27 +00:00
|
|
|
/// Application data factory
|
|
|
|
pub(crate) trait DataFactory {
|
2019-05-05 02:43:49 +00:00
|
|
|
fn create(&self, extensions: &mut Extensions) -> bool;
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 17:20:47 +00:00
|
|
|
pub(crate) type FnDataFactory =
|
|
|
|
Box<dyn Fn() -> LocalBoxFuture<'static, Result<Box<dyn DataFactory>, ()>>>;
|
|
|
|
|
2019-03-17 04:09:11 +00:00
|
|
|
/// Application data.
|
|
|
|
///
|
|
|
|
/// Application data is an arbitrary data attached to the app.
|
|
|
|
/// Application data is available to all routes and could be added
|
|
|
|
/// during application configuration process
|
|
|
|
/// with `App::data()` method.
|
|
|
|
///
|
2019-04-10 19:43:31 +00:00
|
|
|
/// Application data could be accessed by using `Data<T>`
|
2019-03-17 04:09:11 +00:00
|
|
|
/// extractor where `T` is data type.
|
|
|
|
///
|
|
|
|
/// **Note**: http server accepts an application factory rather than
|
|
|
|
/// an application instance. Http server constructs an application
|
|
|
|
/// instance for each thread, thus application data must be constructed
|
|
|
|
/// multiple times. If you want to share data between different
|
2019-04-11 03:47:28 +00:00
|
|
|
/// threads, a shareable object should be used, e.g. `Send + Sync`. Application
|
2019-04-29 16:26:12 +00:00
|
|
|
/// data does not need to be `Send` or `Sync`. Internally `Data` type
|
|
|
|
/// uses `Arc`. if your data implements `Send` + `Sync` traits you can
|
|
|
|
/// use `web::Data::new()` and avoid double `Arc`.
|
2019-03-17 04:09:11 +00:00
|
|
|
///
|
2019-03-17 04:13:16 +00:00
|
|
|
/// If route data is not set for a handler, using `Data<T>` extractor would
|
|
|
|
/// cause *Internal Server Error* response.
|
|
|
|
///
|
2019-03-17 04:09:11 +00:00
|
|
|
/// ```rust
|
2019-04-29 16:26:12 +00:00
|
|
|
/// use std::sync::Mutex;
|
2019-11-20 04:05:16 +00:00
|
|
|
/// use actix_web::{web, App, HttpResponse, Responder};
|
2019-03-17 04:09:11 +00:00
|
|
|
///
|
|
|
|
/// struct MyData {
|
2019-04-29 16:26:12 +00:00
|
|
|
/// counter: usize,
|
2019-03-17 04:09:11 +00:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// /// Use `Data<T>` extractor to access data in handler.
|
2019-11-20 04:05:16 +00:00
|
|
|
/// async fn index(data: web::Data<Mutex<MyData>>) -> impl Responder {
|
2019-04-29 16:26:12 +00:00
|
|
|
/// let mut data = data.lock().unwrap();
|
|
|
|
/// data.counter += 1;
|
2019-11-20 04:05:16 +00:00
|
|
|
/// HttpResponse::Ok()
|
2019-03-17 04:09:11 +00:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2019-04-29 16:26:12 +00:00
|
|
|
/// let data = web::Data::new(Mutex::new(MyData{ counter: 0 }));
|
|
|
|
///
|
2019-03-17 04:09:11 +00:00
|
|
|
/// let app = App::new()
|
|
|
|
/// // Store `MyData` in application storage.
|
2019-12-20 11:13:09 +00:00
|
|
|
/// .app_data(data.clone())
|
2019-03-17 04:09:11 +00:00
|
|
|
/// .service(
|
|
|
|
/// web::resource("/index.html").route(
|
|
|
|
/// web::get().to(index)));
|
|
|
|
/// }
|
|
|
|
/// ```
|
2019-04-15 02:52:12 +00:00
|
|
|
#[derive(Debug)]
|
2019-03-17 03:17:27 +00:00
|
|
|
pub struct Data<T>(Arc<T>);
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-03-17 03:17:27 +00:00
|
|
|
impl<T> Data<T> {
|
2019-04-29 16:26:12 +00:00
|
|
|
/// Create new `Data` instance.
|
|
|
|
///
|
|
|
|
/// Internally `Data` type uses `Arc`. if your data implements
|
|
|
|
/// `Send` + `Sync` traits you can use `web::Data::new()` and
|
|
|
|
/// avoid double `Arc`.
|
|
|
|
pub fn new(state: T) -> Data<T> {
|
2019-03-17 03:17:27 +00:00
|
|
|
Data(Arc::new(state))
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
2019-06-18 01:27:23 +00:00
|
|
|
/// Get reference to inner app data.
|
2019-03-03 22:45:56 +00:00
|
|
|
pub fn get_ref(&self) -> &T {
|
2019-03-02 06:51:32 +00:00
|
|
|
self.0.as_ref()
|
|
|
|
}
|
2019-08-23 15:02:03 +00:00
|
|
|
|
|
|
|
/// Convert to the internal Arc<T>
|
|
|
|
pub fn into_inner(self) -> Arc<T> {
|
|
|
|
self.0
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
2019-03-17 03:17:27 +00:00
|
|
|
impl<T> Deref for Data<T> {
|
2019-12-20 11:45:35 +00:00
|
|
|
type Target = Arc<T>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-12-20 11:45:35 +00:00
|
|
|
fn deref(&self) -> &Arc<T> {
|
|
|
|
&self.0
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-17 03:17:27 +00:00
|
|
|
impl<T> Clone for Data<T> {
|
|
|
|
fn clone(&self) -> Data<T> {
|
|
|
|
Data(self.0.clone())
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 23:27:03 +00:00
|
|
|
impl<T> From<Arc<T>> for Data<T> {
|
|
|
|
fn from(arc: Arc<T>) -> Self {
|
|
|
|
Data(arc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
impl<T: 'static> FromRequest for Data<T> {
|
2019-04-13 23:35:25 +00:00
|
|
|
type Config = ();
|
2019-03-02 06:51:32 +00:00
|
|
|
type Error = Error;
|
2019-11-20 17:33:22 +00:00
|
|
|
type Future = Ready<Result<Self, Error>>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
|
|
|
#[inline]
|
2019-04-13 21:50:54 +00:00
|
|
|
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future {
|
2019-12-20 11:13:09 +00:00
|
|
|
if let Some(st) = req.app_data::<Data<T>>() {
|
|
|
|
ok(st.clone())
|
2019-03-02 06:51:32 +00:00
|
|
|
} else {
|
2019-04-10 22:05:03 +00:00
|
|
|
log::debug!(
|
|
|
|
"Failed to construct App-level Data extractor. \
|
|
|
|
Request path: {:?}",
|
|
|
|
req.path()
|
|
|
|
);
|
2019-11-20 17:33:22 +00:00
|
|
|
err(ErrorInternalServerError(
|
2019-03-17 04:09:11 +00:00
|
|
|
"App data is not configured, to configure use App::data()",
|
2019-03-02 06:51:32 +00:00
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-17 03:17:27 +00:00
|
|
|
impl<T: 'static> DataFactory for Data<T> {
|
2019-05-05 02:43:49 +00:00
|
|
|
fn create(&self, extensions: &mut Extensions) -> bool {
|
|
|
|
if !extensions.contains::<Data<T>>() {
|
2019-07-17 06:58:42 +00:00
|
|
|
extensions.insert(Data(self.0.clone()));
|
2019-05-05 02:43:49 +00:00
|
|
|
true
|
2019-03-17 04:09:11 +00:00
|
|
|
} else {
|
2019-05-05 02:43:49 +00:00
|
|
|
false
|
2019-03-17 04:09:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use actix_service::Service;
|
2019-12-25 08:10:28 +00:00
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
2019-03-17 04:09:11 +00:00
|
|
|
|
2019-06-05 02:43:39 +00:00
|
|
|
use super::*;
|
2019-03-17 04:09:11 +00:00
|
|
|
use crate::http::StatusCode;
|
2019-12-25 08:10:28 +00:00
|
|
|
use crate::test::{self, init_service, TestRequest};
|
2019-03-17 04:09:11 +00:00
|
|
|
use crate::{web, App, HttpResponse};
|
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_data_extractor() {
|
2019-12-20 11:45:35 +00:00
|
|
|
let mut srv = init_service(App::new().data("TEST".to_string()).service(
|
|
|
|
web::resource("/").to(|data: web::Data<String>| {
|
|
|
|
assert_eq!(data.to_lowercase(), "test");
|
|
|
|
HttpResponse::Ok()
|
|
|
|
}),
|
|
|
|
))
|
|
|
|
.await;
|
2019-03-17 04:09:11 +00:00
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
let req = TestRequest::default().to_request();
|
|
|
|
let resp = srv.call(req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2019-03-17 04:09:11 +00:00
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
let mut srv =
|
|
|
|
init_service(App::new().data(10u32).service(
|
2019-03-17 04:09:11 +00:00
|
|
|
web::resource("/").to(|_: web::Data<usize>| HttpResponse::Ok()),
|
2019-11-20 17:33:22 +00:00
|
|
|
))
|
|
|
|
.await;
|
2019-11-26 05:25:50 +00:00
|
|
|
let req = TestRequest::default().to_request();
|
|
|
|
let resp = srv.call(req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::INTERNAL_SERVER_ERROR);
|
2019-03-17 04:09:11 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
#[actix_rt::test]
|
2019-12-20 11:13:09 +00:00
|
|
|
async fn test_app_data_extractor() {
|
2019-11-26 05:25:50 +00:00
|
|
|
let mut srv =
|
2019-12-20 11:13:09 +00:00
|
|
|
init_service(App::new().app_data(Data::new(10usize)).service(
|
2019-11-26 05:25:50 +00:00
|
|
|
web::resource("/").to(|_: web::Data<usize>| HttpResponse::Ok()),
|
2019-11-20 17:33:22 +00:00
|
|
|
))
|
|
|
|
.await;
|
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
let req = TestRequest::default().to_request();
|
|
|
|
let resp = srv.call(req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
|
|
|
|
let mut srv =
|
2019-12-20 11:13:09 +00:00
|
|
|
init_service(App::new().app_data(Data::new(10u32)).service(
|
2019-11-26 05:25:50 +00:00
|
|
|
web::resource("/").to(|_: web::Data<usize>| HttpResponse::Ok()),
|
|
|
|
))
|
2019-11-20 17:33:22 +00:00
|
|
|
.await;
|
2019-11-26 05:25:50 +00:00
|
|
|
let req = TestRequest::default().to_request();
|
|
|
|
let resp = srv.call(req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::INTERNAL_SERVER_ERROR);
|
2019-03-17 04:09:11 +00:00
|
|
|
}
|
2019-05-05 02:43:49 +00:00
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_route_data_extractor() {
|
2020-07-21 23:28:33 +00:00
|
|
|
let mut srv = init_service(
|
|
|
|
App::new().service(
|
|
|
|
web::resource("/")
|
|
|
|
.data(10usize)
|
|
|
|
.route(web::get().to(|_data: web::Data<usize>| HttpResponse::Ok())),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.await;
|
2019-11-20 17:33:22 +00:00
|
|
|
|
2019-11-26 05:25:50 +00:00
|
|
|
let req = TestRequest::default().to_request();
|
|
|
|
let resp = srv.call(req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
|
|
|
|
// different type
|
|
|
|
let mut srv = init_service(
|
|
|
|
App::new().service(
|
|
|
|
web::resource("/")
|
|
|
|
.data(10u32)
|
|
|
|
.route(web::get().to(|_: web::Data<usize>| HttpResponse::Ok())),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
let req = TestRequest::default().to_request();
|
|
|
|
let resp = srv.call(req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::INTERNAL_SERVER_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_override_data() {
|
|
|
|
let mut srv = init_service(App::new().data(1usize).service(
|
|
|
|
web::resource("/").data(10usize).route(web::get().to(
|
|
|
|
|data: web::Data<usize>| {
|
2019-12-20 11:45:35 +00:00
|
|
|
assert_eq!(**data, 10);
|
2019-11-26 05:25:50 +00:00
|
|
|
HttpResponse::Ok()
|
|
|
|
},
|
|
|
|
)),
|
|
|
|
))
|
|
|
|
.await;
|
|
|
|
|
|
|
|
let req = TestRequest::default().to_request();
|
|
|
|
let resp = srv.call(req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2019-05-05 02:43:49 +00:00
|
|
|
}
|
2019-12-25 08:10:28 +00:00
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_data_drop() {
|
|
|
|
struct TestData(Arc<AtomicUsize>);
|
|
|
|
|
|
|
|
impl TestData {
|
|
|
|
fn new(inner: Arc<AtomicUsize>) -> Self {
|
|
|
|
let _ = inner.fetch_add(1, Ordering::SeqCst);
|
|
|
|
Self(inner)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for TestData {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
let inner = self.0.clone();
|
|
|
|
let _ = inner.fetch_add(1, Ordering::SeqCst);
|
|
|
|
Self(inner)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for TestData {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
let _ = self.0.fetch_sub(1, Ordering::SeqCst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let num = Arc::new(AtomicUsize::new(0));
|
|
|
|
let data = TestData::new(num.clone());
|
|
|
|
assert_eq!(num.load(Ordering::SeqCst), 1);
|
|
|
|
|
|
|
|
let srv = test::start(move || {
|
|
|
|
let data = data.clone();
|
|
|
|
|
|
|
|
App::new()
|
|
|
|
.data(data)
|
|
|
|
.service(web::resource("/").to(|_data: Data<TestData>| async { "ok" }))
|
|
|
|
});
|
|
|
|
|
|
|
|
assert!(srv.get("/").send().await.unwrap().status().is_success());
|
|
|
|
srv.stop().await;
|
|
|
|
|
|
|
|
assert_eq!(num.load(Ordering::SeqCst), 0);
|
|
|
|
}
|
2020-05-15 23:27:03 +00:00
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_data_from_arc() {
|
|
|
|
let data_new = Data::new(String::from("test-123"));
|
|
|
|
let data_from_arc = Data::from(Arc::new(String::from("test-123")));
|
|
|
|
assert_eq!(data_new.0, data_from_arc.0)
|
|
|
|
}
|
2019-03-17 04:09:11 +00:00
|
|
|
}
|