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
/*!
Crate for determining the file format of a given file or stream.
It provides a variety of functions for identifying a wide range of file formats, including
[ZIP](`FileFormat::Zip`), [Compound File Binary (CFB)](`FileFormat::CompoundFileBinary`),
[Extensible Markup Language (XML)](`FileFormat::ExtensibleMarkupLanguage`) and [more](`FileFormat`).
It checks the signature of the file to determine its format. If it is not recognized by its
signature, it returns the default file format which is
[Arbitrary Binary Data (BIN)](`FileFormat::ArbitraryBinaryData`).
# Examples
Determines from a file:
```rust
use file_format::{FileFormat, Kind};
let format = FileFormat::from_file("fixtures/application/sample.pdf")?;
assert_eq!(format, FileFormat::PortableDocumentFormat);
assert_eq!(format.name(), "Portable Document Format");
assert_eq!(format.short_name(), "PDF");
assert_eq!(format.media_type(), "application/pdf");
assert_eq!(format.extension(), "pdf");
assert_eq!(format.kind(), Kind::Application);
# Ok::<(), std::io::Error>(())
```
Determines from bytes:
```rust
use file_format::{FileFormat, Kind};
let format = FileFormat::from_bytes(&[0xFF, 0xD8, 0xFF]);
assert_eq!(format, FileFormat::JointPhotographicExpertsGroup);
assert_eq!(format.name(), "Joint Photographic Experts Group");
assert_eq!(format.short_name(), "JPEG");
assert_eq!(format.media_type(), "image/jpeg");
assert_eq!(format.extension(), "jpg");
assert_eq!(format.kind(), Kind::Image);
```
# Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
file-format = "0.16"
```
# Crate features
All features below are disabled by default.
## Accuracy features
These features are only relevant if the associated reader is enabled. They improve the accuracy of
detection for specific file formats, but may increase processing time and memory usage.
- `accuracy` - Enables all accuracy features.
- `accuracy-mkv` - Improves the accuracy of [Matroska Video (MKV)](`FileFormat::MatroskaVideo`)
based file formats detection.
- `accuracy-pdf` - Improves the accuracy of
[Portable Document Format (PDF)](`FileFormat::PortableDocumentFormat`) based file formats
detection.
- `accuracy-txt` - Improves the accuracy of [Plain Text (TXT)](`FileFormat::PlainText`) detection.
- `accuracy-xml` - Improves the accuracy of
[Extensible Markup Language (XML)](`FileFormat::ExtensibleMarkupLanguage`) based file formats
detection.
- `accuracy-zip` - Improves the accuracy of [ZIP](`FileFormat::Zip`)-based file formats detection.
## Reader features
These features enable the detection of file formats based on other ones by reading their content.
- `reader` - Enables all reader features.
- `reader-cfb` - Enables [Compound File Binary (CFB)](`FileFormat::CompoundFileBinary`) based file
formats detection:
* [3D Studio Max (MAX)](`FileFormat::ThreeDimensionalStudioMax`)
* [Microsoft Excel Spreadsheet (XLS)](`FileFormat::MicrosoftExcelSpreadsheet`)
* [Microsoft PowerPoint Presentation (PPT)](`FileFormat::MicrosoftPowerpointPresentation`)
* [Microsoft Project Plan (MPP)](`FileFormat::MicrosoftProjectPlan`)
* [Microsoft Publisher Document (PUB)](`FileFormat::MicrosoftPublisherDocument`)
* [Microsoft Software Installer (MSI)](`FileFormat::MicrosoftSoftwareInstaller`)
* [Microsoft Visio Drawing (VSD)](`FileFormat::MicrosoftVisioDrawing`)
* [Microsoft Word Document (DOC)](`FileFormat::MicrosoftWordDocument`)
- `reader-exe` - Enables [MS-DOS Executable (EXE)](`FileFormat::MsDosExecutable`) based file formats
detection:
* [Dynamic Link Library (DLL)](`FileFormat::DynamicLinkLibrary`)
* [Portable Executable (PE)](`FileFormat::PortableExecutable`)
- `reader-mkv` - Enables [Matroska Video (MKV)](`FileFormat::MatroskaVideo`) based file formats
detection:
* [WebM](`FileFormat::Webm`)
- `reader-pdf` - Enables [Portable Document Format (PDF)](`FileFormat::PortableDocumentFormat`)
based file formats detection:
* [Adobe Illustrator Artwork (AI)](`FileFormat::AdobeIllustratorArtwork`)
- `reader-txt` - Enables [Plain Text (TXT)](`FileFormat::PlainText`) detection when the file format
is not recognized by its signature. Please note that this option only detects files that contain
ASCII/UTF-8-encoded text.
- `reader-xml` - Enables [Extensible Markup Language (XML)](`FileFormat::ExtensibleMarkupLanguage`)
based file formats detection:
* [Additive Manufacturing Format (AMF)](`FileFormat::AdditiveManufacturingFormat`)
* [Digital Asset Exchange (DAE)](`FileFormat::DigitalAssetExchange`)
* [Extensible 3D Graphics (X3D)](`FileFormat::Extensible3dGraphics`)
* [Extensible Stylesheet Language Transformations (XSLT)](`FileFormat::ExtensibleStylesheetLanguageTransformations`)
* [GPS Exchange Format (GPX)](`FileFormat::GpsExchangeFormat`)
* [Geography Markup Language (GML)](`FileFormat::GeographyMarkupLanguage`)
* [Keyhole Markup Language (KML)](`FileFormat::KeyholeMarkupLanguage`)
* [MusicXML](`FileFormat::Musicxml`)
* [Really Simple Syndication (RSS)](`FileFormat::ReallySimpleSyndication`)
* [Scalable Vector Graphics (SVG)](`FileFormat::ScalableVectorGraphics`)
* [Simple Object Access Protocol (SOAP)](`FileFormat::SimpleObjectAccessProtocol`)
* [XML Localization Interchange File Format (XLIFF)](`FileFormat::XmlLocalizationInterchangeFileFormat`)
* [XML Shareable Playlist Format (XSPF)](`FileFormat::XmlShareablePlaylistFormat`)
* [draw.io (DRAWIO)](`FileFormat::Drawio`)
- `reader-zip` - Enables [ZIP](`FileFormat::Zip`)-based file formats detection:
* [3D Manufacturing Format (3MF)](`FileFormat::ThreeDimensionalManufacturingFormat`)
* [Android Package (APK)](`FileFormat::AndroidPackage`)
* [Circuit Diagram Document (CDDX)](`FileFormat::CircuitDiagramDocument`)
* [Design Web Format XPS (DWFX)](`FileFormat::DesignWebFormatXps`)
* [Electronic Publication (EPUB)](`FileFormat::ElectronicPublication`)
* [Enterprise Application Archive (EAR)](`FileFormat::EnterpriseApplicationArchive`)
* [InDesign Markup Language (IDML)](`FileFormat::IndesignMarkupLanguage`)
* [Java Archive (JAR)](`FileFormat::JavaArchive`)
* [Keyhole Markup Language Zipped (KMZ)](`FileFormat::KeyholeMarkupLanguageZipped`)
* [Microsoft Visual Studio Extension (VSIX)](`FileFormat::MicrosoftVisualStudioExtension`)
* [MusicXML Zipped (MXL)](`FileFormat::MusicxmlZipped`)
* [Office Open XML Document (DOCX)](`FileFormat::OfficeOpenXmlDocument`)
* [Office Open XML Drawing (VSDX)](`FileFormat::OfficeOpenXmlDrawing`)
* [Office Open XML Presentation (PPTX)](`FileFormat::OfficeOpenXmlPresentation`)
* [Office Open XML Spreadsheet (XLSX)](`FileFormat::OfficeOpenXmlSpreadsheet`)
* [OpenDocument Graphics (ODG)](`FileFormat::OpendocumentGraphics`)
* [OpenDocument Presentation (ODP)](`FileFormat::OpendocumentPresentation`)
* [OpenDocument Spreadsheet (ODS)](`FileFormat::OpendocumentSpreadsheet`)
* [OpenDocument Text (ODT)](`FileFormat::OpendocumentText`)
* [OpenRaster (ORA)](`FileFormat::Openraster`)
* [Web Application Archive (WAR)](`FileFormat::WebApplicationArchive`)
* [Windows App Package (APPX)](`FileFormat::WindowsAppPackage`)
* [XAP](`FileFormat::Xap`)
* [XPInstall (XPI)](`FileFormat::Xpinstall`)
* [iOS App Store Package (IPA)](`FileFormat::IosAppStorePackage`)
*/
#![deny(missing_docs)]
#[macro_use]
mod macros;
mod formats;
mod readers;
mod signatures;
use std::{
fmt::{self, Display, Formatter},
fs::File,
io::{BufRead, BufReader, Cursor, Read, Result, Seek},
path::Path,
};
pub use formats::FileFormat;
impl FileFormat {
/// Determines file format from bytes.
///
/// # Examples
///
/// Detects from the first bytes of a
/// [Portable Network Graphics (PNG)](`FileFormat::PortableNetworkGraphics`) file:
///
/// ```rust
/// use file_format::FileFormat;
///
/// let format = FileFormat::from_bytes(b"\x89\x50\x4E\x47\x0D\x0A\x1A\x0A");
/// assert_eq!(format, FileFormat::PortableNetworkGraphics);
///```
///
/// Detects from a zeroed buffer:
///
/// ```rust
/// use file_format::FileFormat;
///
/// let format = FileFormat::from_bytes(&[0; 1000]);
/// assert_eq!(format, FileFormat::ArbitraryBinaryData);
///```
///
/// [default value]: FileFormat::default
#[inline]
pub fn from_bytes(bytes: &[u8]) -> Self {
Self::from(bytes)
}
/// Determines file format from a file.
///
/// # Examples
///
/// ```rust
/// use file_format::FileFormat;
///
/// let format = FileFormat::from_file("fixtures/video/sample.avi")?;
/// assert_eq!(format, FileFormat::AudioVideoInterleave);
/// # Ok::<(), std::io::Error>(())
///```
#[inline]
pub fn from_file<P: AsRef<Path>>(path: P) -> Result<Self> {
Self::from_reader(File::open(path)?)
}
/// Determines file format from a reader.
///
/// # Examples
///
/// ```rust
/// use file_format::FileFormat;
///
/// let format = FileFormat::from_reader(std::io::empty())?;
/// assert_eq!(format, FileFormat::default());
/// # Ok::<(), std::io::Error>(())
///```
pub fn from_reader<R: Read + Seek>(reader: R) -> Result<Self> {
let mut reader = BufReader::with_capacity(36870, reader);
Ok(if reader.fill_buf()?.is_empty() {
Self::default()
} else if let Some(format) = Self::from_signature(reader.buffer()) {
Self::from_format_reader(format, &mut reader)
.unwrap_or_else(|_| Self::from_generic_reader(&mut reader))
} else {
Self::from_generic_reader(&mut reader)
})
}
}
impl Default for FileFormat {
/// Returns the default file format which is
/// [Arbitrary Binary Data (BIN)](`FileFormat::ArbitraryBinaryData`).
#[inline]
fn default() -> Self {
Self::ArbitraryBinaryData
}
}
impl Display for FileFormat {
#[inline]
fn fmt(&self, formatter: &mut Formatter<'_>) -> fmt::Result {
write!(formatter, "{}", self.name())
}
}
impl From<&[u8]> for FileFormat {
#[inline]
fn from(value: &[u8]) -> Self {
Self::from_reader(Cursor::new(value)).unwrap_or_default()
}
}
/// A kind of [`FileFormat`] according to the media type.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum Kind {
/// Data to be processed by some type of application program.
Application,
/// Music, sound effects, and spoken audio recordings.
Audio,
/// Files used for displaying text on screen or in print.
Font,
/// Photographs, illustrations, and other types of image files.
Image,
/// 3D models, CAD drawings, and other types of files used for creating or displaying 3D images.
Model,
/// Plain text, markup languages, and other types of files that contain written text.
Text,
/// Movies, animations, and other types of files that contain moving images.
Video,
}