[][src]Module hdd::drivedb

Use this module to match hard drive and SMART values it returns against smartmontools database.

Example

use hdd::drivedb::{Loader, vendor_attribute};

let loader = Loader::new();
// look for version updated with `update-smart-drivedb(8)` first
loader.load("/var/lib/smartmontools/drivedb/drivedb.h")
	.or_else(|| loader.load("/usr/share/smartmontools/drivedb.h"))?;
// `?` is optional though: if nothing can be loaded, loader will still provide dummy db for us

let db = loader.db();

// extra attribute definitions that user might give
let user_attributes = vec!["9,minutes"]
	.into_iter()
	.map(|attr| vendor_attribute::parse(attr).unwrap())
	.collect();

// TODO: issue ATA IDENTIFY DEVICE cmd and parse the answer here
let id = unimplemented!();

let meta = db.render_meta(&id, &user_attributes);

if let Some(warn) = meta.warning {
	println!("WARNING: {}", warn);
}

if let Some(attr) = meta.render_attribute(9) {
	if let Some(name) = attr.name {
		println!("Attribute 9 is named {}", name);
	}
}

Re-exports

pub use self::vendor_attribute::Attribute;

Modules

vendor_attribute

Module to parse and manipulate attribute descriptions.

Structs

DriveDB

Drive database that hosts its entries and allows to search for relevant data.

DriveMeta

Drive-related data that cannot be queried from the drive itself (model family, attribute presets etc.)

Loader

Use this helper to load entries from drivedb.h.

Enums

Error