lambdust 0.1.1

A Scheme dialect with gradual typing and effect systems
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
//! Standard library functions for monadic composition and effect handling.
//!
//! This module provides the standard library functions that support the effect
//! system, including monadic operations, effect handlers, and utility functions
//! for working with effects in Lambdust programs.

use crate::diagnostics::{Error as DiagnosticError, Result};
use crate::effects::{Effect, MonadicValue};
use crate::eval::value::{Value, PrimitiveProcedure, PrimitiveImpl, ThreadSafeEnvironment};
// use std::collections::HashMap;
use std::sync::Arc;

/// Creates the standard library bindings for effects and monads.
pub fn create_effect_bindings(env: &Arc<ThreadSafeEnvironment>) {
    // Monadic operations
    bind_monadic_functions(env);
    
    // Effect handler functions
    bind_effect_handler_functions(env);
    
    // IO operations
    bind_io_functions(env);
    
    // State operations
    bind_state_functions(env);
    
    // Error operations
    bind_error_functions(env);
    
    // Utility functions
    bind_utility_functions(env);
}

/// Binds monadic composition functions.
fn bind_monadic_functions(env: &Arc<ThreadSafeEnvironment>) {
    // return - lift a value into a monad
    env.define("return".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "return".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_return),
        effects: vec![Effect::Pure],
    })));
    
    // >>= - monadic bind operation
    env.define(">>=".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: ">>=".to_string(),
        arity_min: 2,
        arity_max: Some(2),
        implementation: PrimitiveImpl::RustFn(primitive_bind),
        effects: vec![Effect::Pure],
    })));
    
    // >> - monadic sequence operation
    env.define(">>".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: ">>".to_string(),
        arity_min: 2,
        arity_max: Some(2),
        implementation: PrimitiveImpl::RustFn(primitive_sequence),
        effects: vec![Effect::Pure],
    })));
    
    // fmap - functorial map
    env.define("fmap".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "fmap".to_string(),
        arity_min: 2,
        arity_max: Some(2),
        implementation: PrimitiveImpl::RustFn(primitive_fmap),
        effects: vec![Effect::Pure],
    })));
    
    // join - monadic join operation
    env.define("join".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "join".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_join),
        effects: vec![Effect::Pure],
    })));
    
    // lift2 - lift a binary function into monadic context
    env.define("lift2".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "lift2".to_string(),
        arity_min: 3,
        arity_max: Some(3),
        implementation: PrimitiveImpl::RustFn(primitive_lift2),
        effects: vec![Effect::Pure],
    })));
}

/// Binds effect handler functions.
fn bind_effect_handler_functions(env: &Arc<ThreadSafeEnvironment>) {
    // with-handler - run computation with an effect handler
    env.define("with-handler".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "with-handler".to_string(),
        arity_min: 2,
        arity_max: Some(2),
        implementation: PrimitiveImpl::RustFn(primitive_with_handler),
        effects: vec![Effect::Pure], // Handler itself is pure, but may execute effects
    })));
    
    // define-effect-handler - define a new effect handler
    env.define("define-effect-handler".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "define-effect-handler".to_string(),
        arity_min: 2,
        arity_max: Some(2),
        implementation: PrimitiveImpl::RustFn(primitive_define_effect_handler),
        effects: vec![Effect::State], // Modifies the handler registry
    })));
    
    // handle - handle a specific effect
    env.define("handle".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "handle".to_string(),
        arity_min: 2,
        arity_max: Some(2),
        implementation: PrimitiveImpl::RustFn(primitive_handle),
        effects: vec![Effect::Pure],
    })));
}

/// Binds IO-specific functions.
fn bind_io_functions(env: &Arc<ThreadSafeEnvironment>) {
    // io-return - create a pure IO computation
    env.define("io-return".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "io-return".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_io_return),
        effects: vec![Effect::IO],
    })));
    
    // io-bind - bind IO computations
    env.define("io-bind".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "io-bind".to_string(),
        arity_min: 2,
        arity_max: Some(2),
        implementation: PrimitiveImpl::RustFn(primitive_io_bind),
        effects: vec![Effect::IO],
    })));
    
    // run-io - execute an IO computation
    env.define("run-io".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "run-io".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_run_io),
        effects: vec![Effect::IO],
    })));
}

/// Binds state-specific functions.
fn bind_state_functions(env: &Arc<ThreadSafeEnvironment>) {
    // state-return - create a pure state computation
    env.define("state-return".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "state-return".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_state_return),
        effects: vec![Effect::State],
    })));
    
    // get-state - get the current state
    env.define("get-state".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "get-state".to_string(),
        arity_min: 0,
        arity_max: Some(0),
        implementation: PrimitiveImpl::RustFn(primitive_get_state),
        effects: vec![Effect::State],
    })));
    
    // put-state - set the state
    env.define("put-state".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "put-state".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_put_state),
        effects: vec![Effect::State],
    })));
    
    // modify-state - modify the state with a function
    env.define("modify-state".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "modify-state".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_modify_state),
        effects: vec![Effect::State],
    })));
    
    // run-state - execute a state computation
    env.define("run-state".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "run-state".to_string(),
        arity_min: 2,
        arity_max: Some(2),
        implementation: PrimitiveImpl::RustFn(primitive_run_state),
        effects: vec![Effect::State],
    })));
}

/// Binds error-specific functions.
fn bind_error_functions(env: &Arc<ThreadSafeEnvironment>) {
    // error-return - create a successful error computation
    env.define("error-return".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "error-return".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_error_return),
        effects: vec![Effect::Error],
    })));
    
    // throw-error - throw an error
    env.define("throw-error".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "throw-error".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_throw_error),
        effects: vec![Effect::Error],
    })));
    
    // catch-error - catch and handle errors
    env.define("catch-error".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "catch-error".to_string(),
        arity_min: 2,
        arity_max: Some(2),
        implementation: PrimitiveImpl::RustFn(primitive_catch_error),
        effects: vec![Effect::Error],
    })));
    
    // run-error - execute an error computation
    env.define("run-error".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "run-error".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_run_error),
        effects: vec![Effect::Error],
    })));
}

/// Binds utility functions.
fn bind_utility_functions(env: &Arc<ThreadSafeEnvironment>) {
    // effect-pure? - check if a computation is pure
    env.define("effect-pure?".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "effect-pure?".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_effect_pure_p),
        effects: vec![Effect::Pure],
    })));
    
    // get-effects - get the effects of a computation
    env.define("get-effects".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "get-effects".to_string(),
        arity_min: 1,
        arity_max: Some(1),
        implementation: PrimitiveImpl::RustFn(primitive_get_effects),
        effects: vec![Effect::Pure],
    })));
    
    // lift-effect - lift a computation into a specific effect
    env.define("lift-effect".to_string(), Value::Primitive(Arc::new(PrimitiveProcedure {
        name: "lift-effect".to_string(),
        arity_min: 2,
        arity_max: Some(2),
        implementation: PrimitiveImpl::RustFn(primitive_lift_effect),
        effects: vec![Effect::Pure],
    })));
}

// ============= PRIMITIVE IMPLEMENTATIONS =============

/// return operation - lifts a value into a monad.
fn primitive_return(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("return expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    // Create a pure monadic value
    let _monadic_val = MonadicValue::pure(args[0].clone());
    
    // For now, return the wrapped value as a string representation
    // In a full implementation, this would return a proper monadic value
    Ok(Value::string(format!("Monadic({})", args[0])))
}

/// >>= operation - monadic bind.
fn primitive_bind(args: &[Value]) -> Result<Value> {
    if args.len() != 2 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!(">>= expects 2 arguments, got {}", args.len()),
            None,
        )));
    }
    
    // In a full implementation, this would:
    // 1. Extract the monadic value from args[0]
    // 2. Apply the function in args[1] to the extracted value
    // 3. Return the resulting monadic computation
    
    // For now, return a placeholder
    Ok(Value::string(format!("Bind({}, {})", args[0], args[1])))
}

/// >> operation - monadic sequence.
fn primitive_sequence(args: &[Value]) -> Result<Value> {
    if args.len() != 2 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!(">> expects 2 arguments, got {}", args.len()),
            None,
        )));
    }
    
    // For now, return a placeholder
    Ok(Value::string(format!("Sequence({}, {})", args[0], args[1])))
}

/// fmap operation - functorial map.
fn primitive_fmap(args: &[Value]) -> Result<Value> {
    if args.len() != 2 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("fmap expects 2 arguments, got {}", args.len()),
            None,
        )));
    }
    
    // For now, return a placeholder
    Ok(Value::string(format!("Fmap({}, {})", args[0], args[1])))
}

/// join operation - monadic join.
fn primitive_join(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("join expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    // For now, return a placeholder
    Ok(Value::string(format!("Join({})", args[0])))
}

/// lift2 operation - lift binary function.
fn primitive_lift2(args: &[Value]) -> Result<Value> {
    if args.len() != 3 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("lift2 expects 3 arguments, got {}", args.len()),
            None,
        )));
    }
    
    // For now, return a placeholder
    Ok(Value::string(format!("Lift2({}, {}, {})", args[0], args[1], args[2])))
}

/// with-handler operation.
fn primitive_with_handler(args: &[Value]) -> Result<Value> {
    if args.len() != 2 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("with-handler expects 2 arguments, got {}", args.len()),
            None,
        )));
    }
    
    // For now, return a placeholder
    Ok(Value::string(format!("WithHandler({}, {})", args[0], args[1])))
}

/// define-effect-handler operation.
fn primitive_define_effect_handler(args: &[Value]) -> Result<Value> {
    if args.len() != 2 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("define-effect-handler expects 2 arguments, got {}", args.len()),
            None,
        )));
    }
    
    // For now, return unspecified
    Ok(Value::Unspecified)
}

/// handle operation.
fn primitive_handle(args: &[Value]) -> Result<Value> {
    if args.len() != 2 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("handle expects 2 arguments, got {}", args.len()),
            None,
        )));
    }
    
    // For now, return a placeholder
    Ok(Value::string(format!("Handle({}, {})", args[0], args[1])))
}

// IO-specific primitives

fn primitive_io_return(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("io-return expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    Ok(Value::string(format!("IO({})", args[0])))
}

fn primitive_io_bind(args: &[Value]) -> Result<Value> {
    if args.len() != 2 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("io-bind expects 2 arguments, got {}", args.len()),
            None,
        )));
    }
    
    Ok(Value::string(format!("IOBind({}, {})", args[0], args[1])))
}

fn primitive_run_io(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("run-io expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    // For now, just return the argument (simulating execution)
    Ok(args[0].clone())
}

// State-specific primitives

fn primitive_state_return(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("state-return expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    Ok(Value::string(format!("State({})", args[0])))
}

fn primitive_get_state(args: &[Value]) -> Result<Value> {
    if !args.is_empty() {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("get-state expects 0 arguments, got {}", args.len()),
            None,
        )));
    }
    
    Ok(Value::string("GetState".to_string()))
}

fn primitive_put_state(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("put-state expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    Ok(Value::string(format!("PutState({})", args[0])))
}

fn primitive_modify_state(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("modify-state expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    Ok(Value::string(format!("ModifyState({})", args[0])))
}

fn primitive_run_state(args: &[Value]) -> Result<Value> {
    if args.len() != 2 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("run-state expects 2 arguments, got {}", args.len()),
            None,
        )));
    }
    
    Ok(Value::string(format!("RunState({}, {})", args[0], args[1])))
}

// Error-specific primitives

fn primitive_error_return(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("error-return expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    Ok(Value::string(format!("ErrorReturn({})", args[0])))
}

fn primitive_throw_error(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("throw-error expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    // Actually throw an error
    Err(Box::new(DiagnosticError::runtime_error(
        format!("Thrown error: {}", args[0]),
        None,
    )))
}

fn primitive_catch_error(args: &[Value]) -> Result<Value> {
    if args.len() != 2 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("catch-error expects 2 arguments, got {}", args.len()),
            None,
        )));
    }
    
    Ok(Value::string(format!("CatchError({}, {})", args[0], args[1])))
}

fn primitive_run_error(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("run-error expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    // For now, just return the argument
    Ok(args[0].clone())
}

// Utility primitives

fn primitive_effect_pure_p(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("effect-pure? expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    // For now, assume everything is pure unless it's a special monadic value
    let is_pure = !args[0].as_string().map(|s| s.contains("IO") || s.contains("State") || s.contains("Error"))
        .unwrap_or(false);
    
    Ok(Value::boolean(is_pure))
}

fn primitive_get_effects(args: &[Value]) -> Result<Value> {
    if args.len() != 1 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("get-effects expects 1 argument, got {}", args.len()),
            None,
        )));
    }
    
    // For now, return a list of effects as strings
    let effects = if let Some(s) = args[0].as_string() {
        if s.contains("IO") {
            vec![Value::string("IO".to_string())]
        } else if s.contains("State") {
            vec![Value::string("State".to_string())]
        } else if s.contains("Error") {
            vec![Value::string("Error".to_string())]
        } else {
            vec![Value::string("Pure".to_string())]
        }
    } else {
        vec![Value::string("Pure".to_string())]
    };
    
    Ok(Value::list(effects))
}

fn primitive_lift_effect(args: &[Value]) -> Result<Value> {
    if args.len() != 2 {
        return Err(Box::new(DiagnosticError::runtime_error(
            format!("lift-effect expects 2 arguments, got {}", args.len()),
            None,
        )));
    }
    
    let effect_name = args[0].as_string().unwrap_or("Unknown");
    let value = &args[1];
    
    Ok(Value::string(format!("{effect_name}({value})")))
}

#[cfg(test)]
mod tests {
    use super::*;
    
    #[test]
    fn test_monadic_return() {
        let args = vec![Value::integer(42)];
        let result = primitive_return(&args).unwrap();
        assert!(result.as_string().unwrap().contains("42"));
    }
    
    #[test]
    fn test_effect_pure_check() {
        let pure_val = vec![Value::integer(42)];
        let result = primitive_effect_pure_p(&pure_val).unwrap();
        assert_eq!(result, Value::boolean(true));
        
        let io_val = vec![Value::string("IO(something)".to_string())];
        let result = primitive_effect_pure_p(&io_val).unwrap();
        assert_eq!(result, Value::boolean(false));
    }
    
    #[test]
    fn test_error_throwing() {
        let args = vec![Value::string("Test error".to_string())];
        let result = primitive_throw_error(&args);
        assert!(result.is_err());
    }
}