Skip to content

Commit 36a4704

Browse files
committed
Issue for rust analyzer
1 parent d05df75 commit 36a4704

File tree

11 files changed

+37
-51
lines changed

11 files changed

+37
-51
lines changed

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"rust-analyzer.linkedProjects": ["./valar/Cargo.toml", "./valar/Cargo.toml"]
3+
}

boilerplate/src/app.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1+
use std::sync::Arc;
12
use std::time::Duration;
23

34
use valar::database::Database;
45
use valar::services::cache::MemoryCache;
5-
use valar::services::Cache;
6+
use valar::services::Cacheable;
67
use valar::Application;
78

89
pub struct App {
910
pub database: Database,
10-
pub cache: Box<dyn Cache + Send + Sync>,
11+
pub cache: Arc<Cacheable>,
1112
}
1213

1314
impl Application for App {}
1415

1516
impl App {
16-
fn cache() -> impl Cache + Send + Sync {
17-
MemoryCache::with_purge_interval(Duration::from_secs(1))
17+
fn cache() -> Arc<Cacheable> {
18+
Arc::new(MemoryCache::new(Duration::from_secs(1)))
1819
}
1920

2021
pub async fn create() -> Self {
@@ -24,7 +25,7 @@ impl App {
2425

2526
Self {
2627
database,
27-
cache: Box::new(Self::cache()),
28+
cache: Self::cache(),
2829
}
2930
}
3031

boilerplate/src/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
pub mod app;
22
pub mod http;
33
pub mod routes;
4-
54
use std::sync::Arc;
65

76
use valar::http::Server;

boilerplate/src/routes.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ use crate::app::App;
1212
use crate::http::controllers::counter;
1313

1414
impl App {
15-
pub fn router() -> Result<Arc<Router<Self, Compiled>>, Error> {
16-
let web = Route::group([
15+
pub fn web() -> Route<App> {
16+
Route::group([
1717
Route::get("/", counter::show),
1818
Route::post("/", counter::increment),
19-
]);
19+
])
20+
}
21+
22+
pub fn router() -> Result<Arc<Router<Self, Compiled>>, Error> {
23+
let web = Self::web();
2024

2125
let router = Router::from_iter([web.middleware(Session)]).middleware(Logger);
2226
let router = Arc::new(router.compile()?);

valar/src/facades.rs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pub mod cache;
2+
3+
pub trait Facade<T> {
4+
fn facade() -> T;
5+
}

valar/src/facades/cache.rs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
use std::sync::Arc;
2+
3+
use crate::services::Cacheable;
4+
5+
pub struct Cache(Arc<Cacheable>);
6+
7+
impl Cache {
8+
pub fn new(cache: Arc<Cacheable>) -> Self {
9+
Self(cache)
10+
}
11+
}

valar/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
pub mod app;
22
pub mod database;
3+
pub mod facades;
34
pub mod http;
45
pub mod routing;
56
pub mod services;

valar/src/services.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
pub mod cache;
2-
pub mod session;
32

43
pub use cache::Cache;
5-
pub use session::Session;
4+
pub use cache::Cacheable;

valar/src/services/cache.rs

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ pub enum Error {
1616
Expired(String),
1717
}
1818

19+
pub type Cacheable = dyn Cache + Send + Sync;
20+
1921
#[async_trait]
2022
pub trait Cache {
2123
async fn get(&self, key: &str) -> Result<String, Error>;

valar/src/services/cache/memory.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub struct MemoryCache {
1919
}
2020

2121
impl MemoryCache {
22-
pub fn with_purge_interval(purge_interval: Duration) -> Self {
22+
pub fn new(purge_interval: Duration) -> Self {
2323
let memory = Self {
2424
state: Arc::default(),
2525
expirations: Arc::default(),

valar/src/services/session.rs

-39
This file was deleted.

0 commit comments

Comments
 (0)