mirror of
https://github.com/agersant/polaris
synced 2024-11-10 10:14:12 +00:00
Moved index structs out of models module
This commit is contained in:
parent
ac93ec5b02
commit
e7ef07fe6a
3 changed files with 38 additions and 43 deletions
|
@ -11,7 +11,7 @@ use std::time;
|
||||||
|
|
||||||
use config::UserConfig;
|
use config::UserConfig;
|
||||||
use db::DB;
|
use db::DB;
|
||||||
use db::models::*;
|
use db::models::MiscSettings;
|
||||||
use db::schema::*;
|
use db::schema::*;
|
||||||
use errors::*;
|
use errors::*;
|
||||||
use metadata;
|
use metadata;
|
||||||
|
@ -19,6 +19,42 @@ use metadata;
|
||||||
const INDEX_BUILDING_INSERT_BUFFER_SIZE: usize = 1000; // Insertions in each transaction
|
const INDEX_BUILDING_INSERT_BUFFER_SIZE: usize = 1000; // Insertions in each transaction
|
||||||
const INDEX_BUILDING_CLEAN_BUFFER_SIZE: usize = 500; // Insertions in each transaction
|
const INDEX_BUILDING_CLEAN_BUFFER_SIZE: usize = 500; // Insertions in each transaction
|
||||||
|
|
||||||
|
#[derive(Debug, Queryable, Serialize)]
|
||||||
|
pub struct Song {
|
||||||
|
#[serde(skip_serializing)]
|
||||||
|
id: i32,
|
||||||
|
pub path: String,
|
||||||
|
#[serde(skip_serializing)]
|
||||||
|
pub parent: String,
|
||||||
|
pub track_number: Option<i32>,
|
||||||
|
pub disc_number: Option<i32>,
|
||||||
|
pub title: Option<String>,
|
||||||
|
pub artist: Option<String>,
|
||||||
|
pub album_artist: Option<String>,
|
||||||
|
pub year: Option<i32>,
|
||||||
|
pub album: Option<String>,
|
||||||
|
pub artwork: Option<String>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Queryable, Serialize)]
|
||||||
|
pub struct Directory {
|
||||||
|
#[serde(skip_serializing)]
|
||||||
|
id: i32,
|
||||||
|
pub path: String,
|
||||||
|
#[serde(skip_serializing)]
|
||||||
|
pub parent: Option<String>,
|
||||||
|
pub artist: Option<String>,
|
||||||
|
pub year: Option<i32>,
|
||||||
|
pub album: Option<String>,
|
||||||
|
pub artwork: Option<String>,
|
||||||
|
pub date_added: i32,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Serialize)]
|
||||||
|
pub enum CollectionFile {
|
||||||
|
Directory(Directory),
|
||||||
|
Song(Song),
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Insertable)]
|
#[derive(Debug, Insertable)]
|
||||||
#[table_name="songs"]
|
#[table_name="songs"]
|
||||||
|
@ -383,8 +419,6 @@ fn _get_test_db(name: &str) -> DB {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_populate() {
|
fn test_populate() {
|
||||||
use db::models::*;
|
|
||||||
|
|
||||||
let db = _get_test_db("populate.sqlite");
|
let db = _get_test_db("populate.sqlite");
|
||||||
update(&db).unwrap();
|
update(&db).unwrap();
|
||||||
update(&db).unwrap(); // Check that subsequent updates don't run into conflicts
|
update(&db).unwrap(); // Check that subsequent updates don't run into conflicts
|
||||||
|
@ -400,8 +434,6 @@ fn test_populate() {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_metadata() {
|
fn test_metadata() {
|
||||||
use db::models::*;
|
|
||||||
|
|
||||||
let mut target = PathBuf::new();
|
let mut target = PathBuf::new();
|
||||||
target.push("test");
|
target.push("test");
|
||||||
target.push("collection");
|
target.push("collection");
|
||||||
|
|
|
@ -18,6 +18,7 @@ mod index;
|
||||||
mod models;
|
mod models;
|
||||||
mod schema;
|
mod schema;
|
||||||
|
|
||||||
|
use self::index::{CollectionFile, Directory, Song};
|
||||||
pub use self::schema::*;
|
pub use self::schema::*;
|
||||||
pub use self::models::*;
|
pub use self::models::*;
|
||||||
|
|
||||||
|
|
|
@ -1,41 +1,3 @@
|
||||||
// Collection content
|
|
||||||
#[derive(Debug, Queryable, Serialize)]
|
|
||||||
pub struct Song {
|
|
||||||
#[serde(skip_serializing)]
|
|
||||||
id: i32,
|
|
||||||
pub path: String,
|
|
||||||
#[serde(skip_serializing)]
|
|
||||||
pub parent: String,
|
|
||||||
pub track_number: Option<i32>,
|
|
||||||
pub disc_number: Option<i32>,
|
|
||||||
pub title: Option<String>,
|
|
||||||
pub artist: Option<String>,
|
|
||||||
pub album_artist: Option<String>,
|
|
||||||
pub year: Option<i32>,
|
|
||||||
pub album: Option<String>,
|
|
||||||
pub artwork: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Queryable, Serialize)]
|
|
||||||
pub struct Directory {
|
|
||||||
#[serde(skip_serializing)]
|
|
||||||
id: i32,
|
|
||||||
pub path: String,
|
|
||||||
#[serde(skip_serializing)]
|
|
||||||
pub parent: Option<String>,
|
|
||||||
pub artist: Option<String>,
|
|
||||||
pub year: Option<i32>,
|
|
||||||
pub album: Option<String>,
|
|
||||||
pub artwork: Option<String>,
|
|
||||||
pub date_added: i32,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Serialize)]
|
|
||||||
pub enum CollectionFile {
|
|
||||||
Directory(Directory),
|
|
||||||
Song(Song),
|
|
||||||
}
|
|
||||||
|
|
||||||
// Misc Settings
|
// Misc Settings
|
||||||
#[derive(Debug, Queryable)]
|
#[derive(Debug, Queryable)]
|
||||||
pub struct MiscSettings {
|
pub struct MiscSettings {
|
||||||
|
|
Loading…
Reference in a new issue