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
#![deny(missing_docs)]

//! This crate provides facilities for parsing, printing and
//! manipulating S-expression data. S-expressions are the format used
//! to represent code and data in the Lisp language family.
//!
//! ```scheme
//! ((name . "John Doe")
//!  (age . 43)
//!  (address
//!   (street "10 Downing Street")
//!   (city "London"))
//!  (phones "+44 1234567" "+44 2345678"))
//! ```
//!
//! `lexpr` also supports more complex types; including keywords and
//! configurable tokens for `true`, `false` and `nil`, by default
//! using Scheme syntax:
//!
//! ```scheme
//! (define-class rectangle ()
//!  (width
//!    #:init-value #nil ;; Nil value
//!    #:settable #t     ;; true
//!    #:guard (> width 10)
//!  )
//!  (height
//!    #:init-value 10
//!    #:writable #f ;; false
//!   ))
//! ```
//!
//! Note that keywords, and the corresponding `#:` notation, is not
//! part of standard Scheme, but is supported by `lexpr`'s default
//! parser settings.
//!
//! There are three common ways that you might find yourself needing
//! to work with JSON data in Rust:
//!
//! - **As text data**. An unprocessed string of S-expression data
//!   that you receive from a Lisp program, read from a file, or
//!   prepare to send to a Lisp program.
//!
//! - **As an dynamically typed representation**. Maybe you want to
//!   check that some JSON data is valid before passing it on, but
//!   without knowing the structure of what it contains. Or you want
//!   to handle arbirarily structured data, like Lisp code.
//!
//! - **As a statically typed Rust data structure**. When you expect all
//!   or most of your data to conform to a particular structure and
//!   want to get real work done without the dynamically typed nature
//!   of S-expressions tripping you up.
//!
//! Currently, `lexpr` only handles the first two items of this list;
//! the last item, also known as [Serde] support, is the next
//! big item the agenda.
//!
//! # Operating on dynamically typed S-expression data
//!
//! Any valid S-expression can be manipulated using the [`Value`] data
//! structure.
//!
//! # Constructing S-expression values
//!
//! ```
//!  use lexpr::{Value, Error};
//!
//!  fn example() -> Result<(), Error> {
//!      // Some s-expressions a &str.
//!      let data = r#"((name . "John Doe")
//!                     (age . 43)
//!                     (phones "+44 1234567" "+44 2345678"))"#;
//!
//!      // Parse the string of data into sexpr::Sexp.
//!      let v: Value = lexpr::from_str(data)?;
//!
//!      // Access parts of the data by indexing with square brackets.
//!      println!("Please call {} at the number {}", v["name"], v["phones"][1]);
//!
//!      Ok(())
//!  }
//!  #
//!  # fn main() {
//!  #     example().unwrap();
//!  # }
//! ```
//!
//! # More about S-expressions and their representation
//!
//! Note that the representation chosen is intended for serialization
//! and deserialization, not for manipulation with the same complexity
//! guarantees as in a Lisp implementation. In particular, the
//! representation of lists is based on Rust's `Vec` data type, which
//! has quite different characteristics from the singly-linked lists
//! used in Lisp. As long as you don't attempt to use the
//! `lexpr::Value` type as the value representation of a "regular"
//! Lisp implementation (which would also be made impossible by the
//! fact that Lisp demands garbage collection), or rely on efficently
//! forming suffixes of lists, this should be no issue.
//!
//! # What are S-expressions?
//!
//! S-expressions, as mentioned above, is the notation used by various
//! dialects of Lisp to represent data (and code). As a data format,
//! it is roughly comparable to JSON (JavaScript Object Notation), but
//! syntactically more lightweight and simpler. Note that different
//! Lisp dialects have notational differences for some data types, and
//! some may lack specific data types completely. This section tries
//! to give an overview over the different types of values
//! representable by the [`Value`] data type and how it relates to
//! different Lisp dialects. All examples are given in the syntax used
//! in [Guile](https://www.gnu.org/software/guile/) Scheme
//! implementation.
//!
//! The parser and serializer implementation in `lexpr` can be
//! tailored to parse and generate S-expression data in various
//! "dialects" in use by different Lisp variants; the aim is to cover
//! large parts of R6RS and R7RS Scheme with some Guile and Racket
//! extensions, as well as Emacs Lisp.
//!
//! In the following, the S-expression values that are modeled by
//! `lexpr` are introduced, In general, S-expression values can be
//! split into the two categories of "atoms" and lists.
//!
//! ## Atoms
//!
//! Atoms are primitive (i.e., non-compound) data type such as
//! numbers, strings and booleans.
//!
//! ### Symbols and keywords
//!
//! Lisp also has a data type not commonly found in other languages,
//! namely "symbols". A symbol is conceptually similar to identifiers
//! in other languages, but allow for a much richer set of characters
//! than allowed for identifiers in other languages. Also, identifiers
//! in other languages can typically not be used in data; lisps expose
//! them as a primitive data type, a result of the
//! [homoiconicity](https://en.wikipedia.org/wiki/Homoiconicity) of
//! the Lisp language family.
//!
//!
//! ```scheme
//! this-is-a-symbol ; A single symbol, dashes are allowed
//! another.symbol   ; Periods are allowed as well
//! foo$bar!<_>?     ; As are quite a few other characters
//! ```
//!
//! Another data type, present in some Lisp dialects, such as Emacs
//! Lisp, Common Lisp, and several Scheme implementations, are
//! keywords. These are also supported by `lexpr`. Keywords are very
//! similiar to symbols, but are typically prefixed by `:` or `#:` and
//! are used for different purposes in the language.
//!
//! ```lisp
//! #:foo ; A keyword named "foo", written in Guile/Racket notation
//! :bar  ; A keyword named "bar", written in Emacs Lisp or Common Lisp notation
//! ```
//!
//! ### Booleans
//!
//!  ```scheme
//!  #t ; The literal representing true
//!  #f ; The literal representing false
//!  ```
//!
//! ### The empty list and "nil"
//!
//! In traditional Lisps, the end of list is represented as by a
//! special atom written as `nil`. In Scheme, the empty list is an
//! atom written as `()`, and there is no special `nil` symbol. Both
//! `nil` and the empty list are present and distinguishable in
//! `lexpr`, but the empty list is not considered an atom (see also
//! below for more on list representation in `lexpr`).
//!
//! ### Numbers
//!
//! Numbers are represented by the [`Number`] abstract data type. It
//! can handle signed and unsigned integers, each up to 64 bit size,
//! as well as floating point numbers.
//!
//! There is nothing surprising about the number syntax, extensions
//! such as binary, octal and hexadecimal numbers are not yet
//! implemented.
//!
//! ```scheme
//! 1 -4 3.14 ; A postive, negative, and a floating point number
//! ```
//!
//! ### Strings
//!
//! ```scheme
//! "Hello World!"
//! ```
//!
//! ## Lists
//!
//! Lists are a sequence of values, of either atoms or lists. In fact,
//! Lisp does not have a "real" list data type, but instead lists are
//! represented by chains of so-called "cons cells", which are used to
//! form a singly-linked list, terminated by the empty list (or `nil`
//! in tradional Lisps). It is also possible for the terminator to not
//! be the empty list, but instead be an arbitrary primitive data type
//! (i.e., an atom). In this case, the list is refered to as an
//! "improper" or "dotted" list. Here are some examples:
//!
//! ```scheme
//! ("Hello" "World")   ; A regular list
//! ;; A list having with another, single-element, list as
//! ;; its second item
//! ("Hello" ("World"))
//! (1 . 2) ; A cons cell, represented as an improper list by `lexpr`
//! (1 2 . 3) ; A dotted (improper) list
//! ```
//!
//! Lists are not only used to represent sequences of values, but also
//! associative arrays, also known as maps. A map is represented as a
//! list containing sub-lists, where the first element of each
//! sub-list is the key, and the remainder of the list is the
//! associated value.
//!
//! ```scheme
//! ;; An association list with the symbols `a` and `b` as keys
//! ((a . 42) (b . 43))
//! ```
//!
//! In `lexpr`, lists are implemented not as singly-linked lists, but
//! using vectors, which is more efficient generally. However, that
//! choice precludes an efficient implementation of taking a suffix of
//! an existing list.
//!
//! [Serde]: https://crates.io/crates/serde
//! [`Number`]: struct.Number.html
//! [`Value`]: enum.Value.html

use proc_macro_hack::proc_macro_hack;

/// Construct a [`Value`] using syntax similar to regular S-expressions.
///
/// The macro is intended to have a feeling similiar to an implicitly
/// quasiquoted Scheme expression.
///
/// # Booleans
///
/// ```
/// # use lexpr::sexp;
///
/// let t = sexp!(#f);
/// let f = sexp!(#t);
/// ```
///
/// # Symbols and keywords
///
/// Due to syntactic restrictions of Rust's macro system, to use
/// kebab-case, you need to use the `#"..."` syntax.
///
/// ```
/// # use lexpr::sexp;
///
/// let sym = sexp!(symbol);
/// let kw = sexp!(#:keyword);
/// assert!(sym.is_symbol());
/// assert!(kw.is_keyword());
///
/// let kebab_sym = sexp!(#"kebab-symbol");
/// let kebab_kw = sexp!(#:"kebab-keyword");
/// assert!(kebab_sym.is_symbol());
/// assert!(kebab_kw.is_keyword());
/// ```
/// # Lists
///
/// ```
/// # use lexpr::sexp;
///
/// let l1 = sexp!((1 2 3));
/// let l2 = sexp!((1 . (2 . (3 . ()))));
/// let l3 = sexp!((1 2 . (3 . ())));
/// assert_eq!(l1, l2);
/// assert_eq!(l2, l3);
/// ```
///
/// [`Value`]: enum.Value.html
#[proc_macro_hack]
pub use lexpr_macros::sexp;

mod error;
mod iter;
mod read;
mod style;

pub mod atom;
pub mod number;
pub mod parse;
pub mod print;
pub mod value;

#[doc(inline)]
pub use self::parse::{
    from_reader, from_reader_custom, from_slice, from_slice_custom, from_str, from_str_custom,
    Parser,
};

#[doc(inline)]
pub use self::print::{
    to_string, to_string_custom, to_vec, to_vec_custom, to_writer, to_writer_custom, Printer,
};

#[doc(inline)]
pub use value::Value;

#[doc(inline)]
pub use atom::Atom;

#[doc(inline)]
pub use number::Number;

#[doc(inline)]
pub use error::{Error, Result};

#[cfg(test)]
mod tests;