preserves/README.md

85 lines
3.6 KiB
Markdown
Raw Permalink Normal View History

2019-08-11 15:19:08 +00:00
---
2019-08-18 21:08:55 +00:00
projectpages: "https://gitlab.com/preserves/preserves"
2021-05-21 19:56:59 +00:00
projecttree: "https://gitlab.com/preserves/preserves/tree/main"
2019-08-18 21:08:55 +00:00
title: "Preserves: an Expressive Data Language"
no_site_title: true
2019-08-11 15:19:08 +00:00
---
2019-08-08 13:46:03 +00:00
2019-08-11 15:52:29 +00:00
This [repository]({{page.projectpages}}) contains a
2021-06-02 18:32:40 +00:00
[proposal](preserves.html) and various implementations of *Preserves*,
a new data model and serialization format in many ways comparable to
JSON, XML, S-expressions, CBOR, ASN.1 BER, and so on.
2019-08-08 13:46:03 +00:00
2019-08-18 21:08:55 +00:00
> **WARNING** Everything in this repository is experimental and in
> flux! The design of Preserves is not finalised and may change
> drastically. Please offer any feedback you may have with this in
> mind.
## Core documents
2021-05-25 12:13:09 +00:00
### Preserves data model and serialization formats
2021-06-02 18:32:40 +00:00
Preserves is defined in terms of a syntax-neutral
[data model and semantics](preserves.html#starting-with-semantics)
which all transfer syntaxes share. This allows trivial, completely
automatic, perfect-fidelity conversion between syntaxes.
2019-08-18 21:08:55 +00:00
- [Preserves tutorial](TUTORIAL.html)
- [Preserves specification](preserves.html), including semantics,
2021-06-02 18:32:40 +00:00
data model, textual syntax, and compact binary syntax
2019-10-08 12:27:35 +00:00
- [Canonical Form for Binary Syntax](canonical-binary.html)
2021-06-02 18:32:40 +00:00
- [Syrup](https://github.com/ocapn/syrup#pseudo-specification), a
hybrid binary/human-readable syntax for the Preserves data model
2019-08-18 21:08:55 +00:00
### Preserves schema and queries
2021-05-25 12:13:09 +00:00
- [Preserves Schema specification](preserves-schema.html)
- [Preserves Path specification](preserves-path.html)
2021-05-25 12:13:09 +00:00
2021-06-02 18:32:40 +00:00
## Implementations
Implementations of the data model, plus the textual and/or binary transfer syntaxes:
- [Preserves for Nim](https://git.sr.ht/~ehmry/preserves-nim)
- [Preserves for Python]({{page.projecttree}}/implementations/python/) ([`pip install preserves`](https://pypi.org/project/preserves/))
- [Preserves for Racket]({{page.projecttree}}/implementations/racket/preserves/) ([`raco pkg install preserves`](https://pkgs.racket-lang.org/package/preserves))
- [Preserves for Rust]({{page.projecttree}}/implementations/rust/) ([crates.io package](https://crates.io/crates/preserves))
- [Preserves for Squeak Smalltalk](https://squeaksource.com/Preserves.html) (`Installer ss project: 'Preserves'; install: 'Preserves'`)
- [Preserves for TypeScript and JavaScript]({{page.projecttree}}/implementations/javascript/) ([`yarn add @preserves/core`](https://www.npmjs.com/package/@preserves/core))
Implementations of the data model, plus Syrup transfer syntax:
- [Syrup for Racket](https://github.com/ocapn/syrup/blob/master/impls/racket/syrup/syrup.rkt)
- [Syrup for Guile](https://github.com/ocapn/syrup/blob/master/impls/guile/syrup.scm)
- [Syrup for Python](https://github.com/ocapn/syrup/blob/master/impls/python/syrup.py)
- [Syrup for JavaScript](https://github.com/zarutian/agoric-sdk/blob/zarutian/captp_variant/packages/captp/lib/syrup.js)
- [Syrup for Haskell](https://github.com/zenhack/haskell-preserves)
## Tools
### Preserves documents
- [preserves-tool](doc/preserves-tool.html), generic syntax translation and pretty-printing
### Preserves Schema documents and codegen
2021-09-02 11:46:49 +00:00
- [Tools for working with Preserves Schema](doc/schema-tools.html)
2019-08-18 21:08:55 +00:00
## Additional resources
- Some [conventions for common data types](conventions.html)
- [Open questions](questions.html); see also the
[issues list]({{page.projectpages}}/issues)
- [Why not Just Use JSON?](why-not-json.html)
2019-08-08 13:46:03 +00:00
## Contact
Tony Garnock-Jones <tonyg@leastfixedpoint.com>
## Licensing
The contents of this repository are made available to you under the
[Apache License, version 2.0](LICENSE)
(<http://www.apache.org/licenses/LICENSE-2.0>), and are Copyright
2021-05-26 12:27:17 +00:00
2018-2021 Tony Garnock-Jones.