elicitation 0.8.0

Conversational elicitation of strongly-typed Rust values via MCP
Documentation
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
//! Prusti-specific contract implementations for primitive types.
//!
//! Prusti uses separation logic and the Viper verification infrastructure
//! to verify Rust programs.
//!
//! # Important
//!
//! These implementations require the Prusti toolchain:
//! - `cargo-prusti` command
//! - Java Runtime Environment (JRE)
//! - Viper verification infrastructure
//!
//! # Usage
//!
//! ```bash
//! # Verify contracts with Prusti
//! cargo prusti --features verify-prusti
//! ```

use crate::verification::Contract;

// Note: Prusti verification requires `#[pure]`, `#[requires]`, `#[ensures]` attributes.
// These implementations provide runtime contract checking.
// For formal verification, annotate functions with Prusti attributes.

/// Prusti-verified non-empty string contract.
///
/// **Formal Properties (verified by Prusti/Viper):**
/// - Precondition: `input.len() > 0`
/// - Postcondition: `output.len() > 0`
/// - Ownership: String ownership preserved
pub struct PrustiStringNonEmpty;

impl Contract for PrustiStringNonEmpty {
    type Input = String;
    type Output = String;

    // In actual Prusti verification, this becomes:
    // #[pure]
    // #[requires(input.len() > 0)]
    fn requires(input: &String) -> bool {
        !input.is_empty()
    }

    // In actual Prusti verification, this becomes:
    // #[ensures(result.len() > 0)]
    fn ensures(_input: &String, output: &String) -> bool {
        !output.is_empty()
    }

    fn invariant(&self) -> bool {
        true
    }
}

/// Prusti-verified positive integer contract.
///
/// **Formal Properties (verified by Prusti/Viper):**
/// - Precondition: `*input > 0`
/// - Postcondition: `*output > 0`
/// - No overflow/underflow
pub struct PrustiI32Positive;

impl Contract for PrustiI32Positive {
    type Input = i32;
    type Output = i32;

    // In actual Prusti verification, this becomes:
    // #[pure]
    // #[requires(*input > 0)]
    fn requires(input: &i32) -> bool {
        *input > 0
    }

    // In actual Prusti verification, this becomes:
    // #[ensures(*result > 0)]
    fn ensures(_input: &i32, output: &i32) -> bool {
        *output > 0
    }

    fn invariant(&self) -> bool {
        true
    }
}

/// Prusti-verified boolean contract (trivial).
///
/// **Formal Properties (verified by Prusti/Viper):**
/// - Precondition: true
/// - Postcondition: true
pub struct PrustiBoolValid;

impl Contract for PrustiBoolValid {
    type Input = bool;
    type Output = bool;

    fn requires(_input: &bool) -> bool {
        true
    }

    fn ensures(_input: &bool, _output: &bool) -> bool {
        true
    }

    fn invariant(&self) -> bool {
        true
    }
}

// ============================================================================
// Unsigned Integer Contracts (Phase 4.1)
// ============================================================================

/// Prusti-verified u32 non-zero contract.
pub struct PrustiU32NonZero;

impl Contract for PrustiU32NonZero {
    type Input = u32;
    type Output = u32;

    fn requires(input: &u32) -> bool {
        *input > 0
    }

    fn ensures(_input: &u32, output: &u32) -> bool {
        *output > 0
    }
}

/// Prusti-verified u64 non-zero contract.
pub struct PrustiU64NonZero;

impl Contract for PrustiU64NonZero {
    type Input = u64;
    type Output = u64;

    fn requires(input: &u64) -> bool {
        *input > 0
    }

    fn ensures(_input: &u64, output: &u64) -> bool {
        *output > 0
    }
}

/// Prusti-verified u128 non-zero contract.
pub struct PrustiU128NonZero;

impl Contract for PrustiU128NonZero {
    type Input = u128;
    type Output = u128;

    fn requires(input: &u128) -> bool {
        *input > 0
    }

    fn ensures(_input: &u128, output: &u128) -> bool {
        *output > 0
    }
}

/// Prusti-verified usize non-zero contract.
pub struct PrustiUsizeNonZero;

impl Contract for PrustiUsizeNonZero {
    type Input = usize;
    type Output = usize;

    fn requires(input: &usize) -> bool {
        *input > 0
    }

    fn ensures(_input: &usize, output: &usize) -> bool {
        *output > 0
    }
}

// ============================================================================
// Signed Integer Contracts (Phase 4.2)
// ============================================================================

/// Prusti-verified i64 positive contract.
pub struct PrustiI64Positive;

impl Contract for PrustiI64Positive {
    type Input = i64;
    type Output = i64;

    fn requires(input: &i64) -> bool {
        *input > 0
    }

    fn ensures(_input: &i64, output: &i64) -> bool {
        *output > 0
    }
}

/// Prusti-verified i128 positive contract.
pub struct PrustiI128Positive;

impl Contract for PrustiI128Positive {
    type Input = i128;
    type Output = i128;

    fn requires(input: &i128) -> bool {
        *input > 0
    }

    fn ensures(_input: &i128, output: &i128) -> bool {
        *output > 0
    }
}

/// Prusti-verified isize positive contract.
pub struct PrustiIsizePositive;

impl Contract for PrustiIsizePositive {
    type Input = isize;
    type Output = isize;

    fn requires(input: &isize) -> bool {
        *input > 0
    }

    fn ensures(_input: &isize, output: &isize) -> bool {
        *output > 0
    }
}

// ============================================================================
// Floating Point Contracts (Phase 4.3)
// ============================================================================

/// Prusti-verified f32 finite contract.
pub struct PrustiF32Finite;

impl Contract for PrustiF32Finite {
    type Input = f32;
    type Output = f32;

    fn requires(input: &f32) -> bool {
        input.is_finite()
    }

    fn ensures(_input: &f32, output: &f32) -> bool {
        output.is_finite()
    }
}

/// Prusti-verified f64 finite contract.
pub struct PrustiF64Finite;

impl Contract for PrustiF64Finite {
    type Input = f64;
    type Output = f64;

    fn requires(input: &f64) -> bool {
        input.is_finite()
    }

    fn ensures(_input: &f64, output: &f64) -> bool {
        output.is_finite()
    }
}

// ============================================================================
// Option<T> Contracts (Phase 5.1)
// ============================================================================

/// Prusti-verified Option<T> must be Some contract.
pub struct PrustiOptionIsSome<T> {
    _phantom: std::marker::PhantomData<T>,
}

impl<T> Default for PrustiOptionIsSome<T> {
    fn default() -> Self {
        Self::new()
    }
}

impl<T> PrustiOptionIsSome<T> {
    /// Create new Prusti OptionIsSome contract.
    pub const fn new() -> Self {
        Self {
            _phantom: std::marker::PhantomData,
        }
    }
}

impl<T> Contract for PrustiOptionIsSome<T>
where
    T: crate::traits::Elicitation + Clone + std::fmt::Debug + Send,
{
    type Input = Option<T>;
    type Output = Option<T>;

    fn requires(input: &Option<T>) -> bool {
        input.is_some()
    }

    fn ensures(_input: &Option<T>, output: &Option<T>) -> bool {
        output.is_some()
    }
}

// ============================================================================
// Result<T, E> Contracts (Phase 5.2)
// ============================================================================

/// Prusti-verified Result<T, E> must be Ok contract.
pub struct PrustiResultIsOk<T, E> {
    _phantom: std::marker::PhantomData<(T, E)>,
}

impl<T, E> Default for PrustiResultIsOk<T, E> {
    fn default() -> Self {
        Self::new()
    }
}

impl<T, E> PrustiResultIsOk<T, E> {
    /// Create new Prusti ResultIsOk contract.
    pub const fn new() -> Self {
        Self {
            _phantom: std::marker::PhantomData,
        }
    }
}

impl<T, E> Contract for PrustiResultIsOk<T, E>
where
    T: crate::traits::Elicitation + Clone + std::fmt::Debug + Send,
    E: crate::traits::Elicitation + Clone + std::fmt::Debug + Send,
{
    type Input = Result<T, E>;
    type Output = Result<T, E>;

    fn requires(input: &Result<T, E>) -> bool {
        input.is_ok()
    }

    fn ensures(_input: &Result<T, E>, output: &Result<T, E>) -> bool {
        output.is_ok()
    }
}

// ============================================================================
// Vec<T> Contracts (Phase 5.3)
// ============================================================================

/// Prusti-verified Vec<T> non-empty contract.
pub struct PrustiVecNonEmpty<T> {
    _phantom: std::marker::PhantomData<T>,
}

impl<T> Default for PrustiVecNonEmpty<T> {
    fn default() -> Self {
        Self::new()
    }
}

impl<T> PrustiVecNonEmpty<T> {
    /// Create new Prusti VecNonEmpty contract.
    pub const fn new() -> Self {
        Self {
            _phantom: std::marker::PhantomData,
        }
    }
}

impl<T> Contract for PrustiVecNonEmpty<T>
where
    T: crate::traits::Elicitation + Clone + std::fmt::Debug + Send,
{
    type Input = Vec<T>;
    type Output = Vec<T>;

    fn requires(input: &Vec<T>) -> bool {
        !input.is_empty()
    }

    fn ensures(_input: &Vec<T>, output: &Vec<T>) -> bool {
        !output.is_empty()
    }
}

// ============================================================================
// Tests
// ============================================================================

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_prusti_string_non_empty() {
        let input = String::from("hello");
        assert!(PrustiStringNonEmpty::requires(&input));
        assert!(PrustiStringNonEmpty::ensures(&input, &input));
    }

    #[test]
    fn test_prusti_i32_positive() {
        let input = 42i32;
        assert!(PrustiI32Positive::requires(&input));
        assert!(PrustiI32Positive::ensures(&input, &input));
    }

    #[test]
    fn test_prusti_bool_valid() {
        assert!(PrustiBoolValid::requires(&true));
        assert!(PrustiBoolValid::requires(&false));
        assert!(PrustiBoolValid::ensures(&true, &false));
    }

    #[test]
    fn test_prusti_u32_non_zero() {
        assert!(PrustiU32NonZero::requires(&42u32));
        assert!(!PrustiU32NonZero::requires(&0u32));
    }

    #[test]
    fn test_prusti_u64_non_zero() {
        assert!(PrustiU64NonZero::requires(&42u64));
        assert!(!PrustiU64NonZero::requires(&0u64));
    }

    #[test]
    fn test_prusti_u128_non_zero() {
        assert!(PrustiU128NonZero::requires(&42u128));
        assert!(!PrustiU128NonZero::requires(&0u128));
    }

    #[test]
    fn test_prusti_usize_non_zero() {
        assert!(PrustiUsizeNonZero::requires(&42usize));
        assert!(!PrustiUsizeNonZero::requires(&0usize));
    }

    #[test]
    fn test_prusti_i64_positive() {
        assert!(PrustiI64Positive::requires(&42i64));
        assert!(!PrustiI64Positive::requires(&0i64));
    }

    #[test]
    fn test_prusti_i128_positive() {
        assert!(PrustiI128Positive::requires(&42i128));
        assert!(!PrustiI128Positive::requires(&0i128));
    }

    #[test]
    fn test_prusti_isize_positive() {
        assert!(PrustiIsizePositive::requires(&42isize));
        assert!(!PrustiIsizePositive::requires(&0isize));
    }

    #[test]
    fn test_prusti_f32_finite() {
        assert!(PrustiF32Finite::requires(&42.0f32));
        assert!(!PrustiF32Finite::requires(&f32::NAN));
    }

    #[test]
    fn test_prusti_f64_finite() {
        assert!(PrustiF64Finite::requires(&42.0f64));
        assert!(!PrustiF64Finite::requires(&f64::NAN));
    }

    #[test]
    fn test_prusti_option_is_some() {
        let some_val: Option<i32> = Some(42);
        let none_val: Option<i32> = None;

        assert!(PrustiOptionIsSome::<i32>::requires(&some_val));
        assert!(!PrustiOptionIsSome::<i32>::requires(&none_val));
    }

    #[test]
    fn test_prusti_result_is_ok() {
        let ok_val: Result<i32, String> = Ok(42);
        let err_val: Result<i32, String> = Err("error".to_string());

        assert!(PrustiResultIsOk::<i32, String>::requires(&ok_val));
        assert!(!PrustiResultIsOk::<i32, String>::requires(&err_val));
    }

    #[test]
    fn test_prusti_vec_non_empty() {
        let non_empty: Vec<i32> = vec![1, 2, 3];
        let empty: Vec<i32> = vec![];

        assert!(PrustiVecNonEmpty::<i32>::requires(&non_empty));
        assert!(!PrustiVecNonEmpty::<i32>::requires(&empty));
    }
}