|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- // Contains an embedded version of livereload-js
- //
- // Copyright (c) 2010-2012 Andrey Tarantsov
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
- use std::env;
- use std::path::Path;
- use std::sync::mpsc::channel;
- use std::time::{Instant, Duration};
- use std::thread;
-
- use chrono::prelude::*;
- use iron::{Iron, Request, IronResult, Response, status};
- use mount::Mount;
- use staticfile::Static;
- use notify::{Watcher, RecursiveMode, watcher};
- use ws::{WebSocket, Sender, Message};
- use site::Site;
- use errors::{Result, ResultExt};
-
- use console;
- use rebuild;
-
- #[derive(Debug, PartialEq)]
- enum ChangeKind {
- Content,
- Templates,
- StaticFiles,
- Sass,
- }
-
- // Uglified using uglifyjs
- // Also, commenting out the lines 330-340 (containing `e instanceof ProtocolError`) was needed
- // as it seems their build didn't work well and didn't include ProtocolError so it would error on
- // errors
- const LIVE_RELOAD: &'static str = include_str!("livereload.js");
-
-
- fn livereload_handler(_: &mut Request) -> IronResult<Response> {
- Ok(Response::with((status::Ok, LIVE_RELOAD.to_string())))
- }
-
-
- fn rebuild_done_handling(broadcaster: &Sender, res: Result<()>, reload_path: &str) {
- match res {
- Ok(_) => {
- broadcaster.send(format!(r#"
- {{
- "command": "reload",
- "path": "{}",
- "originalPath": "",
- "liveCSS": true,
- "liveImg": true,
- "protocol": ["http://livereload.com/protocols/official-7"]
- }}"#, reload_path)
- ).unwrap();
- },
- Err(e) => console::unravel_errors("Failed to build the site", &e)
- }
- }
-
- pub fn serve(interface: &str, port: &str, config_file: &str) -> Result<()> {
- let start = Instant::now();
- let mut site = Site::new(env::current_dir().unwrap(), config_file)?;
-
- let address = format!("{}:{}", interface, port);
- // Override the base url so links work in localhost
- site.config.base_url = if site.config.base_url.ends_with('/') {
- format!("http://{}/", address)
- } else {
- format!("http://{}", address)
- };
-
- site.load()?;
- site.enable_live_reload();
- console::notify_site_size(&site);
- console::warn_about_ignored_pages(&site);
- site.build()?;
- console::report_elapsed_time(start);
- let mut watching_static = false;
-
- // Setup watchers
- let (tx, rx) = channel();
- let mut watcher = watcher(tx, Duration::from_secs(2)).unwrap();
- watcher.watch("content/", RecursiveMode::Recursive)
- .chain_err(|| "Can't watch the `content` folder. Does it exist?")?;
- watcher.watch("templates/", RecursiveMode::Recursive)
- .chain_err(|| "Can't watch the `templates` folder. Does it exist?")?;
-
- if Path::new("static").exists() {
- watching_static = true;
- watcher.watch("static/", RecursiveMode::Recursive)
- .chain_err(|| "Can't watch the `static` folder. Does it exist?")?;
- }
-
- // Sass support is optional so don't make it an error to no have a sass folder
- let _ = watcher.watch("sass/", RecursiveMode::Recursive);
-
- let ws_address = format!("{}:{}", interface, "1112");
-
- // Start a webserver that serves the `public` directory
- let mut mount = Mount::new();
- mount.mount("/", Static::new(Path::new("public/")));
- mount.mount("/livereload.js", livereload_handler);
- // Starts with a _ to not trigger the unused lint
- // we need to assign to a variable otherwise it will block
- let _iron = Iron::new(mount).http(address.as_str())
- .chain_err(|| "Can't start the webserver")?;
-
- // The websocket for livereload
- let ws_server = WebSocket::new(|output: Sender| {
- move |msg: Message| {
- if msg.into_text().unwrap().contains("\"hello\"") {
- return output.send(Message::text(r#"
- {
- "command": "hello",
- "protocols": [ "http://livereload.com/protocols/official-7" ],
- "serverName": "Gutenberg"
- }
- "#));
- }
- Ok(())
- }
- }).unwrap();
- let broadcaster = ws_server.broadcaster();
- thread::spawn(move || {
- ws_server.listen(&*ws_address).unwrap();
- });
-
- let pwd = format!("{}", env::current_dir().unwrap().display());
-
- let mut watchers = vec!["content", "templates"];
- if watching_static {
- watchers.push("static");
- }
- if site.config.compile_sass.unwrap() {
- watchers.push("sass");
- }
-
- println!("Listening for changes in {}/{{{}}}", pwd, watchers.join(", "));
- println!("Web server is available at http://{}", address);
- println!("Press Ctrl+C to stop\n");
-
- use notify::DebouncedEvent::*;
-
- loop {
- match rx.recv() {
- Ok(event) => {
- match event {
- Create(path) |
- Write(path) |
- Remove(path) |
- Rename(_, path) => {
- if is_temp_file(&path) || path.is_dir() {
- continue;
- }
-
- println!("Change detected @ {}", Local::now().format("%Y-%m-%d %H:%M:%S").to_string());
- let start = Instant::now();
- match detect_change_kind(&pwd, &path) {
- (ChangeKind::Content, _) => {
- console::info(&format!("-> Content changed {}", path.display()));
- // Force refresh
- rebuild_done_handling(&broadcaster, rebuild::after_content_change(&mut site, &path), "/x.js");
- },
- (ChangeKind::Templates, _) => {
- console::info(&format!("-> Template changed {}", path.display()));
- // Force refresh
- rebuild_done_handling(&broadcaster, rebuild::after_template_change(&mut site, &path), "/x.js");
- },
- (ChangeKind::StaticFiles, p) => {
- if path.is_file() {
- console::info(&format!("-> Static file changes detected {}", path.display()));
- rebuild_done_handling(&broadcaster, site.copy_static_file(&path, &site.static_path), &p);
- }
- },
- (ChangeKind::Sass, p) => {
- console::info(&format!("-> Sass file changed {}", path.display()));
- rebuild_done_handling(&broadcaster, site.compile_sass(&site.base_path), &p);
- },
- };
- console::report_elapsed_time(start);
- }
- _ => {}
- }
- },
- Err(e) => console::error(&format!("Watch error: {:?}", e)),
- };
- }
- }
-
- /// Returns whether the path we received corresponds to a temp file created
- /// by an editor or the OS
- fn is_temp_file(path: &Path) -> bool {
- let ext = path.extension();
- match ext {
- Some(ex) => match ex.to_str().unwrap() {
- "swp" | "swx" | "tmp" | ".DS_STORE" => true,
- // jetbrains IDE
- x if x.ends_with("jb_old___") => true,
- x if x.ends_with("jb_tmp___") => true,
- x if x.ends_with("jb_bak___") => true,
- // vim
- x if x.ends_with('~') => true,
- _ => {
- if let Some(filename) = path.file_stem() {
- // emacs
- filename.to_str().unwrap().starts_with('#')
- } else {
- false
- }
- }
- },
- None => {
- path.ends_with(".DS_STORE")
- },
- }
- }
-
- /// Detect what changed from the given path so we have an idea what needs
- /// to be reloaded
- fn detect_change_kind(pwd: &str, path: &Path) -> (ChangeKind, String) {
- let path_str = format!("{}", path.display())
- .replace(pwd, "")
- .replace("\\", "/");
- let change_kind = if path_str.starts_with("/templates") {
- ChangeKind::Templates
- } else if path_str.starts_with("/content") {
- ChangeKind::Content
- } else if path_str.starts_with("/static") {
- ChangeKind::StaticFiles
- } else if path_str.starts_with("/sass") {
- ChangeKind::Sass
- } else {
- unreachable!("Got a change in an unexpected path: {}", path_str)
- };
-
- (change_kind, path_str)
- }
-
- #[cfg(test)]
- mod tests {
- use std::path::Path;
-
- use super::{is_temp_file, detect_change_kind, ChangeKind};
-
- #[test]
- fn can_recognize_temp_files() {
- let test_cases = vec![
- Path::new("hello.swp"),
- Path::new("hello.swx"),
- Path::new(".DS_STORE"),
- Path::new("hello.tmp"),
- Path::new("hello.html.__jb_old___"),
- Path::new("hello.html.__jb_tmp___"),
- Path::new("hello.html.__jb_bak___"),
- Path::new("hello.html~"),
- Path::new("#hello.html"),
- ];
-
- for t in test_cases {
- assert!(is_temp_file(&t));
- }
- }
-
- #[test]
- fn can_detect_kind_of_changes() {
- let test_cases = vec![
- (
- (ChangeKind::Templates, "/templates/hello.html".to_string()),
- "/home/vincent/site", Path::new("/home/vincent/site/templates/hello.html")
- ),
- (
- (ChangeKind::StaticFiles, "/static/site.css".to_string()),
- "/home/vincent/site", Path::new("/home/vincent/site/static/site.css")
- ),
- (
- (ChangeKind::Content, "/content/posts/hello.md".to_string()),
- "/home/vincent/site", Path::new("/home/vincent/site/content/posts/hello.md")
- ),
- (
- (ChangeKind::Sass, "/sass/print.scss".to_string()),
- "/home/vincent/site", Path::new("/home/vincent/site/sass/print.scss")
- )
- ];
-
- for (expected, pwd, path) in test_cases {
- assert_eq!(expected, detect_change_kind(&pwd, &path));
- }
- }
-
-
- }
|