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
//! Romulus is a text processing language similar to sed
//!
//! Here is an example program which process the output of ifconfig
//! ```text
//! /^(?P<inter>[a-zA-Z0-9]+): /,/^[a-zA-Z0-9]+:/ {
//!   /inet (?P<ip>[0-9]{1,3}(\.[0-9]{1,3}){3})/ {
//!     print("${inter}: ${ip}")
//!   }
//!
//!   /inet6 (?P<ip>[a-fA-F0-9]{0,4}(:[a-fA-F0-9]{0,4}){0,8})/ {
//!     print("${inter}: ${ip}")
//!   }
//! }
//! ```
//!

#![deny(missing_docs)]

/// A macro that expands to the proper line ending character sequence
/// for operating system
#[macro_export]
macro_rules! nl {
    () => {
        if cfg!(not(target_os = "windows")) {
            "\n"
        } else {
            "\r\n"
        }
    };
}

/// A macro that expands to a colored output if romulus is compiled
/// with color support
#[macro_export]
macro_rules! color {
    ($color: expr, $msg: expr) => {
        if cfg!(feature = "color") {
            $color.paint($msg.to_string()).to_string()
        } else {
            $msg.to_string()
        }
    };
}

#[macro_use]
extern crate lazy_static;

mod interpreter;

mod ast;
mod features;
mod lex;
mod lint;
mod runtime;

pub use features::*;
pub use interpreter::{Builder, Interpreter};