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
//! # Boxworks language
//!
//! This crate defines a domain-specific language (DSL) for Boxworks.
//! This language is used to describe Boxworks elements in Knuth's box-and-glue model.
//! The initial motivation for the language is to make it
//! easy to create Boxworks primitives,
//! like horizontal and vertical lists,
//! for use in unit testing.
//!
//! In the long run, the language will probably support running the Boxworks engine
//! and actually performing typesetting.
//! If this happens, this language will be a sort of "intermediate representation"
//! for the Texcraft project.
//!
//! This is a basic example of converting some of the language into a
//! horizontal list:
//!
//! ```
//! use core;
//! use boxworks::ds;
//! use boxworks_lang as bwl;
//!
//! let source = r#"
//! ## The text() function typesets some text.
//! ## The language automatically converts spaces into glue.
//! text("Box Lang")
//! ## Or glue can be added manually.
//! glue(1pt, 5fil, 0.075in)
//! ## The following elements illustrate the prototypical example of a kern.
//! text("A")
//! kern(-0.1pt)
//! text("V")
//! "#;
//! let got = bwl::parse_horizontal_list(&source);
//! let want: Vec<ds::Horizontal> = vec![
//! ds::Char{char: 'B', font: 0}.into(),
//! ds::Char{char: 'o', font: 0}.into(),
//! ds::Char{char: 'x', font: 0}.into(),
//! ds::Glue{
//! kind: ds::GlueKind::Normal,
//! // Right now spaces are converted to the glue 10pt plus 4pt minus 4pt.
//! // We will eventually support customizing this.
//! value: core::Glue{
//! width: core::Scaled::ONE * 10,
//! stretch: core::Scaled::ONE * 4,
//! stretch_order: core::GlueOrder::Normal,
//! shrink: core::Scaled::ONE * 4,
//! shrink_order: core::GlueOrder::Normal,
//! }
//! }.into(),
//! ds::Char{char: 'L', font: 0}.into(),
//! ds::Char{char: 'a', font: 0}.into(),
//! ds::Char{char: 'n', font: 0}.into(),
//! ds::Char{char: 'g', font: 0}.into(),
//! ds::Glue{
//! kind: ds::GlueKind::Normal,
//! value: core::Glue{
//! width: core::Scaled::new(
//! 1, // integer part
//! core::Scaled::ZERO, // fractional part
//! core::ScaledUnit::Point, // units
//! ).unwrap(),
//! stretch: core::Scaled::new(
//! 5, // integer part
//! core::Scaled::ZERO, // fractional part
//! core::ScaledUnit::Point, // units
//! ).unwrap(),
//! stretch_order: core::GlueOrder::Fil,
//! shrink: core::Scaled::new(
//! 0, // integer part
//! core::Scaled::from_decimal_digits(&[0, 7, 5]), // fractional part
//! core::ScaledUnit::Inch, // units
//! ).unwrap(),
//! shrink_order: core::GlueOrder::Normal,
//! }
//! }.into(),
//! ds::Char{char: 'A', font: 0}.into(),
//! ds::Kern{
//! kind: ds::KernKind::Normal,
//! width: -core::Scaled::new(
//! 0, // integer part
//! core::Scaled::from_decimal_digits(&[1]), // fractional part
//! core::ScaledUnit::Point, // units
//! ).unwrap(),
//! }.into(),
//! ds::Char{char: 'V', font: 0}.into(),
//! ];
//! assert_eq![got, Ok(want)];
//! ```
//!
//! The main takeaway from this example is that you start with a very
//! terse description of the horizontal list, and the library outputs
//! the long and tedious Rust struct definitions.
//!
//! ## Language specification
//!
//! A Boxworks language program is a sequence of a function calls
//! like `text("ABC")` or `glue(10pt, 3pt, 2pt)`.
//! Most function calls add an item or items to the current
//! box-and-glue list.
//!
//! ### Function arguments
//!
//! Each function accepts a number of arguments.
//! For simplicity, every argument to every function is optional.
//!
//! Arguments can be provided positionally:
//!
//! ```
//! # use boxworks_lang as bwl;
//! # use boxworks::ds;
//! let source = r#"
//! text("A", 1)
//! "#;
//! assert_eq![
//! bwl::parse_horizontal_list(&source),
//! Ok(vec![ds::Char{char: 'A', font: 1}.into()])
//! ];
//! ```
//!
//! Or by keyword, potentially out of order:
//!
//! ```
//! # use boxworks_lang as bwl;
//! # use boxworks::ds;
//! let source = r#"
//! text(font=2, content="B")
//! "#;
//! assert_eq![
//! bwl::parse_horizontal_list(&source),
//! Ok(vec![ds::Char{char: 'B', font: 2}.into()])
//! ];
//! ```
//!
//! Or by a combination of positional and by keyword:
//!
//! ```
//! # use boxworks_lang as bwl;
//! # use boxworks::ds;
//! let source = r#"
//! text("C", font=3)
//! "#;
//! assert_eq![
//! bwl::parse_horizontal_list(&source),
//! Ok(vec![ds::Char{char: 'C', font: 3}.into()])
//! ];
//! ```
//!
//! However, all positional arguments must be provided before
//! keyword arguments:
//!
//! ```
//! # use boxworks_lang as bwl;
//! # use boxworks::ds;
//! let source = r#"
//! text(content="C", 3)
//! "#;
//! let errs = bwl::parse_horizontal_list(&source).unwrap_err();
//! assert![matches![
//! errs[0],
//! bwl::Error::PositionalArgAfterKeywordArg{..}
//! ]];
//! ```
//!
//! ### Function argument types
//!
//! Every function argument expects a specific concrete type.
//! These are the types:
//!
//! | Name | Description | Examples
//! |------|-------------|---------
//! | String | Arbitrary UTF-8 characters between double quotes. Currently the string can't contain a double quote character. | `"a string"`
//! | Integer | Decimal integer in the range (-2^31,2^31). | `123`, `-456`
//! | Dimension | Decimal number with a unit attached. The format and the allowable units are the same as in TeX. | `1pt`, `2.04in`, `-10sp`
//! | Glue stretch or shrink | A dimension where the unit can alternatively be an infinite stretch/shrink unit. | `1fil`, `-2fill`, `3filll`
//!
//! ### Available functions
//!
//! More functions will be added over time.
//! These are the currently supported functions.
//!
//! #### `glue`: add a glue node to the current list
//!
//! Adds a value of the Rust type [`boxworks::ds::Glue`]
//! to the current list.
//!
//! Parameters:
//!
//! | Number | Name | Type | Default |
//! |--------|---------|-----------|---------|
//! | 1 | `width` | dimension | `0pt` |
//! | 2 | `stretch` | glue stretch or shrink | `0pt` |
//! | 3 | `shrink` | glue stretch or shrink | `0pt` |
//!
//! #### `kern`: add a kern node to the current list
//!
//! Adds a value of the Rust type [`boxworks::ds::Kern`]
//! to the current list.
//!
//! Parameters:
//!
//! | Number | Name | Type | Default |
//! |--------|---------|-----------|---------|
//! | 1 | `width` | dimension | `0pt` |
//!
//! #### `text`: typeset some text
//!
//! The goal of this function is to add character and glue nodes
//! like TeX does when it is processing normal text.
//! In TeX this is actually a complicated process that includes:
//!
//! - Adding kerns between characters.
//! - Applying ligature rules.
//! - Adjusting the space factor that determines the size of inter-word glue.
//!
//! Right now the `text` function is much simpler.
//! It iterates over all characters in the string and:
//!
//! - For space characters, adds a glue node corresponding
//! to the glue `10pt plus 4pt minus 4pt`.
//!
//! - For all other characters, adds a value of the Rust type
//! [`boxworks::ds::Char`].
//!
//! Parameters:
//!
//! | Number | Name | Type | Default |
//! |--------|---------|-----------|---------|
//! | 1 | `content` | string | `""` |
//! | 2 | `font` | integer | `0` |
pub mod ast;
pub mod convert;
pub mod cst;
mod error;
pub mod lexer;
use convert::ToBoxworks;
pub use error::{Error, ErrorAccumulator, ErrorLabel};
use boxworks::ds;
/// String type used in the crate's public API.
#[derive(Debug, Clone)]
pub struct Str<'a> {
value: &'a str,
start: usize,
end: usize,
}
impl<'a> Str<'a> {
fn new(value: &'a str) -> Str<'a> {
Str {
value,
start: 0,
end: value.len(),
}
}
fn span(&self) -> std::ops::Range<usize> {
self.start..self.end
}
fn str(&self) -> &'a str {
&self.value[self.span()]
}
fn is_empty(&self) -> bool {
self.start == self.end
}
}
impl<'a> From<&'a str> for Str<'a> {
fn from(value: &'a str) -> Self {
Str {
value,
start: 0,
end: value.len(),
}
}
}
impl<'a> std::fmt::Display for Str<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.str())
}
}
impl<'a> PartialEq for Str<'a> {
fn eq(&self, other: &Self) -> bool {
println!("Checking {} == {}", self.str(), other.str());
self.str() == other.str()
}
}
impl<'a> Eq for Str<'a> {}
/// Pretty-format Box source code.
pub fn format(source: &str) -> Result<String, Vec<error::Error>> {
let errs: ErrorAccumulator = Default::default();
let l = lexer::Lexer::new(source, errs.clone());
let func_calls = cst::parse_using_lexer(l, errs.clone());
errs.check()?;
let mut s = String::new();
cst::pretty_print(&mut s, func_calls).expect("no errors writing to string");
Ok(s)
}
/// Parse Box language source code into a horizontal list.
pub fn parse_horizontal_list(source: &str) -> Result<Vec<ds::Horizontal>, Vec<Error>> {
let ast_nodes = ast::parse_hlist(source)?;
Ok(ast_nodes.to_boxworks())
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_format() {
let input = r#"# This is a
# list of things
hlist
(
1.0pt, height =2.0pt,
contents = [ # glue is good
glue( )
text("Hello", font =
# we use an unusual font here
1)
text("Hello", font =
0) text("World")] ,
# Infinite glue
other=3.0fill,
# there are no more arguments
)
"#;
let want = r#"# This is a
# list of things
hlist(
1.0pt,
height=2.0pt,
contents=[
# glue is good
glue()
text(
"Hello",
# we use an unusual font here
font=1,
)
text("Hello", font=0)
text("World")
],
# Infinite glue
other=3.0fill,
# there are no more arguments
)
"#;
let got = format(&input).unwrap();
assert_eq!(got, want);
}
}