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
// =============================================================================
// Copyright (c) 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
// facade.
//! Facade-resolved listing options.
use crate::directory::ListOptions;
use crate::metadata::SymlinkPolicy;
/// Immutable options resolved by the facade before provider dispatch.
///
/// # Examples
///
/// ```rust
/// use qubit_fs::directory::ListOptions;
/// use qubit_fs::metadata::SymlinkPolicy;
/// use qubit_fs::spi::ResolvedListOptions;
///
/// let options = ListOptions::default();
/// assert!(std::any::type_name::<ResolvedListOptions>().contains("ResolvedListOptions"));
/// assert_eq!(SymlinkPolicy::Reject, SymlinkPolicy::Reject);
/// let _ = options;
/// ```
#[derive(Clone)]
pub struct ResolvedListOptions {
/// Caller options retained after facade validation and normalization.
options: ListOptions,
/// Effective symbolic-link policy after applying the caller override.
symlink_policy: SymlinkPolicy,
}
impl ResolvedListOptions {
/// Creates this value inside the facade boundary.
///
/// # Parameters
/// - `options`: Validated caller options after normalization.
/// - `symlink_policy`: Effective provider policy for this request.
#[inline]
pub(crate) const fn new(options: ListOptions, symlink_policy: SymlinkPolicy) -> Self {
Self {
options,
symlink_policy,
}
}
/// Returns the resolved options.
#[inline]
#[must_use]
pub const fn options(&self) -> &ListOptions {
&self.options
}
/// Returns the effective symbolic-link policy.
#[inline]
#[must_use = "the resolved symbolic-link policy must be used"]
pub const fn symlink_policy(&self) -> SymlinkPolicy {
self.symlink_policy
}
}
#[cfg(test)]
mod tests {
use std::hint::black_box;
use super::ResolvedListOptions;
use crate::directory::ListOptions;
use crate::metadata::SymlinkPolicy;
#[test]
fn resolved_options_expose_their_values() {
let options = ListOptions::default().with_recursive(true);
let resolved = ResolvedListOptions::new(options.clone(), SymlinkPolicy::FollowWithinFileSystem);
let options_accessor: fn(&ResolvedListOptions) -> &ListOptions = black_box(ResolvedListOptions::options);
let policy_accessor: fn(&ResolvedListOptions) -> SymlinkPolicy = black_box(ResolvedListOptions::symlink_policy);
assert_eq!(&options, options_accessor(&resolved));
assert_eq!(SymlinkPolicy::FollowWithinFileSystem, policy_accessor(&resolved));
}
}