R4d (Rad)

R4d is a text oriented macro prosessor made with rust.

NOTE

R4d is in very early stage, so there might be lots of undetected bugs. Fast implementaiton was my priorites, thus optimization has had a least consideration for the time.

When it gets 1.0?

R4d's will reach 1.0 only when followings are resolved.

Usage

As a binary

```bash

Usage : rad [OPTIONS] [FILE]...

Read from file and save to file

rad inputfile.txt -o outfile.txt

Read from file and print to stdout

rad input_file.txt

Read from standard input and print to file

printf '...text...' | rad -o out_file.txt

Read from stdin and print to stdout

printf '...text...' | rad

Use following options to decide error behaviours

default is stderr

-e # Log error to -s # Suppress error and warnings -S # Strict mode makes every error panicking -n # Always use unix newline (default is '\r\n' in windows platform) -p # Purge mode, print nothing if a macro doesn't exist -g # Always enable greedy for every macro invocation -d # Start debug mode -l # Print all macro invocation logs -i # Start debug mode as interactive, this makes stdout unwrapped

Freeze(zip to binary) rules to a single file

rad test -f frozen.r4f

Melt a file and use in processing

rad test -m frozen.r4f ```

Type -h or --help to see full options.

As a library

Cargo.toml ```toml [dependencies] rad = { version = "0.5", features = ["full"] }

Other available features are

"evalexpr", "chrono", "lipsum", "csv", "debug"

evalexpr - "eval" macro

chrono - "date", "time" macro

lipsum - "lipsum" macro

csv - "from", "table" macro

debug - Enable debug method

**rust file** rust use rad::RadError; use rad::Processor

// Every option is not mendatory let processor = Processor::new() .purge(true) .greedy(true) .silent(true) .strict(true) .customrules(Some(vec![pathbuf])) // Read from frozen rule files .writetofile(Some(pathbuf))? // default is stdout .errortofile(Some(pathbuf))? // default is stderr .unixnew_line(true) // use unix new line for formatting // Debugging options .debug(true) // Turn on debug mode .log(true) // Use logging to terminal .interactive(true) // Use interactive mode .build(); // Create unreferenced instance

processor.fromstring(r#"$define(test=Test)"#); processor.fromstdin(); processor.fromfile(&path); processor.freezetofile(&path); // Create frozen file processor.printresult(); // Print out warning and errors count ```

Syntax

Macro syntax

How to debug

Debug

Goal

R4d aims to be a modern alternative to m4 processor, which means

Built-in macros (or macro-like functions)

Usages