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
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
//! pattern-core - Core pattern data structures
//!
//! This crate provides the core pattern data structures for the pattern-rs library.
//! It is a faithful port of the gram-hs reference implementation.
//!
//! # Overview
//!
//! The `pattern-core` crate defines these main types:
//!
//! - **[`StandardGraph`]**: An ergonomic, zero-configuration graph
//! for building and querying graph structures. This is the recommended starting point
//! for most users.
//!
//! - **[`Subject`]**: A self-descriptive value type with identity, labels,
//! and properties. Use [`Subject::build`] for fluent construction.
//!
//! - **[`Pattern<V>`](pattern::Pattern)**: A recursive, nested structure (s-expression-like)
//! that is generic over value type `V`. This is the foundational data structure for
//! representing nested, hierarchical data that may be interpreted as graphs.
//!
//! # Quick Start
//!
//! Build a graph with [`StandardGraph`]:
//!
//! ```rust
//! use pattern_core::graph::StandardGraph;
//! use pattern_core::subject::Subject;
//!
//! let mut g = StandardGraph::new();
//!
//! // Add nodes using the fluent SubjectBuilder
//! let alice = Subject::build("alice").label("Person").property("name", "Alice").done();
//! let bob = Subject::build("bob").label("Person").property("name", "Bob").done();
//! g.add_node(alice.clone());
//! g.add_node(bob.clone());
//!
//! // Add a relationship — pass the Subject objects directly
//! g.add_relationship(Subject::build("r1").label("KNOWS").done(), &alice, &bob);
//!
//! assert_eq!(g.node_count(), 2);
//! assert_eq!(g.relationship_count(), 1);
//!
//! // Query the graph
//! let source = g.source(&"r1".into()).unwrap();
//! assert_eq!(source.value.identity.0, "alice");
//! let neighbors = g.neighbors(&"bob".into());
//! assert_eq!(neighbors.len(), 1);
//! ```
//!
//! # Low-Level Pattern Construction
//!
//! For direct pattern manipulation without the graph layer:
//!
//! ```rust
//! use pattern_core::{Pattern, Subject, Symbol, Value};
//! use std::collections::{HashSet, HashMap};
//!
//! // Create an atomic pattern (special case)
//! let atomic = Pattern::point("hello".to_string());
//!
//! // Create a pattern with elements (primary constructor)
//! let pattern = Pattern::pattern("parent".to_string(), vec![
//! Pattern::point("child1".to_string()),
//! Pattern::point("child2".to_string()),
//! ]);
//!
//! // Access pattern components
//! assert_eq!(atomic.value(), "hello");
//! assert_eq!(pattern.length(), 2);
//! assert_eq!(pattern.depth(), 1);
//!
//! // Transform pattern values (Functor)
//! let upper = pattern.clone().map(|s| s.to_uppercase());
//! assert_eq!(upper.value(), "PARENT");
//!
//! // Validate pattern structure
//! use pattern_core::ValidationRules;
//! let rules = ValidationRules {
//! max_depth: Some(10),
//! ..Default::default()
//! };
//! assert!(pattern.validate(&rules).is_ok());
//!
//! // Analyze pattern structure
//! let analysis = pattern.analyze_structure();
//! println!("Structure: {}", analysis.summary);
//!
//! // Create a pattern with Subject value
//! let subject = Subject {
//! identity: Symbol("n".to_string()),
//! labels: {
//! let mut s = HashSet::new();
//! s.insert("Person".to_string());
//! s
//! },
//! properties: {
//! let mut m = HashMap::new();
//! m.insert("name".to_string(), Value::VString("Alice".to_string()));
//! m
//! },
//! };
//!
//! let pattern_with_subject: Pattern<Subject> = Pattern::point(subject);
//! ```
//!
//! # Pattern Combination
//!
//! Patterns can be combined associatively using the `combine()` method when the value type
//! implements the `Combinable` trait. Combination merges two patterns by combining their values
//! and concatenating their elements.
//!
//! ```rust
//! use pattern_core::{Pattern, Combinable};
//!
//! // Combine atomic patterns (no elements)
//! let p1 = Pattern::point("hello".to_string());
//! let p2 = Pattern::point(" world".to_string());
//! let combined = p1.combine(p2);
//! assert_eq!(combined.value(), "hello world");
//! assert_eq!(combined.length(), 0);
//!
//! // Combine patterns with elements
//! let p3 = Pattern::pattern("a".to_string(), vec![
//! Pattern::point("b".to_string()),
//! Pattern::point("c".to_string()),
//! ]);
//! let p4 = Pattern::pattern("d".to_string(), vec![
//! Pattern::point("e".to_string()),
//! ]);
//! let result = p3.combine(p4);
//! assert_eq!(result.value(), "ad");
//! assert_eq!(result.length(), 3); // [b, c, e]
//!
//! // Associativity: (a ⊕ b) ⊕ c = a ⊕ (b ⊕ c)
//! let a = Pattern::point("a".to_string());
//! let b = Pattern::point("b".to_string());
//! let c = Pattern::point("c".to_string());
//! let left = a.clone().combine(b.clone()).combine(c.clone());
//! let right = a.combine(b.combine(c));
//! assert_eq!(left, right);
//! ```
//!
//! # Pattern Ordering
//!
//! Patterns implement `Ord` and `PartialOrd` for types that support ordering,
//! enabling sorting, comparison, and use in ordered data structures.
//!
//! ```rust
//! use pattern_core::Pattern;
//! use std::collections::{BTreeSet, BTreeMap};
//!
//! // Compare patterns
//! let p1 = Pattern::point(1);
//! let p2 = Pattern::point(2);
//! assert!(p1 < p2);
//!
//! // Value-first ordering: values compared before elements
//! let p3 = Pattern::pattern(3, vec![Pattern::point(100)]);
//! let p4 = Pattern::pattern(4, vec![Pattern::point(1)]);
//! assert!(p3 < p4); // 3 < 4, elements not compared
//!
//! // Sort patterns
//! let mut patterns = vec![
//! Pattern::point(5),
//! Pattern::point(2),
//! Pattern::point(8),
//! ];
//! patterns.sort();
//! assert_eq!(patterns[0], Pattern::point(2));
//!
//! // Find min/max
//! let min = patterns.iter().min().unwrap();
//! let max = patterns.iter().max().unwrap();
//! assert_eq!(min, &Pattern::point(2));
//! assert_eq!(max, &Pattern::point(8));
//!
//! // Use in BTreeSet (maintains sorted order)
//! let mut set = BTreeSet::new();
//! set.insert(Pattern::point(5));
//! set.insert(Pattern::point(2));
//! set.insert(Pattern::point(8));
//! let sorted: Vec<_> = set.iter().map(|p| p.value).collect();
//! assert_eq!(sorted, vec![2, 5, 8]);
//!
//! // Use as BTreeMap keys
//! let mut map = BTreeMap::new();
//! map.insert(Pattern::point(1), "first");
//! map.insert(Pattern::point(2), "second");
//! assert_eq!(map.get(&Pattern::point(1)), Some(&"first"));
//! ```
//!
//! # WASM Compatibility
//!
//! All types in this crate are fully compatible with WebAssembly targets. Compile for WASM with:
//!
//! ```bash
//! cargo build --package pattern-core --target wasm32-unknown-unknown
//! ```
//!
//! # Reference Implementation
//!
//! This crate is ported from the gram-hs reference implementation:
//! - Pattern: `../pattern-hs/libs/pattern/src/Pattern.hs`
//! - Subject: `../pattern-hs/libs/subject/src/Subject/Core.hs`
//! - Feature Spec: `../pattern-hs/specs/001-pattern-data-structure/`
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
// Re-export comonad operations for convenient access
// These are defined in pattern::comonad and pattern::comonad_helpers modules
// All operations are methods on Pattern<V>, so no additional re-exports needed beyond Pattern itself
// ============================================================================
// Combinable Trait
// ============================================================================
/// Types that support associative combination.
///
/// Implementors must ensure that combination is associative:
/// `(a.combine(b)).combine(c)` must equal `a.combine(b.combine(c))` for all values.
///
/// This trait is used to enable pattern combination for `Pattern<V>` where `V: Combinable`.
///
/// # Laws
///
/// **Associativity**: For all values a, b, c of type Self:
/// ```text
/// (a.combine(b)).combine(c) == a.combine(b.combine(c))
/// ```
///
/// # Examples
///
/// ```rust
/// use pattern_core::Combinable;
///
/// let s1 = String::from("hello");
/// let s2 = String::from(" world");
/// let result = s1.combine(s2);
/// assert_eq!(result, "hello world");
/// ```
// ============================================================================
// Standard Implementations
// ============================================================================
/// Combines two strings by concatenation.
///
/// String concatenation is associative: `(a + b) + c = a + (b + c)`
///
/// # Examples
///
/// ```rust
/// use pattern_core::Combinable;
///
/// let s1 = String::from("hello");
/// let s2 = String::from(" world");
/// let result = s1.combine(s2);
/// assert_eq!(result, "hello world");
/// ```
/// Combines two vectors by concatenation.
///
/// Vector concatenation is associative: `(a ++ b) ++ c = a ++ (b ++ c)`
///
/// # Examples
///
/// ```rust
/// use pattern_core::Combinable;
///
/// let v1 = vec![1, 2, 3];
/// let v2 = vec![4, 5];
/// let result = v1.combine(v2);
/// assert_eq!(result, vec![1, 2, 3, 4, 5]);
/// ```
/// Combines two unit values (trivial).
///
/// Unit combination is trivially associative.
///
/// # Examples
///
/// ```rust
/// use pattern_core::Combinable;
///
/// let u1 = ();
/// let u2 = ();
/// let result = u1.combine(u2);
/// assert_eq!(result, ());
/// ```
// ============================================================================
// Subject Combination Strategies
// ============================================================================
/// Combination strategy for Subject that merges labels and properties.
///
/// This strategy combines two subjects by:
/// - Using the identity from the first subject
/// - Taking the union of labels from both subjects
/// - Merging properties (values from the second subject overwrite the first)
///
/// # Semigroup Laws
///
/// This implementation satisfies associativity:
/// - Identity choice is associative (always picks leftmost)
/// - Label union is associative (set union is associative)
/// - Property merge is associative with right-bias (latter values win)
///
/// # Examples
///
/// ```rust
/// use pattern_core::{Subject, Symbol, Combinable};
/// use std::collections::{HashMap, HashSet};
///
/// let s1 = Subject {
/// identity: Symbol("n1".to_string()),
/// labels: {
/// let mut s = HashSet::new();
/// s.insert("Person".to_string());
/// s
/// },
/// properties: HashMap::new(),
/// };
///
/// let s2 = Subject {
/// identity: Symbol("n2".to_string()),
/// labels: {
/// let mut s = HashSet::new();
/// s.insert("Employee".to_string());
/// s
/// },
/// properties: HashMap::new(),
/// };
///
/// // Merge combines labels and uses first identity
/// let merged = s1.combine(s2);
/// assert_eq!(merged.identity.0, "n1");
/// assert!(merged.labels.contains("Person"));
/// assert!(merged.labels.contains("Employee"));
/// ```
/// Newtype wrapper for "first wins" combination strategy.
///
/// When combining two FirstSubject instances, the first subject is returned
/// and the second is discarded. This is useful for scenarios where you want
/// to keep the initial subject and ignore subsequent ones.
///
/// # Semigroup Laws
///
/// This satisfies associativity trivially: first(first(a, b), c) = first(a, first(b, c)) = a
///
/// # Examples
///
/// ```rust
/// use pattern_core::{Subject, Symbol, Combinable};
/// use std::collections::HashSet;
///
/// let s1 = Subject {
/// identity: Symbol("alice".to_string()),
/// labels: HashSet::new(),
/// properties: Default::default(),
/// };
///
/// let s2 = Subject {
/// identity: Symbol("bob".to_string()),
/// labels: HashSet::new(),
/// properties: Default::default(),
/// };
///
/// // First wins - s2 is discarded
/// let result = s1.combine(s2);
/// assert_eq!(result.identity.0, "alice");
/// ```
;
/// Newtype wrapper for "last wins" combination strategy.
///
/// When combining two LastSubject instances, the second subject is returned
/// and the first is discarded. This is useful for scenarios where you want
/// the most recent subject to take precedence.
///
/// # Semigroup Laws
///
/// This satisfies associativity trivially: last(last(a, b), c) = last(a, last(b, c)) = c
///
/// # Examples
///
/// ```rust
/// use pattern_core::{Subject, Symbol, Combinable, LastSubject};
/// use std::collections::HashSet;
///
/// let s1 = LastSubject(Subject {
/// identity: Symbol("alice".to_string()),
/// labels: HashSet::new(),
/// properties: Default::default(),
/// });
///
/// let s2 = LastSubject(Subject {
/// identity: Symbol("bob".to_string()),
/// labels: HashSet::new(),
/// properties: Default::default(),
/// });
///
/// // Last wins - s1 is the last argument, so it wins
/// let result = s2.combine(s1);
/// assert_eq!(result.0.identity.0, "alice");
/// ```
;
/// Newtype wrapper for "empty" combination strategy that creates anonymous subjects.
///
/// When combining two EmptySubject instances, the result is always an anonymous
/// subject with no labels or properties. This serves as the identity element for
/// a Monoid-like structure.
///
/// # Semigroup Laws
///
/// This satisfies associativity trivially: empty(empty(a, b), c) = empty(a, empty(b, c)) = empty
///
/// # Monoid Laws
///
/// When used with Default, this provides monoid identity:
/// - Left identity: empty.combine(s) = empty
/// - Right identity: s.combine(empty) = empty
///
/// # Examples
///
/// ```rust
/// use pattern_core::{Subject, Symbol, Combinable, EmptySubject};
/// use std::collections::HashSet;
///
/// let s1 = EmptySubject(Subject {
/// identity: Symbol("alice".to_string()),
/// labels: {
/// let mut s = HashSet::new();
/// s.insert("Person".to_string());
/// s
/// },
/// properties: Default::default(),
/// });
///
/// let empty = EmptySubject(Subject {
/// identity: Symbol("_".to_string()),
/// labels: HashSet::new(),
/// properties: Default::default(),
/// });
///
/// // Always returns empty (anonymous)
/// let result = s1.combine(empty);
/// assert_eq!(result.0.identity.0, "_");
/// assert!(result.0.labels.is_empty());
/// ```
;