|
1 |
| -use rustc_serialize::json; |
2 |
| -use core::{PackageId, Target}; |
| 1 | +use rustc_serialize::Encodable; |
| 2 | +use rustc_serialize::json::{self, Json}; |
| 3 | + |
| 4 | +use core::{PackageId, Target, Profile}; |
| 5 | + |
| 6 | +pub trait Message: Encodable { |
| 7 | + fn reason(&self) -> &str; |
| 8 | +} |
| 9 | + |
| 10 | +pub fn emit<T: Message>(t: T) { |
| 11 | + let json = json::encode(&t).unwrap(); |
| 12 | + let mut map = match json.parse().unwrap() { |
| 13 | + Json::Object(obj) => obj, |
| 14 | + _ => panic!("not a json object"), |
| 15 | + }; |
| 16 | + map.insert("reason".to_string(), Json::String(t.reason().to_string())); |
| 17 | + println!("{}", Json::Object(map)); |
| 18 | +} |
3 | 19 |
|
4 | 20 | #[derive(RustcEncodable)]
|
5 | 21 | pub struct FromCompiler<'a> {
|
6 |
| - reason: &'static str, |
7 |
| - package_id: &'a PackageId, |
8 |
| - target: &'a Target, |
9 |
| - message: json::Json, |
10 |
| -} |
11 |
| - |
12 |
| -impl<'a> FromCompiler<'a> { |
13 |
| - pub fn new(package_id: &'a PackageId, |
14 |
| - target: &'a Target, |
15 |
| - message: json::Json) |
16 |
| - -> FromCompiler<'a> { |
17 |
| - FromCompiler { |
18 |
| - reason: "compiler-message", |
19 |
| - package_id: package_id, |
20 |
| - target: target, |
21 |
| - message: message, |
22 |
| - } |
| 22 | + pub package_id: &'a PackageId, |
| 23 | + pub target: &'a Target, |
| 24 | + pub message: json::Json, |
| 25 | +} |
| 26 | + |
| 27 | +impl<'a> Message for FromCompiler<'a> { |
| 28 | + fn reason(&self) -> &str { |
| 29 | + "compiler-message" |
23 | 30 | }
|
| 31 | +} |
24 | 32 |
|
25 |
| - pub fn emit(self) { |
26 |
| - let json = json::encode(&self).unwrap(); |
27 |
| - println!("{}", json); |
| 33 | +#[derive(RustcEncodable)] |
| 34 | +pub struct Artifact<'a> { |
| 35 | + pub package_id: &'a PackageId, |
| 36 | + pub target: &'a Target, |
| 37 | + pub profile: &'a Profile, |
| 38 | + pub features: Vec<String>, |
| 39 | + pub filenames: Vec<String>, |
| 40 | +} |
| 41 | + |
| 42 | +impl<'a> Message for Artifact<'a> { |
| 43 | + fn reason(&self) -> &str { |
| 44 | + "compiler-artifact" |
28 | 45 | }
|
29 | 46 | }
|
30 | 47 |
|
| 48 | +#[derive(RustcEncodable)] |
| 49 | +pub struct BuildScript<'a> { |
| 50 | + pub package_id: &'a PackageId, |
| 51 | + pub linked_libs: &'a [String], |
| 52 | + pub linked_paths: &'a [String], |
| 53 | + pub cfgs: &'a [String], |
| 54 | +} |
| 55 | + |
| 56 | +impl<'a> Message for BuildScript<'a> { |
| 57 | + fn reason(&self) -> &str { |
| 58 | + "build-script-executed" |
| 59 | + } |
| 60 | +} |
0 commit comments