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
//! Versioned resource types for SCIM resource versioning.
//!
//! This module provides types for handling versioned SCIM resources that support
//! conditional operations with version control. As of Phase 3, conditional operations
//! are mandatory and built into the core ResourceProvider trait, ensuring all providers
//! support ETag-based concurrency control.
//!
//! # Mandatory Conditional Operations Architecture
//!
//! The SCIM server library now requires all ResourceProvider implementations to support
//! conditional operations. This design decision provides:
//!
//! - **Universal Concurrency Control**: All resources automatically support ETag versioning
//! - **Simplified Architecture**: Single code path with consistent behavior
//! - **Type Safety**: Compile-time guarantees for version-aware operations
//! - **Production Readiness**: Built-in protection against lost updates
//!
//! # Core Types
//!
//! * [`VersionedResource`] - Resource wrapper that includes automatic version computation
//!
//! # Usage with Mandatory Conditional Operations
//!
//! ```rust,no_run
//! use scim_server::resource::{
//! provider::ResourceProvider,
//! conditional_provider::VersionedResource,
//! version::{ScimVersion, ConditionalResult},
//! core::{Resource, RequestContext},
//! };
//! use serde_json::Value;
//! use std::collections::HashMap;
//! use std::sync::Arc;
//! use tokio::sync::RwLock;
//!
//! #[derive(Debug)]
//! struct MyError(String);
//! impl std::fmt::Display for MyError {
//! fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
//! write!(f, "{}", self.0)
//! }
//! }
//! impl std::error::Error for MyError {}
//!
//! #[derive(Clone)]
//! struct MyProvider {
//! data: Arc<RwLock<HashMap<String, VersionedResource>>>,
//! }
//!
//! impl ResourceProvider for MyProvider {
//! type Error = MyError;
//!
//! // All providers must implement these core CRUD methods
//! async fn create_resource(&self, resource_type: &str, data: Value, context: &RequestContext) -> Result<Resource, Self::Error> {
//! let resource = Resource::from_json(resource_type.to_string(), data)
//! .map_err(|e| MyError(e.to_string()))?;
//! let mut store = self.data.write().await;
//! let id = resource.get_id().unwrap_or("generated-id").to_string();
//! let versioned = VersionedResource::new(resource.clone());
//! store.insert(id, versioned);
//! Ok(resource)
//! }
//!
//! async fn get_resource(&self, _resource_type: &str, id: &str, _context: &RequestContext) -> Result<Option<Resource>, Self::Error> {
//! let store = self.data.read().await;
//! Ok(store.get(id).map(|v| v.resource().clone()))
//! }
//!
//! // ... implement other required methods ...
//! # async fn update_resource(&self, _resource_type: &str, _id: &str, _data: Value, _context: &RequestContext) -> Result<Resource, Self::Error> {
//! # todo!("Implement your update logic here")
//! # }
//! # async fn delete_resource(&self, _resource_type: &str, _id: &str, _context: &RequestContext) -> Result<(), Self::Error> {
//! # todo!("Implement your delete logic here")
//! # }
//! # async fn list_resources(&self, _resource_type: &str, _query: Option<&scim_server::resource::core::ListQuery>, _context: &RequestContext) -> Result<Vec<Resource>, Self::Error> {
//! # todo!("Implement your list logic here")
//! # }
//! # async fn find_resource_by_attribute(&self, _resource_type: &str, _attribute: &str, _value: &Value, _context: &RequestContext) -> Result<Option<Resource>, Self::Error> {
//! # todo!("Implement your find logic here")
//! # }
//! # async fn resource_exists(&self, _resource_type: &str, _id: &str, _context: &RequestContext) -> Result<bool, Self::Error> {
//! # todo!("Implement your exists logic here")
//! # }
//!
//! // Conditional operations are MANDATORY - provided by default with automatic implementation
//! // Override these methods for optimized conditional operations at the storage layer:
//!
//! // async fn conditional_update(&self, resource_type: &str, id: &str, data: Value,
//! // expected_version: &ScimVersion, context: &RequestContext)
//! // -> Result<ConditionalResult<VersionedResource>, Self::Error> {
//! // // Your database-level conditional update with version checking
//! // }
//! //
//! // async fn conditional_delete(&self, resource_type: &str, id: &str,
//! // expected_version: &ScimVersion, context: &RequestContext)
//! // -> Result<ConditionalResult<()>, Self::Error> {
//! // // Your database-level conditional delete with version checking
//! // }
//! }
//! ```
//!
//! # Architectural Benefits
//!
//! Making conditional operations mandatory provides several advantages:
//!
//! ## Simplified Codebase
//! - Single code path for all operations
//! - No optional/conditional provider detection
//! - Consistent behavior across all implementations
//!
//! ## Enhanced Type Safety
//! - Compile-time guarantees for version support
//! - No runtime checks for capability detection
//! - Clear API contracts for all providers
//!
//! ## Production Readiness
//! - Built-in concurrency control for all resources
//! - Automatic protection against lost updates
//! - Enterprise-grade data integrity guarantees
//!
//! ## Developer Experience
//! - Consistent APIs across all providers
//! - Clear documentation and examples
//! - Better IDE support and tooling
use ;
use ;
/// A resource with its associated version information.
///
/// This wrapper combines a SCIM resource with its version, enabling
/// conditional operations that can detect concurrent modifications.
/// The version is automatically computed from the resource content.
///
/// # Examples
///
/// ```rust
/// use scim_server::resource::{
/// conditional_provider::VersionedResource,
/// core::Resource,
/// };
/// use serde_json::json;
///
/// let resource = Resource::from_json("User".to_string(), json!({
/// "id": "123",
/// "userName": "john.doe",
/// "active": true
/// })).unwrap();
///
/// let versioned = VersionedResource::new(resource);
/// println!("Resource version: {}", versioned.version().to_http_header());
/// ```
/// Historical note: Extension trait for conditional operations (Phase 1-2).
///
/// This trait was used during the development phases when conditional operations
/// were optional. As of Phase 3, all conditional operations are mandatory and
/// built into the core ResourceProvider trait.
///
/// # Migration to Mandatory Architecture
///
/// The library has evolved from optional conditional operations to mandatory ones:
///
/// - **Phase 1-2**: Conditional operations were optional via this extension trait
/// - **Phase 3**: Conditional operations moved to core ResourceProvider trait
/// - **Current**: All providers automatically support conditional operations
///
/// This change ensures:
/// - Universal concurrency control for all SCIM resources
/// - Simplified integration with automatic ETag support
/// - Consistent behavior across different provider implementations
/// - Production-ready concurrency control out of the box
///
/// All new code should use the conditional methods directly on ResourceProvider
/// rather than this historical extension trait.