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
//! Bindings to libkmod to manage linux kernel modules.
//!
//! # Example
//! ```
//! extern crate kmod;
//!
//! fn main() {
//!     // create a new kmod context
//!     let ctx = kmod::Context::new().unwrap();
//!
//!     // get a kmod_list of all loaded modules
//!     for module in ctx.modules_loaded().unwrap() {
//!         let name = module.name();
//!         let refcount = module.refcount();
//!         let size = module.size();
//!
//!         let holders: Vec<_> = module.holders()
//!             .map(|x| x.name())
//!             .collect();
//!
//!         println!("{:<19} {:8}  {} {:?}", name, size, refcount, holders);
//!     }
//! }
//! ```
#[macro_use] extern crate error_chain;
#[macro_use] extern crate log;
extern crate errno;
extern crate reduce;
extern crate kmod_sys;

mod errors {
    use std;
    use errno::Errno;

    error_chain! {
        errors {
            Errno(err: Errno) {
                description("got error")
                display("{}", err)
            }
        }
        foreign_links {
            NulError(std::ffi::NulError);
        }
    }
}
pub use errors::{Result, Error, ErrorKind};

mod ctx;
mod modules;

pub use ctx::*;
pub use modules::*;

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn lsmod() {
        let ctx = Context::new().unwrap();

        for module in ctx.modules_loaded().unwrap() {
            let name = module.name();
            let refcount = module.refcount();
            let size = module.size();

            let holders: Vec<_> = module.holders()
                                    .map(|x| x.name())
                                    .collect();

            println!("{:<19} {:8}  {} {:?}", name, size, refcount, holders);
        }
    }
}