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
/*******************************************************************************
*
* Copyright (c) 2026 Haixing Hu.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0.
*
******************************************************************************/
//! # Qubit MIME
//!
//! MIME type detection based on filename glob rules, content magic rules, and
//! optional native command backends.
//!
//! The crate ships with two detector providers:
//!
//! - `repository`: an embedded detector that uses the bundled MIME repository.
//! - `file`: a detector that delegates content detection to the system
//! `file --mime-type --brief` command and uses the repository for filename
//! guesses.
//!
//! Detector wrappers such as [`BoxMimeDetector`] and [`ArcMimeDetector`] are
//! created through [`MimeConfig`]. The configured default detector is tried
//! first, followed by the configured fallback chain. The special selector
//! `auto` chooses the highest-priority available provider from a
//! [`MimeDetectorRegistry`].
//!
//! # Examples
//!
//! Create a detector from the default configuration:
//!
//! ```rust
//! use qubit_mime::{
//! BoxMimeDetector,
//! MimeConfig,
//! MimeDetector,
//! MimeResult,
//! };
//!
//! # fn main() -> MimeResult<()> {
//! let detector = BoxMimeDetector::from_config(&MimeConfig::default())?;
//! assert_eq!(
//! Some("application/pdf".to_owned()),
//! detector.detect_by_filename("document.pdf"),
//! );
//! # Ok(())
//! # }
//! ```
//!
//! Configure a preferred detector and an explicit fallback. This is useful when
//! `file` should be used on systems where it is available, while still allowing
//! deterministic repository detection on minimal CI images:
//!
//! ```rust
//! use qubit_config::Config;
//! use qubit_mime::{
//! BoxMimeDetector,
//! CONFIG_MIME_DETECTOR_DEFAULT,
//! CONFIG_MIME_DETECTOR_FALLBACKS,
//! MimeConfig,
//! MimeDetector,
//! MimeResult,
//! };
//!
//! # fn main() -> MimeResult<()> {
//! let mut source = Config::new();
//! source.set(CONFIG_MIME_DETECTOR_DEFAULT, "file")?;
//! source.set(CONFIG_MIME_DETECTOR_FALLBACKS, "repository")?;
//!
//! let config = MimeConfig::from_config(&source)?;
//! let detector = BoxMimeDetector::from_config(&config)?;
//! assert_eq!(
//! Some("image/png".to_owned()),
//! detector.detect_by_filename("image.png"),
//! );
//! # Ok(())
//! # }
//! ```
pub use ;
pub use *;
pub use *;
pub use ;
pub use MimeConfig;
pub use MimeError;
pub use MimeResult;
pub use ;