BuildEAR 3.1.0

BuildEAR is a tool that generates a compilation database for clang tooling.
Documentation
/*  Copyright (C) 2012-2018 by László Nagy
    This file is part of Bear.

    Bear is a tool to generate compilation database for clang tooling.

    Bear is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Bear is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

use std::path;

use Result;
use trace;
use database;

pub enum CompilerPass {
    Preprocessor,
    Compilation,
    Assembly,
    Linking
}

pub struct Compilation {
    compiler: path::PathBuf,
    phase: CompilerPass,
    flags: Vec<String>,
    source: path::PathBuf,
    output: Option<path::PathBuf>,
    cwd: path::PathBuf,
}

impl Compilation {
    pub fn from_trace(_trace: trace::Trace) -> Result<Compilation> {
        unimplemented!()
    }

    pub fn to_db_entry(&self) -> Result<database::Entry> {
        unimplemented!()
    }
}