tpnote_lib/config.rs
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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
//! Set configuration defaults, reads and writes _Tp-Note_'s configuration file
//! and exposes the configuration as the `static` variable `LIB_CFG` behind a
//! mutex. This makes it possible to modify all configuration defaults
//! (and templates) at runtime.
//!
//! ```rust
//! use tpnote_lib::config::LIB_CFG;
//!
//! let mut lib_cfg = LIB_CFG.write();
//! let i = lib_cfg.scheme_idx("default").unwrap();
//! (*lib_cfg).scheme[i].filename.copy_counter.extra_separator = '@'.to_string();
//! ```
//!
//! Contract: although `LIB_CFG` is mutable at runtime, it is sourced only
//! once at the start of Tp-Note. All modification terminates before accessing
//! the high-level API in the `workflow` module of this crate.
use crate::error::LibCfgError;
#[cfg(feature = "renderer")]
use crate::highlight::get_viewer_highlighting_css;
use crate::markup_language::InputConverter;
use crate::markup_language::MarkupLanguage;
use parking_lot::RwLock;
use sanitize_filename_reader_friendly::TRIM_LINE_CHARS;
use serde::{Deserialize, Serialize};
use std::fmt::Write;
use std::str::FromStr;
use std::sync::LazyLock;
#[cfg(feature = "renderer")]
use syntect::highlighting::ThemeSet;
/// Default library configuration as TOML.
pub const LIB_CONFIG_DEFAULT_TOML: &str = include_str!("config_default.toml");
/// Maximum length of a note's filename in bytes. If a filename template produces
/// a longer string, it will be truncated.
pub const FILENAME_LEN_MAX: usize =
// Most file system's limit.
255
// Additional separator.
- 2
// Additional copy counter.
- 5
// Extra spare bytes, in case the user's copy counter is longer.
- 6;
/// The appearance of a file with this filename marks the position of
/// `TMPL_VAR_ROOT_PATH`.
pub const FILENAME_ROOT_PATH_MARKER: &str = "tpnote.toml";
/// When a filename is taken already, Tp-Note adds a copy
/// counter number in the range of `0..COPY_COUNTER_MAX`
/// at the end.
pub const FILENAME_COPY_COUNTER_MAX: usize = 400;
/// A filename extension, if prensent, is separated by a dot.
pub(crate) const FILENAME_EXTENSION_SEPARATOR_DOT: char = '.';
/// A dotfile starts with a dot.
pub(crate) const FILENAME_DOTFILE_MARKER: char = '.';
/// The template variable contains the fully qualified path of the `<path>`
/// command line argument. If `<path>` points to a file, the variable contains
/// the file path. If it points to a directory, it contains the directory path,
/// or - if no `path` is given - the current working directory.
pub const TMPL_VAR_PATH: &str = "path";
/// Contains the fully qualified directory path of the `<path>` command line
/// argument.
/// If `<path>` points to a file, the last component (the file name) is omitted.
/// If it points to a directory, the content of this variable is identical to
/// `TMPL_VAR_PATH`,
pub const TMPL_VAR_DIR_PATH: &str = "dir_path";
/// The root directory of the current note. This is the first directory,
/// that upwards from `TMPL_VAR_DIR_PATH`, contains a file named
/// `FILENAME_ROOT_PATH_MARKER`. The root directory is used by Tp-Note's viewer
/// as base directory
pub const TMPL_VAR_ROOT_PATH: &str = "root_path";
/// Contains the meta header (if any) of the HTML clipboard content.
/// Otherwise the empty string.
pub const TMPL_VAR_HTML_CLIPBOARD_HEADER: &str = "html_clipboard_header";
/// If there is a meta header in the HTML clipboard, this contains
/// the body only. Otherwise, it contains the whole clipboard content.
pub const TMPL_VAR_HTML_CLIPBOARD: &str = "html_clipboard";
/// Contains the YAML header (if any) of the plain text clipboard content.
/// Otherwise the empty string.
pub const TMPL_VAR_TXT_CLIPBOARD_HEADER: &str = "txt_clipboard_header";
/// If there is a YAML header in the plain text clipboard, this contains
/// the body only. Otherwise, it contains the whole clipboard content.
pub const TMPL_VAR_TXT_CLIPBOARD: &str = "txt_clipboard";
/// Contains the YAML header (if any) of the `stdin` input stream.
/// Otherwise the empty string.
pub const TMPL_VAR_STDIN_HEADER: &str = "stdin_header";
/// If there is a YAML header in the `stdin` input stream, this contains the
/// body only. Otherwise, it contains the whole input stream.
pub const TMPL_VAR_STDIN: &str = "stdin";
/// Contains the default file extension for new note files as defined in the
/// configuration file.
pub const TMPL_VAR_EXTENSION_DEFAULT: &str = "extension_default";
/// Contains the content of the first non empty environment variable
/// `LOGNAME`, `USERNAME` or `USER`.
pub const TMPL_VAR_USERNAME: &str = "username";
/// Contains the user's language tag as defined in
/// [RFC 5646](http://www.rfc-editor.org/rfc/rfc5646.txt).
/// Not to be confused with the UNIX `LANG` environment variable from which
/// this value is derived under Linux/MacOS.
/// Under Windows, the user's language tag is queried through the Win-API.
/// If defined, the environment variable `TPNOTE_LANG` overwrites this value
/// (all operating systems).
pub const TMPL_VAR_LANG: &str = "lang";
/// All the front matter fields serialized as text, exactly as they appear in
/// the front matter.
pub const TMPL_VAR_DOC_FM_TEXT: &str = "doc_fm_text";
/// Contains the body of the file the command line option `<path>`
/// points to. Only available in the `tmpl.from_text_file_content`,
/// `tmpl.sync_filename` and HTML templates.
pub const TMPL_VAR_DOC_BODY_TEXT: &str = "doc_body_text";
/// Contains the date of the file the command line option `<path>` points to.
/// The date is represented as an integer the way `std::time::SystemTime`
/// resolves to on the platform. Only available in the
/// `tmpl.from_text_file_content`, `tmpl.sync_filename` and HTML templates.
/// Note: this variable might not be defined with some filesystems or on some
/// platforms.
pub const TMPL_VAR_DOC_FILE_DATE: &str = "doc_file_date";
/// Prefix prepended to front matter field names when a template variable
/// is generated with the same name.
pub const TMPL_VAR_FM_: &str = "fm_";
/// Contains a Hash Map with all front matter fields. Lists are flattened
/// into strings. These variables are only available in the
/// `tmpl.from_text_file_content`, `tmpl.sync_filename` and HTML templates.
pub const TMPL_VAR_FM_ALL: &str = "fm";
/// If present, this header variable can switch the `settings.current_theme`
/// before the filename template is processed.
pub const TMPL_VAR_FM_SCHEME: &str = "fm_scheme";
/// By default, the template `tmpl.sync_filename` defines the function of
/// of this variable as follows:
/// Contains the value of the front matter field `file_ext` and determines the
/// markup language used to render the document. When the field is missing the
/// markup language is derived from the note's filename extension.
///
/// This is a dynamically generated variable originating from the front matter
/// of the current note. As all front matter variables, its value is copied as
/// it is without modification. Here, the only special treatment is, when
/// analyzing the front matter, it is verified, that the value of this variable
/// is registered in one of the `filename.extensions_*` variables.
pub const TMPL_VAR_FM_FILE_EXT: &str = "fm_file_ext";
/// By default, the template `tmpl.sync_filename` defines the function of
/// of this variable as follows:
/// If this variable is defined, the _sort tag_ of the filename is replaced with
/// the value of this variable next time the filename is synchronized. If not
/// defined, the sort tag of the filename is never changed.
///
/// This is a dynamically generated variable originating from the front matter
/// of the current note. As all front matter variables, its value is copied as
/// it is without modification. Here, the only special treatment is, when
/// analyzing the front matter, it is verified, that all the characters of the
/// value of this variable are listed in `filename.sort_tag.extra_chars`.
pub const TMPL_VAR_FM_SORT_TAG: &str = "fm_sort_tag";
/// Contains the value of the front matter field `no_filename_sync`. When set
/// to `no_filename_sync:` or `no_filename_sync: true`, the filename
/// synchronisation mechanism is disabled for this note file. Depreciated
/// in favour of `TMPL_VAR_FM_FILENAME_SYNC`.
pub const TMPL_VAR_FM_NO_FILENAME_SYNC: &str = "fm_no_filename_sync";
/// Contains the value of the front matter field `filename_sync`. When set to
/// `filename_sync: false`, the filename synchronization mechanism is
/// disabled for this note file. Default value is `true`.
pub const TMPL_VAR_FM_FILENAME_SYNC: &str = "fm_filename_sync";
/// A pseudo language tag for the `get_lang_filter`. When placed in the
/// `TMP_FILTER_GET_LANG` list, all available languages are selected.
pub const TMPL_FILTER_GET_LANG_ALL: &str = "+all";
/// HTML template variable containing the automatically generated JavaScript
/// code to be included in the HTML rendition.
pub const TMPL_HTML_VAR_VIEWER_DOC_JS: &str = "viewer_doc_js";
/// HTML template variable name. The value contains Tp-Note's CSS code
/// to be included in the HTML rendition produced by the exporter.
pub const TMPL_HTML_VAR_EXPORTER_DOC_CSS: &str = "exporter_doc_css";
/// HTML template variable name. The value contains the highlighting CSS code
/// to be included in the HTML rendition produced by the exporter.
pub const TMPL_HTML_VAR_EXPORTER_HIGHLIGHTING_CSS: &str = "exporter_highlighting_css";
/// HTML template variable name. The value contains the path, for which the
/// viewer delivers Tp-Note's CSS code. Note, the viewer delivers the same CSS
/// code which is stored as value for `TMPL_HTML_VAR_VIEWER_DOC_CSS`.
pub const TMPL_HTML_VAR_VIEWER_DOC_CSS_PATH: &str = "viewer_doc_css_path";
/// The constant URL for which Tp-Note's internal web server delivers the CSS
/// style sheet. In HTML templates, this constant can be accessed as value of
/// the `TMPL_HTML_VAR_VIEWER_DOC_CSS_PATH` variable.
pub const TMPL_HTML_VAR_VIEWER_DOC_CSS_PATH_VALUE: &str = "/viewer_doc.css";
/// HTML template variable name. The value contains the path, for which the
/// viewer delivers Tp-Note's highlighting CSS code.
pub const TMPL_HTML_VAR_VIEWER_HIGHLIGHTING_CSS_PATH: &str = "viewer_highlighting_css_path";
/// The constant URL for which Tp-Note's internal web server delivers the CSS
/// style sheet. In HTML templates, this constant can be accessed as value of
/// the `TMPL_HTML_VAR_NOTE_CSS_PATH` variable.
pub const TMPL_HTML_VAR_VIEWER_HIGHLIGHTING_CSS_PATH_VALUE: &str = "/viewer_highlighting.css";
/// HTML template variable used in the error page containing the error message
/// explaining why this page could not be rendered.
#[allow(dead_code)]
pub const TMPL_HTML_VAR_DOC_ERROR: &str = "doc_error";
/// HTML template variable used in the error page containing a verbatim
/// HTML rendition with hyperlinks of the erroneous note file.
#[allow(dead_code)]
pub const TMPL_HTML_VAR_DOC_TEXT: &str = "doc_text";
/// Global variable containing the filename and template related configuration
/// data. This can be changed by the consumer of this library. Once the
/// initialization done, this should remain static.
/// For session configuration see: `settings::SETTINGS`.
pub static LIB_CFG: LazyLock<RwLock<LibCfg>> = LazyLock::new(|| RwLock::new(LibCfg::default()));
/// Configuration data, deserialized from the configuration file.
#[derive(Debug, Serialize, Deserialize)]
pub struct LibCfg {
/// The fallback scheme for the `sync_filename` template choice, if the
/// `scheme` header variable is empty or is not defined.
pub scheme_sync_default: String,
/// Configuration of `Scheme`.
pub scheme: Vec<Scheme>,
/// Configuration of HTML templates.
pub tmpl_html: TmplHtml,
}
impl LibCfg {
/// Returns the index of a named scheme. If no scheme with that name can be
/// be found, return `LibCfgError::SchemeNotFound`.
pub fn scheme_idx(&self, name: &str) -> Result<usize, LibCfgError> {
self.scheme
.iter()
.enumerate()
.find(|&(_, scheme)| scheme.name == name)
.map_or_else(
|| {
Err(LibCfgError::SchemeNotFound {
scheme_name: name.to_string(),
schemes: {
//Already imported: `use std::fmt::Write;`
let mut errstr =
self.scheme.iter().fold(String::new(), |mut output, s| {
let _ = write!(output, "{}, ", s.name);
output
});
errstr.truncate(errstr.len().saturating_sub(2));
errstr
},
})
},
|(i, _)| Ok(i),
)
}
}
/// Configuration data, deserialized from the configuration file.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Scheme {
pub name: String,
/// Configuration of filename parsing.
pub filename: Filename,
/// Configuration of content and filename templates.
pub tmpl: Tmpl,
}
/// Configuration of filename parsing, deserialized from the
/// configuration file.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Filename {
pub sort_tag: SortTag,
pub copy_counter: CopyCounter,
pub extension_default: String,
pub extensions: Vec<(String, InputConverter, MarkupLanguage)>,
}
/// Configuration for sort-tag.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct SortTag {
pub extra_chars: String,
pub separator: String,
pub extra_separator: char,
pub letters_in_succession_max: u8,
pub sequential: Sequential,
}
/// Requirements for chronological sort tags.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Sequential {
pub digits_in_succession_max: u8,
}
/// Configuration for copy-counter.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct CopyCounter {
pub extra_separator: String,
pub opening_brackets: String,
pub closing_brackets: String,
}
/// Filename templates and content templates, deserialized from the
/// configuration file.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Tmpl {
pub fm_var: FmVar,
pub filter: Filter,
pub from_dir_content: String,
pub from_dir_filename: String,
pub from_clipboard_yaml_content: String,
pub from_clipboard_yaml_filename: String,
pub from_clipboard_content: String,
pub from_clipboard_filename: String,
pub from_text_file_content: String,
pub from_text_file_filename: String,
pub annotate_file_content: String,
pub annotate_file_filename: String,
pub sync_filename: String,
}
/// Configuration describing how to localize and check front matter variables.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct FmVar {
pub localization: Vec<(String, String)>,
pub assertions: Vec<(String, Vec<Assertion>)>,
}
/// Configuration related to various Tera template filters.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Filter {
pub get_lang: Vec<String>,
pub map_lang: Vec<Vec<String>>,
pub to_yaml_tab: u64,
}
/// Configuration for the HTML exporter feature, deserialized from the
/// configuration file.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct TmplHtml {
pub viewer: String,
pub viewer_error: String,
pub viewer_doc_css: String,
pub viewer_highlighting_theme: String,
pub exporter: String,
pub exporter_doc_css: String,
pub exporter_highlighting_theme: String,
}
impl LibCfg {
/// Perform some semantic consistency checks.
/// * `sort_tag.extra_separator` must NOT be in `sort_tag.extra_chars`.
/// * `sort_tag.extra_separator` must NOT be in `0..9`.
/// * `sort_tag.extra_separator` must NOT be in `a..z`.
/// * `sort_tag.extra_separator` must NOT be in `sort_tag.extra_chars`.
/// * `sort_tag.extra_separator` must NOT `FILENAME_DOTFILE_MARKER`.
/// * `copy_counter.extra_separator` must be one of
/// `sanitize_filename_reader_friendly::TRIM_LINE_CHARS`.
/// * All characters of `sort_tag.separator` must be in `sort_tag.extra_chars`.
/// * `sort_tag.separator` must start with NOT `FILENAME_DOTFILE_MARKER`.
pub fn assert_validity(&self) -> Result<(), LibCfgError> {
for scheme in &self.scheme {
// Check for obvious configuration errors.
// * `sort_tag.extra_separator` must NOT be in `sort_tag.extra_chars`.
// * `sort_tag.extra_separator` must NOT `FILENAME_DOTFILE_MARKER`.
if scheme
.filename
.sort_tag
.extra_chars
.contains(scheme.filename.sort_tag.extra_separator)
|| (scheme.filename.sort_tag.extra_separator == FILENAME_DOTFILE_MARKER)
|| scheme.filename.sort_tag.extra_separator.is_ascii_digit()
|| scheme
.filename
.sort_tag
.extra_separator
.is_ascii_lowercase()
{
return Err(LibCfgError::SortTagExtraSeparator {
scheme_name: scheme.name.to_string(),
dot_file_marker: FILENAME_DOTFILE_MARKER,
sort_tag_extra_chars: scheme
.filename
.sort_tag
.extra_chars
.escape_default()
.to_string(),
extra_separator: scheme
.filename
.sort_tag
.extra_separator
.escape_default()
.to_string(),
});
}
// Check for obvious configuration errors.
// * All characters of `sort_tag.separator` must be in `sort_tag.extra_chars`.
// * `sort_tag.separator` must NOT start with `FILENAME_DOTFILE_MARKER`.
// * `sort_tag.separator` must NOT contain ASCII `0..9` or `a..z`.
if !scheme.filename.sort_tag.separator.chars().all(|c| {
c.is_ascii_digit()
|| c.is_ascii_lowercase()
|| scheme.filename.sort_tag.extra_chars.contains(c)
}) || scheme
.filename
.sort_tag
.separator
.starts_with(FILENAME_DOTFILE_MARKER)
{
return Err(LibCfgError::SortTagSeparator {
scheme_name: scheme.name.to_string(),
dot_file_marker: FILENAME_DOTFILE_MARKER,
chars: scheme
.filename
.sort_tag
.extra_chars
.escape_default()
.to_string(),
separator: scheme
.filename
.sort_tag
.separator
.escape_default()
.to_string(),
});
}
// Check for obvious configuration errors.
// * `copy_counter.extra_separator` must one of
// `sanitize_filename_reader_friendly::TRIM_LINE_CHARS`.
if !TRIM_LINE_CHARS.contains(&scheme.filename.copy_counter.extra_separator) {
return Err(LibCfgError::CopyCounterExtraSeparator {
scheme_name: scheme.name.to_string(),
chars: TRIM_LINE_CHARS.escape_default().to_string(),
extra_separator: scheme
.filename
.copy_counter
.extra_separator
.escape_default()
.to_string(),
});
}
// Assert that `filename.extension_default` is listed in
// `filename.extensions[..].0`.
if !scheme
.filename
.extensions
.iter()
.any(|ext| ext.0 == scheme.filename.extension_default)
{
return Err(LibCfgError::ExtensionDefault {
scheme_name: scheme.name.to_string(),
extension_default: scheme.filename.extension_default.to_owned(),
extensions: {
let mut list = scheme.filename.extensions.iter().fold(
String::new(),
|mut output, (k, _v1, _v2)| {
let _ = write!(output, "{k}, ");
output
},
);
list.truncate(list.len().saturating_sub(2));
list
},
});
}
}
// Highlighting config is valid?
// Validate `tmpl_html.viewer_highlighting_theme` and
// `tmpl_html.exporter_highlighting_theme`.
#[cfg(feature = "renderer")]
{
let hl_theme_set = ThemeSet::load_defaults();
let hl_theme_name = &self.tmpl_html.viewer_highlighting_theme;
if !hl_theme_name.is_empty() && !hl_theme_set.themes.contains_key(hl_theme_name) {
return Err(LibCfgError::HighlightingThemeName {
var: "viewer_highlighting_theme".to_string(),
value: hl_theme_name.to_owned(),
available: hl_theme_set.themes.into_keys().fold(
String::new(),
|mut output, k| {
let _ = write!(output, "{k}, ");
output
},
),
});
};
let hl_theme_name = &self.tmpl_html.exporter_highlighting_theme;
if !hl_theme_name.is_empty() && !hl_theme_set.themes.contains_key(hl_theme_name) {
return Err(LibCfgError::HighlightingThemeName {
var: "exporter_highlighting_theme".to_string(),
value: hl_theme_name.to_owned(),
available: hl_theme_set.themes.into_keys().fold(
String::new(),
|mut output, k| {
let _ = write!(output, "{k}, ");
output
},
),
});
};
}
Ok(())
}
}
/// Defaults are sourced from file `tpnote-lib/src/config_default.toml`.
impl Default for LibCfg {
fn default() -> Self {
toml::from_str(LIB_CONFIG_DEFAULT_TOML).expect(
"Error in default configuration in source file:\n\
`tpnote-lib/src/config_default.toml`",
)
}
}
/// Global variable containing the filename and template related configuration
/// data.
pub static LIB_CFG_CACHE: LazyLock<RwLock<LibCfgCache>> =
LazyLock::new(|| RwLock::new(LibCfgCache::new()));
/// Configuration data, deserialized and preprocessed.
#[derive(Debug, Serialize, Deserialize)]
pub struct LibCfgCache {
/// The result of an expensive calculation:
/// `crate::highlight::get_viewer_highlighting_css()` with
/// `lib_cfg.tmpl_html.viewer_highlighting_theme` as input.
pub viewer_highlighting_css: String,
}
impl LibCfgCache {
fn new() -> Self {
Self {
#[cfg(feature = "renderer")]
viewer_highlighting_css: get_viewer_highlighting_css(),
#[cfg(not(feature = "renderer"))]
viewer_highlighting_css: String::new(),
}
}
}
/// Defines the way the HTML exporter rewrites local links.
/// The command line option `--export-link-rewriting` expects this enum.
/// Consult the manpage for details.
#[derive(Debug, Hash, Clone, Eq, PartialEq, Deserialize, Serialize, Copy, Default)]
pub enum LocalLinkKind {
/// Do not rewrite links.
Off,
/// Rewrite relative local links. Base: location of `.tpnote.toml`
Short,
/// Rewrite all local links. Base: "/"
#[default]
Long,
}
impl FromStr for LocalLinkKind {
type Err = LibCfgError;
fn from_str(level: &str) -> Result<LocalLinkKind, Self::Err> {
match &*level.to_ascii_lowercase() {
"off" => Ok(LocalLinkKind::Off),
"short" => Ok(LocalLinkKind::Short),
"long" => Ok(LocalLinkKind::Long),
_ => Err(LibCfgError::ParseLocalLinkKind {}),
}
}
}
/// Describes a set of tests, that assert template variable `tera:Value`
/// properties.
#[derive(Default, Debug, Hash, Clone, Eq, PartialEq, Deserialize, Serialize, Copy)]
pub enum Assertion {
/// `IsDefined`: Assert that the variable is defined in the template.
IsDefined,
/// `IsNotEmptyString`: In addition to `IsString`, the condition asserts,
/// that the string -or all substrings-) are not empty.
IsNotEmptyString,
/// `IsString`: Assert, that if the variable is defined, its type -or all
/// subtypes- are `Value::String`.
IsString,
/// `IsNumber`: Assert, that if the variable is defined, its type -or all
/// subtypes- are `Value::Number`.
IsNumber,
/// `IsBool`: Assert, that if the variable is defined, its type -or all
/// subtypes- are `Value::Bool`.
IsBool,
/// `IsNotCompound`: Assert, that if the variable is defined, its type is
/// not `Value::Array` or `Value::Object`.
IsNotCompound,
/// `IsValidSortTag`: Assert, that if the variable is defined, the value's
/// string representation contains solely characters of the
/// `filename.sort_tag.extra_chars` set, digits or lowercase letters.
/// The number of lowercase letters in a row is limited by
/// `tpnote_lib::config::FILENAME_SORT_TAG_LETTERS_IN_SUCCESSION_MAX`.
IsValidSortTag,
/// `IsConfiguredScheme`: Assert, that -if the variable is defined- the
/// string equals to one of the `scheme.name` in the configuration file.
IsConfiguredScheme,
/// `IsTpnoteExtension`: Assert, that if the variable is defined,
/// the values string representation is registered in one of the
/// `filename.extension_*` configuration file variables.
IsTpnoteExtension,
/// `NoOperation` (default): A test that is always satisfied. For internal
/// use only.
#[default]
NoOperation,
}