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
//! A Rust representation of Abstract Syntax Trees of Erlang modules.
//!
//! Currently the library provide only a functionality that
//! loading ASTs from beam files which have debug infos.
//!
//! See also: [The Abstract Format](http://erlang.org/doc/apps/erts/absform.html)
//!
//! # Examples
//!
//! ```
//! use erl_ast::AST;
//!
//! let ast = AST::from_beam_file("src/testdata/test.beam").unwrap();
//! println!("{:?}", ast);
//! ```
extern crate beam_file;
extern crate eetf;
extern crate num;

pub mod ast;
pub mod result;
pub mod error;
pub mod format;

use std::path::Path;

/// Abstract Syntax Tree
#[derive(Debug)]
pub struct AST {
    pub module: ast::ModuleDecl,
}
impl AST {
    /// Builds AST from the BEAM file
    pub fn from_beam_file<P: AsRef<Path>>(beam_file: P) -> result::FromBeamResult<Self> {
        let code = try!(format::raw_abstract_v1::AbstractCode::from_beam_file(beam_file));
        let forms = try!(code.to_forms());
        Ok(AST { module: ast::ModuleDecl { forms: forms } })
    }
}

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

    #[test]
    fn it_works() {
        AST::from_beam_file("src/testdata/test.beam")
            .map_err(|err| {
                println!("[ERROR] {}", err);
                "Failed"
            })
            .unwrap();
    }
}