diff --git a/.gitignore b/.gitignore index c2d0ed8..5026104 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ Cargo.lock /target test.db +test.db-journal diff --git a/src/main.rs b/src/main.rs index 9f2c680..e118d47 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,9 +19,9 @@ async fn main() -> Result<(), Box> { db_info.create_table().await.unwrap_or_else(|e: Box|{ info!("The table have been created. Don't care this Error!!!!!:{}",e); }); - word_entity::tests::insert_tests_value(&db_info.conn).await.unwrap_or_else(|e: Box|{ - error!("Cannot write data into database.The details are as follows:\n{}",e); - }); + // word_entity::tests::insert_tests_value(&db_info.conn).await.unwrap_or_else(|e: Box|{ + // error!("Cannot write data into database.The details are as follows:\n{}",e); + // }); let parsed_object: Vec = match parse_json::parse("word.json").await { Ok(o)=>{ o @@ -35,6 +35,17 @@ async fn main() -> Result<(), Box> { info!("parsed object Ok!"); info!("object[0]={:?}",parsed_object[0]); + + let mut word_orm_obj:Vec=vec![]; + + for i in parsed_object{ + word_orm_obj.push(i.into()); + } + + word_entity::add_to_database(word_orm_obj, &db_info.conn) + .await + .map_err(|e|{error!("add to database error");error!("{}",e);exit(1)}) + .unwrap(); return Ok(()); } diff --git a/src/parse_json/json_object.rs b/src/parse_json/json_object.rs index 80f1f07..a37b3ea 100644 --- a/src/parse_json/json_object.rs +++ b/src/parse_json/json_object.rs @@ -2,8 +2,6 @@ use serde::{Serialize,Deserialize}; #[derive(Clone, Debug,Serialize,Deserialize)] pub struct Word{ - #[serde(skip)] - pub id: i32, pub bsm: String, pub hz:String, #[serde(alias="pyJs")] diff --git a/src/word_entity.rs b/src/word_entity.rs index 1f0db79..f69d3aa 100644 --- a/src/word_entity.rs +++ b/src/word_entity.rs @@ -1,6 +1,12 @@ +use std::process::exit; + +use log::error; use sea_orm::entity::prelude::*; use serde::{Deserialize,Serialize}; +use crate::parse_json::json_object; +pub use renew::add_to_database as add_to_database; pub mod tests; +pub mod renew; #[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel,Serialize,Deserialize)] #[sea_orm(table_name = "words")] @@ -14,6 +20,24 @@ pub struct Model{ pub py_js: String, } +impl From for Model{ + fn from(obj:json_object::Word)->Self{ + Model{ + id:0, + bsm:obj.bsm, + hz:obj.hz, + py_js:match serde_json::to_string(&obj.py_js) { + Ok(o)=>o, + Err(e)=>{ + error!("Cannot let {:?} parse to String",obj.py_js); + error!("{}",e); + exit(1); + } + } + } + } +} + #[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] pub enum Relation { // #[sea_orm(has_many = "super::fruit::Entity")] diff --git a/src/word_entity/renew.rs b/src/word_entity/renew.rs new file mode 100644 index 0000000..39c72cb --- /dev/null +++ b/src/word_entity/renew.rs @@ -0,0 +1,25 @@ +use std::error::Error; +use sea_orm::{ActiveModelTrait, ActiveValue, DatabaseConnection}; + +use super::{ActiveModel, Model}; + +pub async fn add_to_database(objs:Vec,db:&DatabaseConnection)->Result<(),Box>{ + let mut tasks = vec![]; + for i in objs{ + let inner_db: DatabaseConnection = db.clone(); + tasks.push(tokio::spawn(async move{ + ActiveModel{ + id:ActiveValue::not_set(), + bsm:ActiveValue::set(i.bsm), + hz:ActiveValue::set(i.hz), + py_js:ActiveValue::set(i.py_js) + }.insert(&inner_db).await + })); + } + + for i in tasks{ + i.await??; + } + + return Ok(()); +} \ No newline at end of file