Anki/rslib/src/deckconf/schema11.rs
2020-06-01 18:11:40 +10:00

337 lines
10 KiB
Rust

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
use super::{DeckConf, DeckConfID};
use crate::backend_proto::deck_config_inner::NewCardOrder;
use crate::backend_proto::DeckConfigInner;
use crate::{serde::default_on_invalid, timestamp::TimestampSecs, types::Usn};
use serde_aux::field_attributes::deserialize_number_from_string;
use serde_derive::{Deserialize, Serialize};
use serde_json::Value;
use serde_repr::{Deserialize_repr, Serialize_repr};
use serde_tuple::Serialize_tuple;
use std::collections::HashMap;
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
#[serde(rename_all = "camelCase")]
pub struct DeckConfSchema11 {
#[serde(deserialize_with = "deserialize_number_from_string")]
pub(crate) id: DeckConfID,
#[serde(rename = "mod", deserialize_with = "deserialize_number_from_string")]
pub(crate) mtime: TimestampSecs,
pub(crate) name: String,
pub(crate) usn: Usn,
max_taken: i32,
autoplay: bool,
#[serde(deserialize_with = "default_on_invalid")]
timer: u8,
#[serde(default)]
replayq: bool,
pub(crate) new: NewConfSchema11,
pub(crate) rev: RevConfSchema11,
pub(crate) lapse: LapseConfSchema11,
#[serde(rename = "dyn", default, deserialize_with = "default_on_invalid")]
dynamic: bool,
#[serde(flatten)]
other: HashMap<String, Value>,
}
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
#[serde(rename_all = "camelCase")]
pub struct NewConfSchema11 {
#[serde(default)]
bury: bool,
#[serde(deserialize_with = "default_on_invalid")]
delays: Vec<f32>,
initial_factor: u16,
#[serde(deserialize_with = "default_on_invalid")]
ints: NewCardIntervals,
#[serde(deserialize_with = "default_on_invalid")]
pub(crate) order: NewCardOrderSchema11,
#[serde(deserialize_with = "default_on_invalid")]
pub(crate) per_day: u32,
#[serde(flatten)]
other: HashMap<String, Value>,
}
#[derive(Serialize_tuple, Deserialize, Debug, PartialEq, Clone)]
pub struct NewCardIntervals {
good: u16,
easy: u16,
_unused: u16,
}
impl Default for NewCardIntervals {
fn default() -> Self {
Self {
good: 1,
easy: 4,
_unused: 7,
}
}
}
#[derive(Serialize_repr, Deserialize_repr, Debug, PartialEq, Clone)]
#[repr(u8)]
pub enum NewCardOrderSchema11 {
Random = 0,
Due = 1,
}
impl Default for NewCardOrderSchema11 {
fn default() -> Self {
Self::Due
}
}
fn hard_factor_default() -> f32 {
1.2
}
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
#[serde(rename_all = "camelCase")]
pub struct RevConfSchema11 {
#[serde(default)]
bury: bool,
ease4: f32,
ivl_fct: f32,
max_ivl: u32,
#[serde(deserialize_with = "default_on_invalid")]
pub(crate) per_day: u32,
#[serde(default = "hard_factor_default")]
hard_factor: f32,
#[serde(flatten)]
other: HashMap<String, Value>,
}
#[derive(Serialize_repr, Deserialize_repr, Debug, PartialEq, Clone)]
#[repr(u8)]
pub enum LeechAction {
Suspend = 0,
TagOnly = 1,
}
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
#[serde(rename_all = "camelCase")]
pub struct LapseConfSchema11 {
#[serde(deserialize_with = "default_on_invalid")]
delays: Vec<f32>,
#[serde(deserialize_with = "default_on_invalid")]
leech_action: LeechAction,
leech_fails: u32,
min_int: u32,
mult: f32,
#[serde(flatten)]
other: HashMap<String, Value>,
}
impl Default for LeechAction {
fn default() -> Self {
LeechAction::Suspend
}
}
impl Default for RevConfSchema11 {
fn default() -> Self {
RevConfSchema11 {
bury: false,
ease4: 1.3,
ivl_fct: 1.0,
max_ivl: 36500,
per_day: 200,
hard_factor: 1.2,
other: Default::default(),
}
}
}
impl Default for NewConfSchema11 {
fn default() -> Self {
NewConfSchema11 {
bury: false,
delays: vec![1.0, 10.0],
initial_factor: 2500,
ints: NewCardIntervals::default(),
order: NewCardOrderSchema11::default(),
per_day: 20,
other: Default::default(),
}
}
}
impl Default for LapseConfSchema11 {
fn default() -> Self {
LapseConfSchema11 {
delays: vec![10.0],
leech_action: LeechAction::default(),
leech_fails: 8,
min_int: 1,
mult: 0.0,
other: Default::default(),
}
}
}
impl Default for DeckConfSchema11 {
fn default() -> Self {
DeckConfSchema11 {
id: DeckConfID(0),
mtime: TimestampSecs(0),
name: "Default".to_string(),
usn: Usn(0),
max_taken: 60,
autoplay: true,
timer: 0,
replayq: true,
dynamic: false,
new: Default::default(),
rev: Default::default(),
lapse: Default::default(),
other: Default::default(),
}
}
}
// schema11 -> schema15
impl From<DeckConfSchema11> for DeckConf {
fn from(mut c: DeckConfSchema11) -> DeckConf {
// merge any json stored in new/rev/lapse into top level
if !c.new.other.is_empty() {
if let Ok(val) = serde_json::to_value(c.new.other) {
c.other.insert("new".into(), val);
}
}
if !c.rev.other.is_empty() {
if let Ok(val) = serde_json::to_value(c.rev.other) {
c.other.insert("rev".into(), val);
}
}
if !c.lapse.other.is_empty() {
if let Ok(val) = serde_json::to_value(c.lapse.other) {
c.other.insert("lapse".into(), val);
}
}
let other_bytes = if c.other.is_empty() {
vec![]
} else {
serde_json::to_vec(&c.other).unwrap_or_default()
};
DeckConf {
id: c.id,
name: c.name,
mtime_secs: c.mtime,
usn: c.usn,
inner: DeckConfigInner {
learn_steps: c.new.delays,
relearn_steps: c.lapse.delays,
disable_autoplay: !c.autoplay,
cap_answer_time_to_secs: c.max_taken.max(0) as u32,
visible_timer_secs: c.timer as u32,
skip_question_when_replaying_answer: !c.replayq,
new_per_day: c.new.per_day,
reviews_per_day: c.rev.per_day,
bury_new: c.new.bury,
bury_reviews: c.rev.bury,
initial_ease: (c.new.initial_factor as f32) / 10.0,
easy_multiplier: c.rev.ease4,
hard_multiplier: c.rev.hard_factor,
lapse_multiplier: c.lapse.mult,
interval_multiplier: c.rev.ivl_fct,
maximum_review_interval: c.rev.max_ivl,
minimum_review_interval: c.lapse.min_int,
graduating_interval_good: c.new.ints.good as u32,
graduating_interval_easy: c.new.ints.easy as u32,
new_card_order: match c.new.order {
NewCardOrderSchema11::Random => NewCardOrder::Random,
NewCardOrderSchema11::Due => NewCardOrder::Due,
} as i32,
leech_action: c.lapse.leech_action as i32,
leech_threshold: c.lapse.leech_fails,
other: other_bytes,
},
}
}
}
// schema 15 -> schema 11
impl From<DeckConf> for DeckConfSchema11 {
fn from(c: DeckConf) -> DeckConfSchema11 {
// split extra json up
let mut top_other: HashMap<String, Value>;
let mut new_other = Default::default();
let mut rev_other = Default::default();
let mut lapse_other = Default::default();
if c.inner.other.is_empty() {
top_other = Default::default();
} else {
top_other = serde_json::from_slice(&c.inner.other).unwrap_or_default();
if let Some(new) = top_other.remove("new") {
let val: HashMap<String, Value> = serde_json::from_value(new).unwrap_or_default();
new_other = val;
}
if let Some(rev) = top_other.remove("rev") {
let val: HashMap<String, Value> = serde_json::from_value(rev).unwrap_or_default();
rev_other = val;
}
if let Some(lapse) = top_other.remove("lapse") {
let val: HashMap<String, Value> = serde_json::from_value(lapse).unwrap_or_default();
lapse_other = val;
}
}
let i = c.inner;
let new_order = i.new_card_order();
DeckConfSchema11 {
id: c.id,
mtime: c.mtime_secs,
name: c.name,
usn: c.usn,
max_taken: i.cap_answer_time_to_secs as i32,
autoplay: !i.disable_autoplay,
timer: i.visible_timer_secs as u8,
replayq: !i.skip_question_when_replaying_answer,
dynamic: false,
new: NewConfSchema11 {
bury: i.bury_new,
delays: i.learn_steps,
initial_factor: (i.initial_ease * 10.0) as u16,
ints: NewCardIntervals {
good: i.graduating_interval_good as u16,
easy: i.graduating_interval_easy as u16,
_unused: 0,
},
order: match new_order {
NewCardOrder::Random => NewCardOrderSchema11::Random,
NewCardOrder::Due => NewCardOrderSchema11::Due,
},
per_day: i.new_per_day,
other: new_other,
},
rev: RevConfSchema11 {
bury: i.bury_reviews,
ease4: i.easy_multiplier,
ivl_fct: i.interval_multiplier,
max_ivl: i.maximum_review_interval,
per_day: i.reviews_per_day,
hard_factor: i.hard_multiplier,
other: rev_other,
},
lapse: LapseConfSchema11 {
delays: i.relearn_steps,
leech_action: match i.leech_action {
1 => LeechAction::TagOnly,
_ => LeechAction::Suspend,
},
leech_fails: i.leech_threshold,
min_int: i.minimum_review_interval,
mult: i.lapse_multiplier,
other: lapse_other,
},
other: top_other,
}
}
}