使用函数装饰时,如何将应用程序数据传递到 actix-web 中的服务路由处理程序函数?

Pau*_*och 3 global-variables rust actix-web

我在文档中找到了如何创建受互斥体保护的全局状态的示例,该状态在可供所有路由处理程序使用的处理线程之间共享。完美的!但是,我更喜欢使用附加到我的函数的属性来连接我的路由处理程序。我不知道使用属性函数并传递全局状态的语法(如果允许)。

以下是 actix-web 文档中的示例,来自https://docs.rs/actix-web/1.0.2/actix_web/web/struct.Data.html

use std::sync::Mutex;
use actix_web::{web, App};

struct MyData {
    counter: usize,
}

/// Use `Data<T>` extractor to access data in handler.
fn index(data: web::Data<Mutex<MyData>>) {
    let mut data = data.lock().unwrap();
    data.counter += 1;
}

fn main() {
    let data = web::Data::new(Mutex::new(MyData{ counter: 0 }));

    let app = App::new()
        // Store `MyData` in application storage.
        .register_data(data.clone())
        .service(
            web::resource("/index.html").route(
                web::get().to(index)));
}
Run Code Online (Sandbox Code Playgroud)

请注意命名的路由处理程序index是如何传递的web::Data

现在这里是我的代码的一些片段。

use actix_web::{get, App, HttpResponse, HttpServer, Responder};
pub mod request;
pub mod routes;

const SERVICE_NAME : &str = "Shy Rules Engine";
const SERVICE_VERSION : &str  = "0.1";

#[get("/")]
fn index() -> impl Responder {
    HttpResponse::Ok().body(format!("{} version {}", SERVICE_NAME, SERVICE_VERSION))
}

mod expression_execute {

  #[post("/expression/execute")]
  fn route(req: web::Json<ExpressionExecuteRequest>) -> HttpResponse {

    // ... lots of code omitted ...

    if response.has_error() {
        HttpResponse::Ok().json(response)
    }
    else {
        HttpResponse::BadRequest().json(response)
    }
  }

}

pub fn shy_service(ip : &str, port : &str) {
    HttpServer::new(|| {
        App::new()
            .service(index)
            .service(expression_execute::route)
    })
    .bind(format!("{}:{}", ip, port))
    .unwrap()
    .run()
    .unwrap();
}

Run Code Online (Sandbox Code Playgroud)

请注意我如何调用方法App::service来连接我的路由处理程序。

另请注意我的路由处理程序如何未接收全局状态(因为我尚未将其添加到我的应用程序中)。如果我使用与文档类似的模式register_data来创建全局应用程序数据,我需要对我的方法签名、getpost属性以及其他任何内容进行哪些更改,以便我可以将该全局状态传递给处理程序?

或者是否无法使用getpost属性来访问全局状态?

edw*_*rdw 5

您列出的两种情况实际上没有太大区别:

//# actix-web = "1.0.8"
use actix_web::{get, web, App, HttpResponse, HttpServer, Responder};
use std::sync::Mutex;

const SERVICE_NAME : &str = "Shy Rules Engine";
const SERVICE_VERSION : &str  = "0.1";

struct MyData {
    counter: usize,
}

#[get("/")]
fn index(data: web::Data<Mutex<MyData>>) -> impl Responder {
    let mut data = data.lock().unwrap();
    data.counter += 1;
    println!("Endpoint visited: {}", data.counter);
    HttpResponse::Ok().body(format!("{} version {}", SERVICE_NAME, SERVICE_VERSION))
}

pub fn shy_service(ip : &str, port : &str) {
    let data = web::Data::new(Mutex::new(MyData{ counter: 0 }));

    HttpServer::new(move || {
        App::new()
            .register_data(data.clone())
            .service(index)
    })
    .bind(format!("{}:{}", ip, port))
    .unwrap()
    .run()
    .unwrap();
}

fn main() {
    shy_service("127.0.0.1", "8080");
}
Run Code Online (Sandbox Code Playgroud)

curl您可以简单地通过http 端点来验证它是否有效。对于多个提取器,您必须使用元组:

    #[post("/expression/execute")]
    fn route((req, data): (web::Json<ExpressionExecuteRequest>, web::Data<Mutex<MyData>>)) -> HttpResponse {
        unimplemented!()
    }
Run Code Online (Sandbox Code Playgroud)

  • 值得注意的是,在 [版本 2.0.0](https://github.com/easyaspi314/actix-web/blob/master/MIGRATION.md) 中,actix-web 中的 `register_data` 被重命名为 `app_data`。 (2认同)