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
#![deny(missing_docs)]
//! Rust implementation of the tracery generative grammar language.
//!
//! This library is a Rust port/implementation of [tracery], the generative
//! grammar language designed and created by [Kate Compton]. Given a set of
//! rules written in the tracery syntax, it will use them to procedurally
//! generate strings of text. For more information about the tracery language,
//! see the [Language Concepts] section below.
//!
//! # Usage
//! Usage of the library can be divided into two areas: creation of grammars and
//! the generation of output strings.
//!
//! ## Grammar Creation
//! Grammars can be created using the [`grammar!`] macro, from an any iterable
//! rust object of strings and associated lists of strings, or for compatibility
//! with the original tracery, from a string representing a JSON map.
//!
//! ### The grammar! macro
//! Accepts input in the form `"key" => [ "list", "of", "rules" ]` or, in the
//! case of a key having only one rule, `"key" => "rule"`. Equivalent to
//! manually building a map and then calling [`Grammar::from_map`]
//!
//! ```
//! use tracery::grammar;
//! # use tracery::Result;
//! # fn main() -> Result<()> {
//! let g = grammar! {
//!     "origin" => "#tool# is #description#!",
//!     "tool" => "tracery",
//!     "description" => [ "fun", "awesome" ]
//! }?;
//! # let output = g.flatten(&mut rand::thread_rng())?;
//! # assert!(match output.as_str() {
//! #     "tracery is fun!" | "tracery is awesome!" => true,
//! #     _ => false,
//! # });
//! # Ok(())
//! # }
//! ```
//!
//! ### From a map/iterator
//! A grammar can be created from any object implementing, essentially,
//! `IntoIterator<Item = (Into<String>, Into<Vec<Into<String>>)>`. For example,
//! `HashMap<String, Vec<String>>` or `BTreeMap<&str, &[&str]>`.
//!
//! ```
//! # use tracery::Result;
//! # use maplit::hashmap;
//! # fn main() -> Result<()> {
//! let map = hashmap! {
//!     "origin" => vec![ "#tool# is #description#!" ],
//!     "tool" => vec![ "tracery" ],
//!     "description" => vec![ "fun", "awesome" ]
//! };
//! let g = tracery::from_map(map)?;
//! # let output = g.flatten(&mut rand::thread_rng())?;
//! # assert!(match output.as_str() {
//! #     "tracery is fun!" | "tracery is awesome!" => true,
//! #     _ => false,
//! # });
//! # Ok(())
//! # }
//! ```
//!
//! ### From a JSON string
//! For compatibility with the original tracery, a Grammar can be created from a
//! string representing a JSON object. This feature is controlled by the
//! `tracery_json` feature, which is enabled by default. It can be turned off if
//! you do not require this functionality.
//!
#![cfg_attr(
    feature = "tracery_json",
    doc = r#"
```
"#
)]
#![cfg_attr(
    not(feature = "tracery_json"),
    doc = r#"
```ignore
"#
)]
//! # use tracery::Result;
//! # use maplit::hashmap;
//! # fn main() -> Result<()> {
//! let json = r##"{
//!     "origin": [ "#tool# is #description#!" ],
//!     "tool": [ "tracery" ],
//!     "description": [ "fun", "awesome" ]
//! }"##;
//! let g = tracery::from_json(json)?;
//! # let output = g.flatten(&mut rand::thread_rng())?;
//! # assert!(match output.as_str() {
//! #     "tracery is fun!" | "tracery is awesome!" => true,
//! #     _ => false,
//! # });
//! # Ok(())
//! # }
//! ```
//!
//! ## Generating output strings
//! There are two methods for getting a generated output string from a created
//! Grammar: [`execute`] and [`flatten`]. Generally, [`execute`] should be
//! preferred if possible.
//!
//! ### execute
//! [`execute`] takes two parameters: the rule to expand and an RNG to use
//! during generation. The RNG can be any type implementing [`rand::Rng`].
//!
//! ```
//! use tracery::grammar;
//! # use tracery::Result;
//! # fn main() -> Result<()> {
//! let mut g = grammar! {
//!     "origin" => "#tool# is #description#!",
//!     "tool" => "tracery",
//!     "description" => [ "fun", "awesome" ]
//! }?;
//!
//! // Generate an output (either "tracery is fun!" or "tracery is awesome!")
//! let key = String::from("origin");
//! let output = g.execute(&key, &mut rand::thread_rng())?;
//! # assert!(match output.as_str() {
//! #     "tracery is fun!" | "tracery is awesome!" => true,
//! #     _ => false,
//! # });
//! # Ok(())
//! # }
//! ```
//!
//! [`execute`] generates its output using the Grammar in-place. Since Grammars
//! are allowed to modify their own rule stacks, [`execute`] must take a `&mut
//! self` reference. This means that any modifications made during an execution
//! will persist in the Grammar.
//!
//! ```
//! use tracery::grammar;
//! # use tracery::Result;
//! # fn main() -> Result<()> {
//! // This time, origin has a side-effect: it creates the rule 'aside'
//! let mut g = grammar! {
//!     "origin" => "#[aside:Rust is, too]tool# is #description#!",
//!     "tool" => "tracery",
//!     "description" => [ "fun", "awesome" ]
//! }?;
//!
//! // Generate an output (either "tracery is fun!" or "tracery is awesome!")
//! let key = String::from("origin");
//! let output = g.execute(&key, &mut rand::thread_rng())?;
//! # assert!(match output.as_str() {
//! #     "tracery is fun!" | "tracery is awesome!" => true,
//! #     _ => false,
//! # });
//!
//! // The previous call to execute created the 'aside' rule
//! let key = String::from("aside");
//! // Generates the string "Rust is, too"
//! let output = g.execute(&key, &mut rand::thread_rng())?;
//! # assert!(match output.as_str() {
//! #     "Rust is, too" => true,
//! #     _ => false,
//! # });
//! # Ok(())
//! # }
//! ```
//!
//! ### flatten
//! [`flatten`], unlike [`execute`], always operates on the default rule of the
//! Grammar ("origin" by default), but like [`execute`], takes an instance of
//! [`rand::Rng`] to use during generation. In addition, [`flatten`] creates a
//! clone of the Grammar to use during generation, then discards it, which means
//! that any side-effects that occur will be discarded when it's done.
//!
//! ```
//! use tracery::grammar;
//! # use tracery::Result;
//! # fn main() -> Result<()> {
//! let g = grammar! {
//!     "origin" => "#tool# is #description#!",
//!     "tool" => "tracery",
//!     "description" => [ "fun", "awesome" ]
//! }?;
//!
//! // Generate an output (either "tracery is fun!" or "tracery is awesome!")
//! let output = g.flatten(&mut rand::thread_rng())?;
//! # assert!(match output.as_str() {
//! #     "tracery is fun!" | "tracery is awesome!" => true,
//! #     _ => false,
//! # });
//! # Ok(())
//! # }
//! ```
//!
//! # Language Concepts
//! A *grammar* is a map from a set of string *key*s to a stack of *rulesets*,
//! notionally rooted at an "origin" node, associated by default with the key
//! "origin"
//!
//! A *key* is any valid UTF-8 String that does not contain the reserved
//! characters `[`, `]`, `.`, `:`, or `#`. A key is associated with a stack of
//! rulesets, and the topmost ruleset is used when expanding the key or popping
//! a ruleset off the stack using a pop action.
//!
//! A *ruleset* is a list (internally a `Vec<String>`) of strings, each
//! representing a possible expansion of the associated key, to be chosen at
//! random when expanding that key, containing one or more *plaintexts*, *tags*,
//! or *action*s.
//!
//! An *action* is enclosed by square brackets (`[`, `]`) and can be either
//! *labeled* or *unlabeled*.
//!
//! A *labeled action* takes the form `[key:rule]`, where `rule` is any valid
//! tracery rule string, and `key` is a valid key. The rule will be executed and
//! the result pushed onto the top of the ruleset stack associated with `key`.
//! If `key` does not exist already, it will be created. A special exception is
//! a pop action which takes the form `[key:POP]`, and will pop the top ruleset
//! off the stack of rulesets associated with `key`. If the stack becomes empty,
//! the key will be deleted from the associated grammar.
//!
//! An *unlabeled action* is a single *tag* encased in square brackets such as
//! `[#setPronouns#]` and is typically used to call a function-like ruleset
//! which will use labeled actions to set values for some set of keys (like
//! setting a character's pronouns for a story).
//!
//! A *tag* is a key, encased in hashes (`#`), which will be replaced in the
//! output by a random rule chosen from the topmost ruleset of the key's
//! associated ruleset stack. The key in a tag can also be preceded by one or
//! more actions, which will be executed before the tag is expanded. Some
//! examples of valid tags include: `#foo#`, `#[foo:#bar#]baz#`, and
//! `#[#setPronouns#][#setJob#][#setPet#]hero#`.
//!
//! A *plaintext* is any text in a rule which is not a tag or action.
//!
//! [tracery]: https://tracery.io/
//! [Kate Compton]: http://www.galaxykate.com/
//! [Language Concepts]: index.html#language-concepts
//! [`grammar!`]: macro.grammar.html
//! [`Grammar::from_map`]: struct.Grammar.html#method.from_map
//! [`execute`]: struct.Grammar.html#method.execute
//! [`flatten`]: struct.Grammar.html#method.flatten
//! [`rand::Rng`]: http://docs.rs/rand/latest/rand/trait.Rng.html

mod error;
pub use crate::error::Error;
mod execute;
pub(crate) use crate::execute::Execute;
mod grammar;
pub use crate::grammar::Grammar;
mod modifiers;
mod node;
use crate::node::Node;
mod parser;
mod rule;
use crate::rule::Rule;
mod tag;

#[doc(hidden)]
#[macro_export]
macro_rules! grammar_item {
    ($map:ident, ) => {};
    ($map:ident, $key:literal => [$($value: literal),+ $(,)?] $(, $($rest: tt)*)?) => {
        $map.insert($key, vec!($($value,)+));
        $($crate::grammar_item!($map, $($rest)*))?
    };
    ($map:ident, $key:literal => $value: literal $(, $($rest: tt)*)?) => {
        $map.insert($key, vec!($value));
        $($crate::grammar_item!($map, $($rest)*))?
    };
}

#[doc(hidden)]
#[macro_export]
macro_rules! grammar_count {
    ([$($ctr: tt)*] $(,)?) => {
        <[()]>::len(&[$($ctr)*])
    };
    ([$($ctr: tt)*], $key: literal => [$($value: literal),+ $(,)?] $(, $($rest: tt)*)?) => {
        $crate::grammar_count!([(), $($ctr)*] $(, $($rest)*)?)
    };
    ([$($ctr: tt)*], $key: literal => $value: literal $(, $($rest: tt)*)?) => {
        $crate::grammar_count!([(), $($ctr)*] $(, $($rest)*)?)
    };
}

/// Convenience macro that allows for shorthand creation of [`Grammar`]s.
///
/// Accepts input in the form `"key" => [ "list", "of", "rules" ]` or, in the
/// case of a key having only one rule, `"key" => "rule"`. Equivalent to
/// manually building a map and then calling [`Grammar::from_map`]
///
/// # Returns
/// Result<[`Grammar`], [`Error`]>
///
/// # Example
///
/// ```
/// # use tracery::{grammar, Result};
/// # fn main() -> Result<()> {
/// // Declare the grammar
/// let g = grammar! {
///     "origin" => "#tool# is #description#!",
///     "tool" => "tracery",
///     "description" => [ "fun", "awesome" ]
/// }?;
///
/// // Randomly produce the string "tracery is fun!" or "tracery is awesome!"
/// # let output =
/// g.flatten(&mut rand::thread_rng())?;
///
/// # assert!(match output.as_str() {
/// #     "tracery is fun!" | "tracery is awesome!" => true,
/// #     _ => false,
/// # });
/// # Ok(())
/// # }
/// ```
///
/// [`Error`]: enum.Error.html
/// [`Grammar`]: struct.Grammar.html
/// [`Grammar::from_map`]: struct.Grammar.html#method.from_map
/// [`Result`]: type.Result.html
#[macro_export]
macro_rules! grammar {
    ($($input: tt)+) => {
        {
            let _cap = $crate::grammar_count!([], $($input)+);
            let mut _map = std::collections::HashMap::with_capacity(_cap);
            $crate::grammar_item!(_map, $($input)+);
            $crate::from_map(_map)
        }
    }
}

/// Creates a new grammar from a JSON grammar string
///
/// # Examples
/// ```
/// # use tracery::Result;
/// # use maplit::hashmap;
/// # fn main() -> Result<()> {
/// let json = r##"{
///     "origin": [ "#tool# is #description#!" ],
///     "tool": [ "tracery" ],
///     "description": [ "fun", "awesome" ]
/// }"##;
/// let g = tracery::from_json(json)?;
/// # let output = g.flatten(&mut rand::thread_rng())?;
/// # assert!(match output.as_str() {
/// #     "tracery is fun!" | "tracery is awesome!" => true,
/// #     _ => false,
/// # });
/// # Ok(())
/// # }
/// ```
///
/// [`Error`]: enum.Error.html
/// [`Grammar`]: struct.Grammar.html
#[cfg(feature = "tracery_json")]
pub fn from_json<S: AsRef<str>>(s: S) -> Result<Grammar> {
    use std::collections::HashMap;
    let map: HashMap<String, Vec<String>> = serde_json::from_str(s.as_ref())?;
    Grammar::from_map(map)
}

/// Creates a new grammar from an input map
///
/// # Examples
/// ```
/// # use tracery::Result;
/// # use maplit::hashmap;
/// # fn main() -> Result<()> {
/// let map = hashmap! {
///     "origin" => vec![ "#tool# is #description#!" ],
///     "tool" => vec![ "tracery" ],
///     "description" => vec![ "fun", "awesome" ]
/// };
/// let g = tracery::from_map(map)?;
/// # let output = g.flatten(&mut rand::thread_rng())?;
/// # assert!(match output.as_str() {
/// #     "tracery is fun!" | "tracery is awesome!" => true,
/// #     _ => false,
/// # });
/// # Ok(())
/// # }
/// ```
///
/// [`Error`]: enum.Error.html
/// [`Grammar`]: struct.Grammar.html
pub fn from_map<I, K, C, S>(iter: I) -> Result<Grammar>
where
    I: IntoIterator<Item = (K, C)>,
    K: Into<String>,
    C: IntoIterator<Item = S>,
    S: Into<String>,
{
    Grammar::from_map(iter)
}

/// Creates a new grammar from a JSON grammar string, then uses it to create a
/// random output string, using the "origin" rule
///
/// # Examples
/// ```
/// # use tracery::Result;
/// # use maplit::hashmap;
/// # fn main() -> Result<()> {
/// let json = r##"{
///     "origin": [ "#tool# is #description#!" ],
///     "tool": [ "tracery" ],
///     "description": [ "fun", "awesome" ]
/// }"##;
///
/// // Generate an output (either "tracery is fun!" or "tracery is awesome!")
/// let output = tracery::flatten_json(json)?;
/// # assert!(match output.as_str() {
/// #     "tracery is fun!" | "tracery is awesome!" => true,
/// #     _ => false,
/// # });
/// # Ok(())
/// # }
/// ```
///
/// [`Error`]: enum.Error.html
/// [`String`]: https://doc.rust-lang.org/std/string/struct.String.html
#[cfg(feature = "tracery_json")]
pub fn flatten_json<S: AsRef<str>>(s: S) -> Result<String> {
    from_json(s)?.execute(&crate::grammar::ORIGIN, &mut rand::thread_rng())
}

/// Creates a new grammar from an input map, then uses it to create a random
/// output string, using the "origin" rule
///
/// # Examples
/// ```
/// # use tracery::Result;
/// # use maplit::hashmap;
/// # fn main() -> Result<()> {
/// let map = hashmap! {
///     "origin" => vec![ "#tool# is #description#!" ],
///     "tool" => vec![ "tracery" ],
///     "description" => vec![ "fun", "awesome" ]
/// };
///
/// // Generate an output (either "tracery is fun!" or "tracery is awesome!")
/// let output = tracery::flatten_map(map)?;
/// # assert!(match output.as_str() {
/// #     "tracery is fun!" | "tracery is awesome!" => true,
/// #     _ => false,
/// # });
/// # Ok(())
/// # }
/// ```
///
/// [`Error`]: enum.Error.html
/// [`String`]: https://doc.rust-lang.org/std/string/struct.String.html
pub fn flatten_map<I, K, C, S>(iter: I) -> Result<String>
where
    I: IntoIterator<Item = (K, C)>,
    K: Into<String>,
    C: IntoIterator<Item = S>,
    S: Into<String>,
{
    from_map(iter)?.execute(&crate::grammar::ORIGIN, &mut rand::thread_rng())
}

/// A convenience type for a `Result` of `T` or [`Error`]
///
/// [`Error`]: enum.Error.html
pub type Result<T> = ::std::result::Result<T, Error>;

#[cfg(test)]
mod tests {
    #[cfg(feature = "tracery_json")]
    use super::from_json;
    use super::from_map;
    use super::grammar;
    use super::Result;
    use maplit::hashmap;

    #[test]
    fn test_macro() -> Result<()> {
        let g = grammar! {
            "origin" => "#foo#",
            "foo" => ["a", "aa"]
        }?;
        let res = g.flatten(&mut rand::thread_rng())?;
        assert_eq!(res.chars().next().unwrap(), 'a');
        Ok(())
    }

    #[test]
    fn test_flatten_map() {
        let source = hashmap! {
            "origin" => vec!["foo #bar#"],
            "bar" => vec!["bar"]
        };
        assert_eq!(super::flatten_map(source).unwrap(), "foo bar".to_string());
    }

    #[test]
    fn test_map_with_actions() -> Result<()> {
        let source = hashmap! {
            "name" => vec!["Arjun","Yuuma","Darcy","Mia","Chiaki","Izzi","Azra","Lina"],
            "animal" => vec!["unicorn","raven","sparrow","scorpion","coyote","eagle","owl","lizard","zebra","duck","kitten"],
            "mood" => vec!["vexed","indignant","impassioned","wistful","astute","courteous"],
            "story" => vec!["#hero# traveled with her pet #heroPet#.  #hero# was never #mood#, for the #heroPet# was always too #mood#."],
            "origin" => vec!["#[hero:#name#][heroPet:#animal#]story#"]
        };
        let g = from_map(source)?;
        g.flatten(&mut rand::thread_rng())?;
        Ok(())
    }

    #[test]
    fn test_malformed_input() {
        let input = hashmap! { "a" => vec!["#a"]};
        let res = from_map(input);
        assert!(matches!(res, Err(crate::Error::ParseError(_))));
    }

    #[test]
    #[cfg(feature = "tracery_json")]
    fn test_flatten_json() {
        let source = " { \"origin\": [\"foo #bar#\"], \"bar\": [\"bar\"] } ";
        assert_eq!(super::flatten_json(source).unwrap(), "foo bar".to_string());
    }

    #[test]
    #[cfg(feature = "tracery_json")]
    fn test_json_with_actions() -> Result<()> {
        let source = r##"{
                "name": ["Arjun","Yuuma","Darcy","Mia","Chiaki","Izzi","Azra","Lina"],
                "animal": ["unicorn","raven","sparrow","scorpion","coyote","eagle","owl","lizard","zebra","duck","kitten"],
                "mood": ["vexed","indignant","impassioned","wistful","astute","courteous"],
                "story": ["#hero# traveled with her pet #heroPet#.  #hero# was never #mood#, for the #heroPet# was always too #mood#."],
                "origin": ["#[hero:#name#][heroPet:#animal#]story#"]
            }"##;
        let g = from_json(source)?;
        g.flatten(&mut rand::thread_rng())?;
        Ok(())
    }

    #[test]
    #[cfg(feature = "tracery_json")]
    fn malformed_json() {
        let input = r#"{ "a": ["a"],}"#;
        let res = from_json(input);
        assert!(matches!(res, Err(crate::Error::JsonError(_))));
    }
}