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
use std::collections::HashMap;
use std::io;

use crate as urdig;
use phollaits::*;

pub fn get_subsystems() -> io::Result<Vec<String>> {
	let mut subsystems = Vec::with_capacity(80);
	let mut enumerator = udev::Enumerator::new()?;
	for device in enumerator.scan_devices()? {
		let property = device.property_value(urdig::PROPERTY_VALUE_SUBSYSTEM).to_io_result()?;
		if !subsystems.contains(&property.to_str().to_io_result()?.to_string()) {
			subsystems.push(property.to_str().to_io_result()?.to_string())
		}
	}
	subsystems.sort();
	Ok(subsystems)
}

pub fn get_nodes_from_subsystem<S: Into<String>>(subsystem: S) -> io::Result<Vec<String>> {
	let mut devnodes: Vec<String> = Vec::new();
	let mut enumerator = udev::Enumerator::new()?;
	enumerator.match_subsystem(subsystem.into())?;
	for device in enumerator.scan_devices()? {
		match device.devnode() {
			Some(x) => devnodes.push(x.to_str().to_io_result()?.to_string()),
			None => devnodes.push(device.syspath().to_str().to_io_result()?.to_string())
		}
	}
	devnodes.sort();
	Ok(devnodes)
}

pub fn get_properties<S: Into<String>>(name: S, source: Source) -> io::Result<HashMap<String, String>> {
	fn by_sysname<S: Into<String>>(name: S) -> io::Result<HashMap<String, String>> {
		let mut properties: HashMap<String, String> = HashMap::with_capacity(40);
		let mut enumerator = udev::Enumerator::new()?;
		enumerator.match_sysname(name.into().trim())?;
		for device in enumerator.scan_devices()? {
			for property in device.properties() {
				properties.insert(
					property.name().to_str().to_io_result()?.to_string(),
					property.value().to_str().to_io_result()?.to_string(),
				);
			}
		}
		Ok(properties)
	}
	fn by_devnode<S: Into<String>>(name: S) -> io::Result<HashMap<String, String>> {
		let name = name.into();
		let mut split = name.trim().rsplit(urdig::SEPARATOR_SYSTEM_DIRECTORY);
		let name = split.next().to_io_result()?;
		let mut properties: HashMap<String, String> = HashMap::with_capacity(40);
		let mut enumerator = udev::Enumerator::new()?;
		enumerator.match_sysname(name)?;
		for device in enumerator.scan_devices()? {
			for property in device.properties() {
				properties.insert(
					property.name().to_str().to_io_result()?.to_string(),
					property.value().to_str().to_io_result()?.to_string(),
				);
			}
		}
		Ok(properties)
	}

	fn by_syspath<S: Into<String>>(name: S) -> io::Result<HashMap<String, String>> {
		let name = name.into();
		let mut split = name.trim().rsplit(urdig::SEPARATOR_SYSTEM_DIRECTORY);
		let name = split.next().to_io_result()?;
		let mut properties: HashMap<String, String> = HashMap::with_capacity(40);
		let mut enumerator = udev::Enumerator::new()?;
		enumerator.match_sysname(name)?;
		for device in enumerator.scan_devices()? {
			for property in device.properties() {
				properties.insert(
					property.name().to_str().to_io_result()?.to_string(),
					property.value().to_str().to_io_result()?.to_string(),
				);
			}
		}
		Ok(properties)
	}
	match source {
		Source::Sysname => by_sysname(name),
		Source::Devnode => by_devnode(name),
		Source::Syspath => by_syspath(name),
	}
}

pub fn get_attributes<S: Into<String>>(name: S, source: Source) -> io::Result<HashMap<String, String>> {
	fn by_sysname<S: Into<String>>(name: S) -> io::Result<HashMap<String, String>> {
		let mut attributes: HashMap<String, String> = HashMap::with_capacity(40);
		let mut enumerator = udev::Enumerator::new()?;
		enumerator.match_sysname(name.into().trim())?;
		for device in enumerator.scan_devices()? {
			for attribute in device.attributes() {
				let value = match attribute.value() {
						Some(x) => x.to_str().to_string(),
						None => urdig::ERROR_VALUE_NONE.to_string()
					};
				attributes.insert(
					attribute.name().to_str().to_io_result()?.to_string(),
					value,
				);
			}
		}
		Ok(attributes)
	}
	fn by_devnode<S: Into<String>>(name: S) -> io::Result<HashMap<String, String>> {
		let name = name.into();
		let mut split = name.trim().rsplit(urdig::SEPARATOR_SYSTEM_DIRECTORY);
		let name = split.next().to_io_result()?;
		let mut attributes: HashMap<String, String> = HashMap::with_capacity(40);
		let mut enumerator = udev::Enumerator::new()?;
		enumerator.match_sysname(name)?;
		for device in enumerator.scan_devices()? {
			for attribute in device.attributes() {
				let value = match attribute.value() {
						Some(x) => x.to_str().to_string(),
						None => urdig::ERROR_VALUE_NONE.to_string()
					};
				attributes.insert(
					attribute.name().to_str().to_io_result()?.to_string(),
					value,
				);
			}
		}
		Ok(attributes)
	}

	fn by_syspath<S: Into<String>>(name: S) -> io::Result<HashMap<String, String>> {
		let name = name.into();
		let mut split = name.trim().rsplit(urdig::SEPARATOR_SYSTEM_DIRECTORY);
		let name = split.next().to_io_result()?;
		let mut attributes: HashMap<String, String> = HashMap::with_capacity(40);
		let mut enumerator = udev::Enumerator::new()?;
		enumerator.match_sysname(name)?;
		for device in enumerator.scan_devices()? {
			for attribute in device.attributes() {
				let value = match attribute.value() {
						Some(x) => x.to_str().to_string(),
						None => urdig::ERROR_VALUE_NONE.to_string()
					};
				attributes.insert(
					attribute.name().to_str().to_io_result()?.to_string(),
					value,
				);
			}
		}
		Ok(attributes)
	}
	match source {
		Source::Sysname => by_sysname(name),
		Source::Devnode => by_devnode(name),
		Source::Syspath => by_syspath(name),
	}
}


pub enum Source {
	Sysname,
	Devnode,
	Syspath
}