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
//! # Verifiable Rust
//!
//! A collection of crates to facilitate the development of formally verifiable rust code.
//!
//! Type level programming allows us to implement logic that can be verified by the compiler, which
//! makes it possible to catch bugs at compile time, rather than at runtime.
//!
//! Say we have an algorithm where the runtime scales exponentially. We would like to be able to
//! restrict the number of elements in our working set to a reasonable number, let's say 128, in
//! order to ensure that the algorithm completes in a reasonable amount of time, every time.
//!
//! ```compile_fail
//! use verified::*;
//!
//! #[derive(Default)]
//! struct Collection<E, Size: Unsigned> {
//!     elements: Vec<E>,
//!     size: Size,
//! }
//!
//! #[verify]
//! fn slow_routine<E, Size: Unsigned>(working_set: Collection<E, Size>)
//! where
//!     // Restrict the size of the working set.
//!     _: Verify<{ Size < 128 }, { Size > 0 }>
//! {
//!     // TODO
//! }
//!
//! fn main() {
//!     // No problem here...
//!     slow_routine::<String, U1>(Default::default());
//!     slow_routine::<String, U127>(Default::default());
//!
//!     // XXX: Does not compile because our working set is empty.
//!     slow_routine::<String, U0>(Default::default());
//!
//!     // XXX: Does not compile because our working set is one element too large.
//!     slow_routine::<String, U128>(Default::default());
//! }
//! ```
//!
//! # #\[verify\]
//!
//! The `verified` crate is built on top of the `typenum` crate, and provides syntactic sugar for
//! defining type-level values via the `#[verify]` macro from the `verify_macro` crate. You can
//! annotate almost any item with `#[verify]` (still a work in progress), and anywhere you would
//! typically use a type like `<A as Add<B>>::Output`, you can now simply write `{ A + B }`.
//!
//! For a more complete example, see the `vec` module. Here is an abbreviated snippet:
//!
//! ```rust
//! use verified::*;
//! use std::vec::Vec as Raw;
//!
//! pub struct Vec<Size: Unsigned, Element>(Size, Raw<Element>);
//!
//! #[verify]
//! impl<Size: Unsigned, Element> Vec<Size, Element> {
//!     pub fn append<OtherSize: Unsigned>(
//!         self,
//!         other: Vec<OtherSize, Element>,
//!     ) -> Vec<{ Size + OtherSize }, Element> {
//!         self + other
//!     }
//!
//!     pub fn pop(self) -> (Vec<{ Size - 1 }, Element>, Element)
//!     where
//!         _: Verify<{ Size > 0 }>,
//!     {
//!         self.into()
//!     }
//!
//!     pub fn push(self, e: Element) -> Vec<{ Size + 1 }, Element> {
//!         (self, e).into()
//!     }
//! }
//!
//! #[verify]
//! impl<SizeL: Unsigned, SizeR: Unsigned, Element> std::ops::Add<Vec<SizeR, Element>>
//!     for Vec<SizeL, Element>
//! {
//!     type Output = Vec<{ SizeL + SizeR }, Element>;
//!     fn add(self, Vec(os, mut ov): Vec<SizeR, Element>) -> Self::Output {
//!         let Self(s, mut v) = self;
//!         v.append(&mut ov);
//!         Vec(s + os, v)
//!     }
//! }
//!
//! #[verify]
//! impl<Size: Unsigned, Element> std::convert::From<(Vec<Size, Element>, Element)>
//!     for Vec<{ Size + 1 }, Element>
//! {
//!     fn from((Vec(_, mut v), e): (Vec<Size, Element>, Element)) -> Self {
//!         v.push(e);
//!         Self(Default::default(), v)
//!     }
//! }
//!
//! #[verify]
//! impl<Size: Unsigned, Element> std::convert::From<Vec<Size, Element>>
//!     for (Vec<{ Size - 1 }, Element>, Element)
//! where
//!     _: Verify<{ Size > 0 }>,
//! {
//!     fn from(Vec(_, mut v): Vec<Size, Element>) -> Self {
//!         let e = v.pop().unwrap();
//!         (Vec(Default::default(), v), e)
//!     }
//! }
//! ```
//!
//! # Verify<...>
//!
//! You may have noticed the strange where clauses that look like `_: Verify<{ ... }, ...>`. This
//! `Verify` "trait" is processed by the `#[verify]` attribute. You can think of each argument as
//! an expression that must evaluate to "true" in order to compile. This allows us to instrument
//! our code with additional compile time checks for added safety.
//!
//! # $ Compiling
//!
//! The `verified` crate is built on top of the `typenum` crate. Naturally, the compiler errors can
//! get pretty hairy. Here, I've accidentally typed `2` instead of `1` somewhere in the `vec`
//! module. This is perhaps one of the less cryptic errors you may see...
//!
//! ```text
//! $ cargo build
//!
//! error[E0277]: cannot add `typenum::uint::UInt<typenum::uint::UTerm, typenum::bit::B1>` to `Size`
//!   --> verified/src/vec.rs:44:19
//!    |
//! 44 |         (self, e).into()
//!    |                   ^^^^ no implementation for `Size + typenum::uint::UInt<typenum::uint::UTerm, typenum::bit::B1>`
//!    |
//!    = help: the trait `std::ops::Add<typenum::uint::UInt<typenum::uint::UTerm, typenum::bit::B1>>` is not implemented for `Size`
//! help: consider further restricting this bound with `+ std::ops::Add<typenum::uint::UInt<typenum::uint::UTerm, typenum::bit::B1>>`
//!   --> verified/src/vec.rs:28:12
//!    |
//! 28 | impl<Size: Unsigned, Element> Vec<Size, Element> {
//!    |            ^^^^^^^^
//!    = note: required because of the requirements on the impl of `std::convert::From<(vec::Vec<Size, Element>, Element)>` for `vec::Vec<<Size as std::ops::Add<typenum::uint::UInt<typenum::uint::UInt<typenum::uint::UTerm, typenum::bit::B1>, typenum::bit::B0>>>::Output, Element>`
//!    = note: required because of the requirements on the impl of `std::convert::Into<vec::Vec<<Size as std::ops::Add<typenum::uint::UInt<typenum::uint::UInt<typenum::uint::UTerm, typenum::bit::B1>, typenum::bit::B0>>>::Output, Element>>` for `(vec::Vec<Size, Element>, Element)`
//! ```
//!
//! `cargo-verify` tries to help by translating types into simple arithmetic expressions where
//! possible.
//!
//! # $ cargo-verify
//!
//! ```text
//! $ cargo verify build
//!
//! error[E0277]: cannot add `1` to `Size`
//!   --> verified/src/vec.rs:44:19
//!    |
//! 44 |         (self, e).into()
//!    |                   ^^^^ no implementation for `Size + 1`
//!    |
//!    = help: the trait `{ _ + 1 }` is not implemented for `Size`
//! help: consider further restricting this bound with `+ { _ + 1 }`
//!   --> verified/src/vec.rs:28:12
//!    |
//! 28 | impl<Size: Unsigned, Element> Vec<Size, Element> {
//!    |            ^^^^^^^^
//!    = note: required because of the requirements on the impl of `std::convert::From<(vec::Vec<Size, Element>, Element)>` for `vec::Vec<{ Size + 2 }, Element>`
//!    = note: required because of the requirements on the impl of `std::convert::Into<vec::Vec<{ Size + 2 }, Element>>` for `(vec::Vec<Size, Element>, Element)`
//!
//!
//! ```
//!
//! # Install
//!
//! ```text
//! $ cargo install cargo-verify
//! ```
//!
//! To upgrade:
//!
//! ```text
//! $ cargo install --force cargo-verify
//! ```
//!
//! Or clone and build with `$ cargo build` then place the binary in your $PATH.
//!
//! # Usage
//!
//! ```text
//! $ cargo verify [COMMAND] [OPTIONS]...
//! ```

pub mod vec;
pub use std::ops::{Add, BitAnd, BitOr, BitXor, Div, Mul, Not, Rem, Shl, Shr, Sub};
pub use typenum::*;
pub use verify_macro::verify;