Merge branch 'master' into rocket
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Dmitry Belyaev 2023-08-18 11:08:19 +03:00
commit e221419b83
Signed by: b4tman
GPG Key ID: 41A00BF15EA7E5F3
4 changed files with 1560 additions and 1051 deletions

View File

@ -1,9 +1,10 @@
kind: pipeline kind: pipeline
type: docker
name: default name: default
steps: steps:
- name: build - name: build
image: rustlang/rust:nightly-alpine image: rust:1-alpine
commands: commands:
- apk add --no-cache musl-dev - apk add --no-cache musl-dev
- cargo fetch - cargo fetch

2486
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -11,18 +11,14 @@ readme = "README.md"
[dependencies] [dependencies]
rand="0.8" rand="0.8"
serde="1.0" rocket = { version = "=0.5.0-rc.3", features = ["json"] }
serde_json="1.0" rocket_dyn_templates = { version = "=0.1.0-rc.3", features = ["tera"] }
rocket="0.4" chgk_ledb_lib = {git = "https://gitea.b4tman.ru/b4tman/chgk_ledb.git", rev="699478f85e", package="chgk_ledb_lib", features=["async"]}
chgk_ledb_lib = {git = "https://gitea.b4tman.ru/b4tman/chgk_ledb.git", rev="8120a996a3", package="chgk_ledb_lib"} mini-moka = "0.10.0"
[dependencies.rocket_contrib]
version = "0.4"
default-features = false
features = ["serve", "tera_templates"]
[profile.release] [profile.release]
opt-level = 3 opt-level = 3
debug = false debug = false
lto = true lto = true
strip = true strip = true

View File

@ -1,25 +1,24 @@
#![feature(proc_macro_hygiene, decl_macro)]
extern crate serde;
extern crate serde_json;
#[macro_use] #[macro_use]
extern crate rocket; extern crate rocket;
extern crate rocket_contrib;
use rocket::fs::FileServer;
use rocket::response::Redirect; use rocket::response::Redirect;
use rocket::{Rocket, State}; use rocket::State;
use rocket_contrib::serve::StaticFiles; use rocket_dyn_templates::tera;
use rocket_contrib::templates::Template; use rocket_dyn_templates::Template;
use rand::distributions::Uniform; use rand::distributions::Uniform;
use rand::Rng; use rand::Rng;
use std::ops::Deref;
use std::sync::Arc; use std::sync::Arc;
use chgk_ledb_lib::db; use chgk_ledb_lib::async_db;
use chgk_ledb_lib::questions::Question; use chgk_ledb_lib::questions::Question;
use mini_moka::sync::Cache;
use std::time::Duration;
const DB_FILENAME: &str = "db.dat"; const DB_FILENAME: &str = "db.dat";
trait ErrorEmpty { trait ErrorEmpty {
@ -34,9 +33,27 @@ impl<T, E> ErrorEmpty for Result<T, E> {
} }
} }
type DataBaseInner = db::Reader<Question>; #[derive(Clone)]
struct ArcTemplateData {
value: Arc<tera::Value>,
}
impl ArcTemplateData {
fn new(value: tera::Value) -> ArcTemplateData {
ArcTemplateData {
value: Arc::new(value),
}
}
fn render(&self, name: &'static str) -> Template {
Template::render(name, self.value.deref())
}
}
type TemplateCache = mini_moka::sync::Cache<usize, ArcTemplateData>;
type DataBaseInner = async_db::Reader<Question>;
type DataBase = Arc<DataBaseInner>; type DataBase = Arc<DataBaseInner>;
struct AppState{ struct AppState {
db: DataBase, db: DataBase,
database_distribution: Uniform<usize>, database_distribution: Uniform<usize>,
} }
@ -49,7 +66,7 @@ impl From<DataBaseInner> for AppState {
Self { Self {
db, db,
database_distribution database_distribution,
} }
} }
} }
@ -59,19 +76,33 @@ fn random_question_id(database_distribution: &Uniform<usize>) -> usize {
rng.sample(database_distribution) rng.sample(database_distribution)
} }
fn get_question(db: &DataBase, id: usize) -> Result<Question, ()> { async fn get_question(db: &DataBase, id: usize) -> Result<Question, ()> {
db.get(id - 1).err_empty() db.get(id - 1).await.err_empty()
} }
fn show_question_details(template_name: &'static str, data: &AppState, id: usize) -> Template { async fn show_question_details(
match get_question(&data.db, id) { template_name: &'static str,
data: &AppState,
cache: &TemplateCache,
id: usize,
) -> Template {
if let Some(value) = cache.get(&id) {
return value.render(template_name);
}
match get_question(&data.db, id).await {
Ok(question) => { Ok(question) => {
let mut context = serde_json::to_value(question).expect("question serialize"); let mut context = tera::to_value(question).expect("question serialize");
if context.is_object() { if context.is_object() {
let next_id = random_question_id(&data.database_distribution); let next_id = random_question_id(&data.database_distribution);
context["next"] = serde_json::to_value(next_id).expect("question id serialize"); context["next"] = tera::to_value(next_id).expect("question id serialize");
} }
Template::render(template_name, &context)
let value = ArcTemplateData::new(context);
let result = value.render(template_name);
cache.insert(id, value);
result
} }
Err(_) => { Err(_) => {
use std::collections::HashMap; use std::collections::HashMap;
@ -82,13 +113,17 @@ fn show_question_details(template_name: &'static str, data: &AppState, id: usize
} }
#[get("/q/<id>")] #[get("/q/<id>")]
fn show_question(data: State<AppState>, id: usize) -> Template { async fn show_question(
show_question_details("question", data.inner(), id) data: &State<AppState>,
cache: &State<TemplateCache>,
id: usize,
) -> Template {
show_question_details("question", data.inner(), cache.inner(), id).await
} }
#[get("/q/<id>/a")] #[get("/q/<id>/a")]
fn show_answer(data: State<AppState>, id: usize) -> Template { async fn show_answer(data: &State<AppState>, cache: &State<TemplateCache>, id: usize) -> Template {
show_question_details("answer", data.inner(), id) show_question_details("answer", data.inner(), cache.inner(), id).await
} }
#[get("/q/0")] #[get("/q/0")]
@ -102,7 +137,7 @@ fn answer0() -> Redirect {
} }
#[get("/")] #[get("/")]
fn index(data: State<AppState>) -> Redirect { fn index(data: &State<AppState>) -> Redirect {
let id = random_question_id(&data.database_distribution); let id = random_question_id(&data.database_distribution);
Redirect::temporary(format!("/q/{}", id)) Redirect::temporary(format!("/q/{}", id))
} }
@ -114,21 +149,26 @@ fn not_found(_req: &rocket::Request) -> Template {
Template::render("404", context) Template::render("404", context)
} }
fn rocket() -> Rocket { #[launch]
let state: AppState = db::Reader::new(DB_FILENAME, 2048).expect("open db").into(); async fn rocket() -> _ {
let state: AppState = async_db::Reader::new(DB_FILENAME)
.await
.expect("open db")
.into();
let cache: TemplateCache = Cache::builder()
.time_to_idle(Duration::from_secs(15 * 60))
.max_capacity(300)
.build();
rocket::ignite() rocket::build()
.manage(state) .manage(state)
.register(catchers![not_found]) .manage(cache)
.register("/", catchers![not_found])
.mount( .mount(
"/", "/",
routes![index, show_question, show_answer, question0, answer0], routes![index, show_question, show_answer, question0, answer0],
) )
.mount("/q", routes![index]) .mount("/q", routes![index])
.mount("/q/static", StaticFiles::from("static/")) .mount("/q/static", FileServer::from("static/"))
.attach(Template::fairing()) .attach(Template::fairing())
} }
fn main() {
rocket().launch();
}