pandrs 0.3.0

A high-performance DataFrame library for Rust, providing pandas-like API with advanced features including SIMD optimization, parallel processing, and distributed computing capabilities
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
//! ReBAC Manager - Main interface for relationship-based access control
//!
//! This module provides the high-level API for managing relationships
//! and checking permissions.

use super::graph::RelationshipGraph;
use super::schema::PermissionSchema;
use super::types::{Object, Relation, RelationTuple, Subject};
use crate::error::{Error, Result};
use std::sync::{Arc, RwLock};

/// Main ReBAC manager
#[derive(Debug)]
pub struct RebacManager {
    /// Relationship graph
    graph: Arc<RwLock<RelationshipGraph>>,
    /// Permission schema
    schema: PermissionSchema,
}

impl RebacManager {
    /// Create a new ReBAC manager
    pub fn new() -> Self {
        RebacManager {
            graph: Arc::new(RwLock::new(RelationshipGraph::new())),
            schema: PermissionSchema::default(),
        }
    }

    /// Create a new ReBAC manager with custom schema
    pub fn with_schema(schema: PermissionSchema) -> Self {
        RebacManager {
            graph: Arc::new(RwLock::new(RelationshipGraph::new())),
            schema,
        }
    }

    /// Create a new ReBAC manager with cache size
    pub fn with_cache_size(cache_size: usize) -> Self {
        RebacManager {
            graph: Arc::new(RwLock::new(RelationshipGraph::with_cache_size(cache_size))),
            schema: PermissionSchema::default(),
        }
    }

    /// Grant a relationship (add a tuple)
    pub fn grant(&self, subject: &str, relation: &str, object: &str) -> Result<()> {
        let subject = Subject::parse(subject)
            .map_err(|e| Error::InvalidInput(format!("Invalid subject: {}", e)))?;
        let relation = Relation::parse(relation)
            .map_err(|e| Error::InvalidInput(format!("Invalid relation: {}", e)))?;
        let object = Object::parse(object)
            .map_err(|e| Error::InvalidInput(format!("Invalid object: {}", e)))?;

        let tuple = RelationTuple::new(subject, relation, object);

        let mut graph = self
            .graph
            .write()
            .map_err(|_| Error::InvalidOperation("Failed to acquire write lock".to_string()))?;

        graph.add_tuple(tuple)
    }

    /// Revoke a relationship (remove a tuple)
    pub fn revoke(&self, subject: &str, relation: &str, object: &str) -> Result<()> {
        let subject = Subject::parse(subject)
            .map_err(|e| Error::InvalidInput(format!("Invalid subject: {}", e)))?;
        let relation = Relation::parse(relation)
            .map_err(|e| Error::InvalidInput(format!("Invalid relation: {}", e)))?;
        let object = Object::parse(object)
            .map_err(|e| Error::InvalidInput(format!("Invalid object: {}", e)))?;

        let tuple = RelationTuple::new(subject, relation, object);

        let mut graph = self
            .graph
            .write()
            .map_err(|_| Error::InvalidOperation("Failed to acquire write lock".to_string()))?;

        graph.remove_tuple(&tuple)
    }

    /// Check if subject has permission (relation) on object
    pub fn check_access(&self, subject: &str, relation: &str, object: &str) -> Result<bool> {
        let subject = Subject::parse(subject)
            .map_err(|e| Error::InvalidInput(format!("Invalid subject: {}", e)))?;
        let relation = Relation::parse(relation)
            .map_err(|e| Error::InvalidInput(format!("Invalid relation: {}", e)))?;
        let object = Object::parse(object)
            .map_err(|e| Error::InvalidInput(format!("Invalid object: {}", e)))?;

        let graph = self
            .graph
            .read()
            .map_err(|_| Error::InvalidOperation("Failed to acquire read lock".to_string()))?;

        graph.check(&subject, &relation, &object)
    }

    /// Async version of check_access (for tokio compatibility)
    #[cfg(feature = "streaming")]
    pub async fn check_access_async(
        &self,
        subject: &str,
        relation: &str,
        object: &str,
    ) -> Result<bool> {
        // For now, just wrap the sync version
        // In a real implementation, this would use async-aware locking
        self.check_access(subject, relation, object)
    }

    /// List all objects of a given type that subject has permission on
    pub fn list_accessible(
        &self,
        subject: &str,
        relation: &str,
        object_type: &str,
    ) -> Result<Vec<String>> {
        let subject = Subject::parse(subject)
            .map_err(|e| Error::InvalidInput(format!("Invalid subject: {}", e)))?;
        let relation = Relation::parse(relation)
            .map_err(|e| Error::InvalidInput(format!("Invalid relation: {}", e)))?;

        let graph = self
            .graph
            .read()
            .map_err(|_| Error::InvalidOperation("Failed to acquire read lock".to_string()))?;

        let objects = graph.list_objects(&subject, &relation)?;

        // Filter by object type
        let filtered: Vec<String> = objects
            .into_iter()
            .filter(|obj| obj.object_type == object_type)
            .map(|obj| obj.to_string_format())
            .collect();

        Ok(filtered)
    }

    /// Expand: get all subjects that have a relation to an object
    pub fn expand(&self, relation: &str, object: &str) -> Result<Vec<String>> {
        let relation = Relation::parse(relation)
            .map_err(|e| Error::InvalidInput(format!("Invalid relation: {}", e)))?;
        let object = Object::parse(object)
            .map_err(|e| Error::InvalidInput(format!("Invalid object: {}", e)))?;

        let graph = self
            .graph
            .read()
            .map_err(|_| Error::InvalidOperation("Failed to acquire read lock".to_string()))?;

        let subjects = graph.expand(&relation, &object)?;

        Ok(subjects.into_iter().map(|s| s.to_string_format()).collect())
    }

    /// Get all relationship tuples
    pub fn get_all_tuples(&self) -> Result<Vec<RelationTuple>> {
        let graph = self
            .graph
            .read()
            .map_err(|_| Error::InvalidOperation("Failed to acquire read lock".to_string()))?;

        Ok(graph.get_all_tuples())
    }

    /// Clear all relationships
    pub fn clear(&self) -> Result<()> {
        let mut graph = self
            .graph
            .write()
            .map_err(|_| Error::InvalidOperation("Failed to acquire write lock".to_string()))?;

        let tuples = graph.get_all_tuples();
        for tuple in tuples {
            let _ = graph.remove_tuple(&tuple);
        }

        Ok(())
    }

    /// Get permission schema
    pub fn get_schema(&self) -> &PermissionSchema {
        &self.schema
    }

    /// Update permission schema
    pub fn set_schema(&mut self, schema: PermissionSchema) {
        self.schema = schema;
    }

    /// Get cache statistics
    pub fn cache_stats(&self) -> Result<(usize, usize)> {
        let graph = self
            .graph
            .read()
            .map_err(|_| Error::InvalidOperation("Failed to acquire read lock".to_string()))?;

        graph.cache_stats()
    }

    /// Clear the permission cache
    pub fn clear_cache(&self) -> Result<()> {
        let graph = self
            .graph
            .read()
            .map_err(|_| Error::InvalidOperation("Failed to acquire read lock".to_string()))?;

        graph.clear_cache();
        Ok(())
    }

    /// Batch grant multiple relationships
    pub fn grant_batch(&self, tuples: Vec<(&str, &str, &str)>) -> Result<()> {
        let mut graph = self
            .graph
            .write()
            .map_err(|_| Error::InvalidOperation("Failed to acquire write lock".to_string()))?;

        for (subject, relation, object) in tuples {
            let subj = Subject::parse(subject)
                .map_err(|e| Error::InvalidInput(format!("Invalid subject: {}", e)))?;
            let rel = Relation::parse(relation)
                .map_err(|e| Error::InvalidInput(format!("Invalid relation: {}", e)))?;
            let obj = Object::parse(object)
                .map_err(|e| Error::InvalidInput(format!("Invalid object: {}", e)))?;

            let tuple = RelationTuple::new(subj, rel, obj);
            graph.add_tuple(tuple)?;
        }

        Ok(())
    }

    /// Batch check multiple permissions
    pub fn check_batch(&self, checks: Vec<(&str, &str, &str)>) -> Result<Vec<bool>> {
        let graph = self
            .graph
            .read()
            .map_err(|_| Error::InvalidOperation("Failed to acquire read lock".to_string()))?;

        let mut results = Vec::with_capacity(checks.len());

        for (subject, relation, object) in checks {
            let subj = Subject::parse(subject)
                .map_err(|e| Error::InvalidInput(format!("Invalid subject: {}", e)))?;
            let rel = Relation::parse(relation)
                .map_err(|e| Error::InvalidInput(format!("Invalid relation: {}", e)))?;
            let obj = Object::parse(object)
                .map_err(|e| Error::InvalidInput(format!("Invalid object: {}", e)))?;

            let result = graph.check(&subj, &rel, &obj)?;
            results.push(result);
        }

        Ok(results)
    }
}

impl Default for RebacManager {
    fn default() -> Self {
        Self::new()
    }
}

// Thread-safe shared manager type
pub type SharedRebacManager = Arc<RwLock<RebacManager>>;

/// Create a shared ReBAC manager
pub fn create_shared_rebac_manager() -> SharedRebacManager {
    Arc::new(RwLock::new(RebacManager::new()))
}

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

    #[test]
    fn test_grant_and_check() {
        let manager = RebacManager::new();

        manager
            .grant("user:alice", "owner", "document:123")
            .expect("grant should succeed");

        let has_access = manager
            .check_access("user:alice", "owner", "document:123")
            .expect("check should succeed");
        assert!(has_access);

        let no_access = manager
            .check_access("user:bob", "owner", "document:123")
            .expect("check should succeed");
        assert!(!no_access);
    }

    #[test]
    fn test_revoke() {
        let manager = RebacManager::new();

        manager
            .grant("user:alice", "owner", "document:123")
            .expect("grant should succeed");

        manager
            .revoke("user:alice", "owner", "document:123")
            .expect("revoke should succeed");

        let has_access = manager
            .check_access("user:alice", "owner", "document:123")
            .expect("check should succeed");
        assert!(!has_access);
    }

    #[test]
    fn test_list_accessible() {
        let manager = RebacManager::new();

        manager
            .grant("user:alice", "owner", "document:123")
            .expect("grant should succeed");
        manager
            .grant("user:alice", "owner", "document:456")
            .expect("grant should succeed");

        let objects = manager
            .list_accessible("user:alice", "owner", "document")
            .expect("list should succeed");

        assert_eq!(objects.len(), 2);
    }

    #[test]
    fn test_expand() {
        let manager = RebacManager::new();

        manager
            .grant("user:alice", "viewer", "document:123")
            .expect("grant should succeed");
        manager
            .grant("user:bob", "viewer", "document:123")
            .expect("grant should succeed");

        let subjects = manager
            .expand("viewer", "document:123")
            .expect("expand should succeed");

        assert_eq!(subjects.len(), 2);
    }

    #[test]
    fn test_batch_operations() {
        let manager = RebacManager::new();

        // Batch grant
        manager
            .grant_batch(vec![
                ("user:alice", "owner", "document:123"),
                ("user:bob", "editor", "document:123"),
                ("user:charlie", "viewer", "document:123"),
            ])
            .expect("batch grant should succeed");

        // Batch check
        let results = manager
            .check_batch(vec![
                ("user:alice", "owner", "document:123"),
                ("user:bob", "editor", "document:123"),
                ("user:charlie", "viewer", "document:123"),
                ("user:dave", "owner", "document:123"),
            ])
            .expect("batch check should succeed");

        assert_eq!(results, vec![true, true, true, false]);
    }

    #[test]
    fn test_clear() {
        let manager = RebacManager::new();

        manager
            .grant("user:alice", "owner", "document:123")
            .expect("grant should succeed");

        let tuples = manager.get_all_tuples().expect("get tuples should succeed");
        assert_eq!(tuples.len(), 1);

        manager.clear().expect("clear should succeed");

        let tuples = manager.get_all_tuples().expect("get tuples should succeed");
        assert_eq!(tuples.len(), 0);
    }

    #[test]
    fn test_hierarchical_permissions() {
        let manager = RebacManager::new();

        // Alice owns a document
        manager
            .grant("user:alice", "owner", "document:123")
            .expect("grant should succeed");

        // Document is in a folder
        manager
            .grant("document:123", "parent", "folder:456")
            .expect("grant should succeed");

        // Bob is viewer of the folder
        manager
            .grant("user:bob", "viewer", "folder:456")
            .expect("grant should succeed");

        // Alice should still be owner
        assert!(manager
            .check_access("user:alice", "owner", "document:123")
            .expect("check should succeed"));
    }

    #[test]
    fn test_team_membership() {
        let manager = RebacManager::new();

        // Alice is member of engineering team
        manager
            .grant("user:alice", "member", "team:engineering")
            .expect("grant should succeed");

        // Engineering team members can view document
        manager
            .grant("team:engineering#member", "viewer", "document:123")
            .expect("grant should succeed");

        // This requires transitive resolution through subject sets
        // which is implemented in the graph's is_member_of_set method
    }
}