1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
//! Generate an ePub book from a simple plaintext descriptor //! //! # Library doc //! //! This library is used by `gen-epub-book` itself for all its function and is therefore contains all necessary functions. //! //! ## Data flow //! //! ```text //! Options //! |> parse_descriptor() //! |> EPubBook::from_elements() //! |> EPubBook::normalise_paths() //! |> EPubBook::write_zip() //! ``` //! //! # Executable manpage //! //! Exit values and possible errors: //! //! ```text //! 1 - I/O error //! 2 - parsing error //! 3 - file not found //! 4 - file in wrong state //! 5 - incorrect amount of elements //! 6 - required element missing //! ``` //! //! ## SYNOPSIS //! //! [`gen-epub-book`](https://github.com/nabijaczleweli/gen-epub-book.rs) [OPTIONS] IN_FILE OUT_FILE //! //! ## DESCRIPTION //! //! Generate an ePub book from a simple plaintext descriptor. //! //! ## OPTIONS //! //! -v --verbose //! //! ```text //! Print out more data. //! //! Default: false. //! ``` //! //! IN_FILE //! //! ```text //! File to parse, must exist, must comply with the DESCRIPTOR FORMAT. //! //! Special case: '-' to read from stdin. //! ``` //! //! OUT_FILE //! //! ```text //! File to write the book to, parent directory needn't exist. //! //! Special case: '-' to write to stdout. //! ``` //! //! -S --separator <SEPARATOR> //! //! ```text //! Enable custom separator feature and set the separator. //! //! Default: ":". //! ``` //! //! -I --include [NAME=]PATH //! //! ```text //! Add an additional directory in which to search for files. Order-dependent. //! //! `NAME` is an optional name under which the files will be segregated. //! `PATH` is an existing directory. //! ``` //! //! ## DESCRIPTOR FORMAT //! //! The descriptor consists of multiple lines in the format *"Key: Value"*, unknown //! keys are ignored, lines that don't match the format are ignored. //! //! Name //! //! ```text //! Required: yes //! Type: plaintext //! Value: e-book's title //! Amount: 1 //! ``` //! //! Content //! //! ```text //! Required: no //! Type: file path //! Value: relative path to (X)HTML chunk //! Amount: any //! Remarks: see ADDITIONAL CONTENT PROCESSING //! ``` //! //! String-Content //! //! ```text //! Required: no //! Type: (X)HTML //! Value: (X)HTML string //! Amount: any //! ``` //! //! Image-Content //! //! ```text //! Required: no //! Type: file path //! Value: relative path to image to include in e-book //! Amount: any //! ``` //! //! Network-Image-Content //! //! ```text //! Required: no //! Type: file URL //! Value: URL of image to include in e-book //! Amount: any //! ``` //! //! Cover //! //! ```text //! Required: no //! Type: file path //! Value: relative path to image to use as e-book cover //! Amount: 0-1 //! Remarks: exclusive with Network-Cover //! ``` //! //! Network-Cover //! //! ```text //! Required: no //! Type: file URL //! Value: URL to image to use as e-book cover //! Amount: 0-1 //! Remarks: exclusive with Cover //! ``` //! //! Author //! //! ```text //! Required: yes //! Type: plaintext string //! Value: e-book's author //! Amount: 1 //! ``` //! //! Date //! //! ```text //! Required: yes //! Type: RFC3339-compliant date //! Value: e-book's authoring/publishing date //! Amount: 1 //! Remarks: see FREE DATE FORMAT FEATURE //! ``` //! //! Language //! //! ```text //! Required: yes //! Type: BCP47-compliant language code //! Value: language used in e-book //! Amount: 1 //! ``` //! //! ## ADDITIONAL CONTENT PROCESSING //! //! When adding content using the `Content` entry, the file will additinally be //! searched for a comment specifying the its name in the TOC in this format: //! //! ```text //! <!-- ePub title: "TOC_NAME" --> //! ``` //! //! Where `TOC_NAME` is a string not containing the *"* character. //! //! This will, on e-book readers, allow users to jump directly to the content //! represented by the document containing this entry. //! //! Optional. //! //! ## FREE DATE FORMAT FEATURE //! //! With the -D/--free-date flag, you can enable the //! [free date format feature](https://nabijaczleweli.xyz/content/gen-epub-book/programmer.html#features-free-date-format). //! //! The supported formats therewith are therefore: //! //! * RFC3339 (e.g. "2017-02-08T15:30:18+01:00"), //! * RFC2822 (e.g. "Wed, 08 Feb 2017 15:30:18 +0100"), //! * Unix timestamp w/timezone (e.g. "1486564218+01:00"). #[macro_use] extern crate lazy_static; extern crate mime_guess; extern crate reqwest; extern crate chrono; extern crate regex; #[macro_use] extern crate clap; extern crate uuid; extern crate url; extern crate zip; mod error; mod options; pub mod ops; pub mod util; pub use error::Error; pub use options::Options;