/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use servo_url::ServoUrl; use std::collections::HashMap; use std::env; use std::fs::File; use std::io::{BufReader, Read}; use std::net::IpAddr; use std::sync::Mutex; lazy_static! { static ref HOST_TABLE: Mutex>> = Mutex::new(create_host_table()); } fn create_host_table() -> Option> { // TODO: handle bad file path let path = match env::var("HOST_FILE") { Ok(host_file_path) => host_file_path, Err(_) => return None, }; let mut file = match File::open(&path) { Ok(f) => BufReader::new(f), Err(_) => return None, }; let mut lines = String::new(); match file.read_to_string(&mut lines) { Ok(_) => (), Err(_) => return None, }; return Some(parse_hostsfile(&lines)); } pub fn replace_host_table(table: HashMap) { *HOST_TABLE.lock().unwrap() = Some(table); } pub fn parse_hostsfile(hostsfile_content: &str) -> HashMap { let mut host_table = HashMap::new(); for line in hostsfile_content.split('\n') { let mut ip_host = line.trim().split(|c: char| c == ' ' || c == '\t'); if let Some(ip) = ip_host.next() { if let Ok(address) = ip.parse::() { for token in ip_host { if token.as_bytes()[0] == b'#' { break; } host_table.insert((*token).to_owned(), address); } } } } host_table } pub fn replace_hosts(url: &ServoUrl) -> ServoUrl { HOST_TABLE.lock().unwrap().as_ref().map_or_else(|| url.clone(), |host_table| host_replacement(host_table, url)) } pub fn host_replacement(host_table: &HashMap, url: &ServoUrl) -> ServoUrl { url.domain() .and_then(|domain| { host_table.get(domain).map(|ip| { let mut new_url = url.clone(); new_url.set_ip_host(*ip).unwrap(); new_url }) }) .unwrap_or_else(|| url.clone()) }