-
-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
161 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#![allow(missing_docs)] | ||
|
||
use salvo::oapi::extract::*; | ||
use salvo::prelude::*; | ||
use salvo_craft_macros::craft; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[package] | ||
name = "salvo-craft" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
homepage = { workspace = true } | ||
repository = { workspace = true } | ||
documentation = "https://docs.rs/salvo-craft" | ||
readme = "README.md" | ||
description = "Salvo Handler modular craft." | ||
keywords = ["http", "async", "web", "framework", "server"] | ||
categories = [ | ||
"web-programming::http-server", | ||
"web-programming::websocket", | ||
"network-programming", | ||
"asynchronous", | ||
] | ||
authors = ["Andeya Lee <[email protected]>"] | ||
|
||
[dependencies] | ||
salvo-craft-macros = { workspace = true } | ||
|
||
[dev-dependencies] | ||
salvo = { path = "../salvo", features = ["oapi"] } | ||
tokio.workspace = true | ||
|
||
[lints] | ||
workspace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# salvo-craft | ||
|
||
[`Salvo`](https://github.com/salvo-rs/salvo) `Handler` modular craft macros. | ||
|
||
[![Crates.io](https://img.shields.io/crates/v/salvo-craft)](https://crates.io/crates/salvo-craft) | ||
[![Documentation](https://shields.io/docsrs/salvo-craft)](https://docs.rs/salvo-craft) | ||
|
||
## `#[craft]` | ||
|
||
`#[craft]` is an attribute macro used to batch convert methods in an `impl` block into [`Salvo`'s `Handler`](https://github.com/salvo-rs/salvo). | ||
|
||
```rust | ||
use salvo::oapi::extract::*; | ||
use salvo::prelude::*; | ||
use salvo_craft::craft; | ||
use std::sync::Arc; | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
let service = Arc::new(Service::new(1)); | ||
let router = Router::new() | ||
.push(Router::with_path("add1").get(service.add1())) | ||
.push(Router::with_path("add2").get(service.add2())) | ||
.push(Router::with_path("add3").get(Service::add3())); | ||
let acceptor = TcpListener::new("127.0.0.1:5800").bind().await; | ||
Server::new(acceptor).serve(router).await; | ||
} | ||
|
||
#[derive(Clone)] | ||
pub struct Service { | ||
state: i64, | ||
} | ||
|
||
#[craft] | ||
impl Service { | ||
fn new(state: i64) -> Self { | ||
Self { state } | ||
} | ||
/// doc line 1 | ||
/// doc line 2 | ||
#[craft(handler)] | ||
fn add1(&self, left: QueryParam<i64, true>, right: QueryParam<i64, true>) -> String { | ||
(self.state + *left + *right).to_string() | ||
} | ||
/// doc line 3 | ||
/// doc line 4 | ||
#[craft(handler)] | ||
pub(crate) fn add2( | ||
self: ::std::sync::Arc<Self>, | ||
left: QueryParam<i64, true>, | ||
right: QueryParam<i64, true>, | ||
) -> String { | ||
(self.state + *left + *right).to_string() | ||
} | ||
/// doc line 5 | ||
/// doc line 6 | ||
#[craft(handler)] | ||
pub fn add3(left: QueryParam<i64, true>, right: QueryParam<i64, true>) -> String { | ||
(*left + *right).to_string() | ||
} | ||
} | ||
``` | ||
|
||
Sure, you can also replace `#[craft(handler)]` with `#[craft(endpoint(...))]`. | ||
|
||
NOTE: If the receiver of a method is `&self`, you need to implement the `Clone` trait for the type. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#![allow(missing_docs)] | ||
|
||
use salvo::oapi::extract::*; | ||
use salvo::prelude::*; | ||
use salvo_craft::craft; | ||
use std::sync::Arc; | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
let service = Arc::new(Service::new(1)); | ||
let router = Router::new() | ||
.push(Router::with_path("add1").get(service.add1())) | ||
.push(Router::with_path("add2").get(service.add2())) | ||
.push(Router::with_path("add3").get(Service::add3())); | ||
let doc = OpenApi::new("Example API", "0.0.1").merge_router(&router); | ||
let router = router | ||
.push(doc.into_router("/api-doc/openapi.json")) | ||
.push(SwaggerUi::new("/api-doc/openapi.json").into_router("swagger-ui")); | ||
let acceptor = TcpListener::new("127.0.0.1:5800").bind().await; | ||
Server::new(acceptor).serve(router).await; | ||
} | ||
|
||
#[derive(Clone)] | ||
pub struct Service { | ||
state: i64, | ||
} | ||
|
||
#[craft] | ||
impl Service { | ||
fn new(state: i64) -> Self { | ||
Self { state } | ||
} | ||
/// doc line 1 | ||
/// doc line 2 | ||
#[craft(handler)] | ||
fn add1(&self, left: QueryParam<i64, true>, right: QueryParam<i64, true>) -> String { | ||
(self.state + *left + *right).to_string() | ||
} | ||
/// doc line 3 | ||
/// doc line 4 | ||
#[craft(endpoint)] | ||
pub(crate) fn add2( | ||
self: ::std::sync::Arc<Self>, | ||
left: QueryParam<i64, true>, | ||
right: QueryParam<i64, true> | ||
) -> String { | ||
(self.state + *left + *right).to_string() | ||
} | ||
/// doc line 5 | ||
/// doc line 6 | ||
#[craft(endpoint(responses((status_code = 400, description = "Wrong request parameters."))))] | ||
pub fn add3(left: QueryParam<i64, true>, right: QueryParam<i64, true>) -> String { | ||
(*left + *right).to_string() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
//! [`Salvo`](https://github.com/salvo-rs/salvo) `Handler` modular craft. | ||
pub use salvo_craft_macros::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters