]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass-fulldeps/issue-2804.rs
Auto merge of #54919 - alexcrichton:update-cargo, r=Mark-Simulacrum
[rust.git] / src / test / run-pass-fulldeps / issue-2804.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![allow(non_camel_case_types)]
12 #![allow(dead_code)]
13 #![feature(rustc_private)]
14
15 extern crate serialize;
16
17 use std::collections::HashMap;
18 use serialize::json::{self, Json};
19 use std::option;
20
21 enum object {
22     bool_value(bool),
23     int_value(i64),
24 }
25
26 fn lookup(table: json::Object, key: String, default: String) -> String
27 {
28     match table.get(&key) {
29         option::Option::Some(&Json::String(ref s)) => {
30             s.to_string()
31         }
32         option::Option::Some(value) => {
33             println!("{} was expected to be a string but is a {}", key, value);
34             default
35         }
36         option::Option::None => {
37             default
38         }
39     }
40 }
41
42 fn add_interface(_store: isize, managed_ip: String, data: json::Json) -> (String, object)
43 {
44     match &data {
45         &Json::Object(ref interface) => {
46             let name = lookup(interface.clone(),
47                               "ifDescr".to_string(),
48                               "".to_string());
49             let label = format!("{}-{}", managed_ip, name);
50
51             (label, object::bool_value(false))
52         }
53         _ => {
54             println!("Expected dict for {} interfaces, found {}", managed_ip, data);
55             ("gnos:missing-interface".to_string(), object::bool_value(true))
56         }
57     }
58 }
59
60 fn add_interfaces(store: isize, managed_ip: String, device: HashMap<String, json::Json>)
61 -> Vec<(String, object)> {
62     match device["interfaces"] {
63         Json::Array(ref interfaces) =>
64         {
65           interfaces.iter().map(|interface| {
66                 add_interface(store, managed_ip.clone(), (*interface).clone())
67           }).collect()
68         }
69         _ =>
70         {
71             println!("Expected list for {} interfaces, found {}", managed_ip,
72                      device["interfaces"]);
73             Vec::new()
74         }
75     }
76 }
77
78 pub fn main() {}