2016-03-28 00:22:17 +08:00
|
|
|
use rustc_serialize::json::{Json, ToJson};
|
2015-07-17 01:26:16 +08:00
|
|
|
use std::path::PathBuf;
|
2015-07-19 06:08:38 +08:00
|
|
|
use std::collections::BTreeMap;
|
2015-07-17 01:26:16 +08:00
|
|
|
|
2015-07-19 06:08:38 +08:00
|
|
|
#[derive(Debug, Clone)]
|
2015-09-12 02:52:55 +08:00
|
|
|
pub enum BookItem {
|
|
|
|
Chapter(String, Chapter), // String = section
|
|
|
|
Affix(Chapter),
|
|
|
|
Spacer,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Chapter {
|
2015-07-18 06:04:20 +08:00
|
|
|
pub name: String,
|
|
|
|
pub path: PathBuf,
|
|
|
|
pub sub_items: Vec<BookItem>,
|
2015-07-17 01:26:16 +08:00
|
|
|
}
|
|
|
|
|
2015-07-19 06:08:38 +08:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct BookItems<'a> {
|
|
|
|
pub items: &'a [BookItem],
|
|
|
|
pub current_index: usize,
|
|
|
|
pub stack: Vec<(&'a [BookItem], usize)>,
|
2015-07-18 06:04:20 +08:00
|
|
|
}
|
2015-07-17 01:26:16 +08:00
|
|
|
|
2015-07-19 06:08:38 +08:00
|
|
|
|
2015-09-12 02:52:55 +08:00
|
|
|
impl Chapter {
|
2015-07-18 06:04:20 +08:00
|
|
|
pub fn new(name: String, path: PathBuf) -> Self {
|
2015-07-17 01:26:16 +08:00
|
|
|
|
2015-09-12 02:52:55 +08:00
|
|
|
Chapter {
|
2015-07-17 01:26:16 +08:00
|
|
|
name: name,
|
|
|
|
path: path,
|
|
|
|
sub_items: vec![],
|
|
|
|
}
|
|
|
|
}
|
2015-07-19 06:08:38 +08:00
|
|
|
}
|
2015-07-17 01:26:16 +08:00
|
|
|
|
2015-07-19 06:08:38 +08:00
|
|
|
|
2015-09-12 02:52:55 +08:00
|
|
|
impl ToJson for Chapter {
|
2015-07-19 06:08:38 +08:00
|
|
|
fn to_json(&self) -> Json {
|
|
|
|
let mut m: BTreeMap<String, Json> = BTreeMap::new();
|
2015-09-17 10:46:23 +08:00
|
|
|
m.insert("name".to_owned(), self.name.to_json());
|
2016-03-18 05:31:28 +08:00
|
|
|
m.insert("path".to_owned(),
|
|
|
|
self.path
|
|
|
|
.to_str()
|
|
|
|
.expect("Json conversion failed for path")
|
|
|
|
.to_json());
|
2015-07-19 06:08:38 +08:00
|
|
|
m.to_json()
|
2015-07-18 06:04:20 +08:00
|
|
|
}
|
2015-07-19 06:08:38 +08:00
|
|
|
}
|
|
|
|
|
2015-07-18 06:04:20 +08:00
|
|
|
|
2015-07-19 06:08:38 +08:00
|
|
|
|
|
|
|
// Shamelessly copied from Rustbook
|
|
|
|
// (https://github.com/rust-lang/rust/blob/master/src/rustbook/book.rs)
|
|
|
|
impl<'a> Iterator for BookItems<'a> {
|
2015-09-12 02:52:55 +08:00
|
|
|
type Item = &'a BookItem;
|
2015-07-19 06:08:38 +08:00
|
|
|
|
2015-09-12 02:52:55 +08:00
|
|
|
fn next(&mut self) -> Option<&'a BookItem> {
|
2015-07-19 06:08:38 +08:00
|
|
|
loop {
|
|
|
|
if self.current_index >= self.items.len() {
|
|
|
|
match self.stack.pop() {
|
|
|
|
None => return None,
|
|
|
|
Some((parent_items, parent_idx)) => {
|
|
|
|
self.items = parent_items;
|
|
|
|
self.current_index = parent_idx + 1;
|
2016-03-18 05:31:28 +08:00
|
|
|
},
|
2015-07-19 06:08:38 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let cur = self.items.get(self.current_index).unwrap();
|
|
|
|
|
2015-09-17 10:46:23 +08:00
|
|
|
match *cur {
|
|
|
|
BookItem::Chapter(_, ref ch) | BookItem::Affix(ref ch) => {
|
2015-09-12 02:52:55 +08:00
|
|
|
self.stack.push((self.items, self.current_index));
|
|
|
|
self.items = &ch.sub_items[..];
|
|
|
|
self.current_index = 0;
|
|
|
|
},
|
2015-09-17 10:46:23 +08:00
|
|
|
BookItem::Spacer => {
|
2015-09-12 02:52:55 +08:00
|
|
|
self.current_index += 1;
|
2016-03-18 05:31:28 +08:00
|
|
|
},
|
2015-07-19 06:08:38 +08:00
|
|
|
}
|
|
|
|
|
2016-03-18 05:31:28 +08:00
|
|
|
return Some(cur);
|
2015-07-19 06:08:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-17 01:26:16 +08:00
|
|
|
}
|