mdbook/src/cmd/serve.rs

165 lines
5.4 KiB
Rust
Raw Normal View History

2022-07-04 23:16:31 +08:00
use super::command_prelude::*;
2018-07-25 12:20:48 -05:00
#[cfg(feature = "watch")]
use super::watch;
use crate::{get_book_dir, open};
2022-07-04 23:16:31 +08:00
use clap::builder::NonEmptyStringValueParser;
use futures_util::sink::SinkExt;
use futures_util::StreamExt;
use mdbook::errors::*;
2018-07-23 12:45:01 -05:00
use mdbook::utils;
use mdbook::utils::fs::get_404_output_file;
2018-07-23 12:45:01 -05:00
use mdbook::MDBook;
use std::net::{SocketAddr, ToSocketAddrs};
use std::path::PathBuf;
use tokio::sync::broadcast;
use warp::ws::Message;
use warp::Filter;
/// The HTTP endpoint for the websocket used to trigger reloads when a file changes.
const LIVE_RELOAD_ENDPOINT: &str = "__livereload";
2019-11-12 18:06:11 -08:00
// Create clap subcommand arguments
2022-07-04 23:16:31 +08:00
pub fn make_subcommand() -> Command {
Command::new("serve")
2018-08-02 15:48:22 -05:00
.about("Serves a book at http://localhost:3000, and rebuilds it on changes")
2022-07-04 23:16:31 +08:00
.arg_dest_dir()
.arg_root_dir()
2018-08-02 15:48:22 -05:00
.arg(
Arg::new("hostname")
2022-01-18 15:56:45 -06:00
.short('n')
2018-08-02 15:48:22 -05:00
.long("hostname")
2022-07-04 23:16:31 +08:00
.num_args(1)
2018-08-02 15:48:22 -05:00
.default_value("localhost")
2022-07-04 23:16:31 +08:00
.value_parser(NonEmptyStringValueParser::new())
2018-08-02 15:48:22 -05:00
.help("Hostname to listen on for HTTP connections"),
)
2018-08-02 15:48:22 -05:00
.arg(
Arg::new("port")
2022-01-18 15:56:45 -06:00
.short('p')
2018-08-02 15:48:22 -05:00
.long("port")
2022-07-04 23:16:31 +08:00
.num_args(1)
2018-08-02 15:48:22 -05:00
.default_value("3000")
2022-07-04 23:16:31 +08:00
.value_parser(NonEmptyStringValueParser::new())
2018-08-02 15:48:22 -05:00
.help("Port to use for HTTP connections"),
)
2022-07-04 23:16:31 +08:00
.arg_open()
}
// Serve command implementation
pub fn execute(args: &ArgMatches) -> Result<()> {
let book_dir = get_book_dir(args);
2023-05-13 09:44:11 -07:00
let mut book = MDBook::load(book_dir)?;
2022-07-04 23:16:31 +08:00
let port = args.get_one::<String>("port").unwrap();
let hostname = args.get_one::<String>("hostname").unwrap();
let open_browser = args.get_flag("open");
2018-08-02 15:48:22 -05:00
let address = format!("{}:{}", hostname, port);
2020-05-17 11:04:29 -07:00
let update_config = |book: &mut MDBook| {
book.config
2022-07-04 23:16:31 +08:00
.set("output.html.live-reload-endpoint", LIVE_RELOAD_ENDPOINT)
.expect("live-reload-endpoint update failed");
2022-07-04 23:16:31 +08:00
if let Some(dest_dir) = args.get_one::<PathBuf>("dest-dir") {
2020-05-17 11:04:29 -07:00
book.config.build.build_dir = dest_dir.into();
}
// Override site-url for local serving of the 404 file
book.config.set("output.html.site-url", "/").unwrap();
};
update_config(&mut book);
book.build()?;
let sockaddr: SocketAddr = address
.to_socket_addrs()?
.next()
.ok_or_else(|| anyhow::anyhow!("no address found for {}", address))?;
let build_dir = book.build_dir_for("html");
let input_404 = book
.config
.get("output.html.input-404")
.and_then(toml::Value::as_str)
.map(ToString::to_string);
let file_404 = get_404_output_file(&input_404);
// A channel used to broadcast to any websockets to reload when a file changes.
let (tx, _rx) = tokio::sync::broadcast::channel::<Message>(100);
let reload_tx = tx.clone();
let thread_handle = std::thread::spawn(move || {
serve(build_dir, sockaddr, reload_tx, &file_404);
});
let serving_url = format!("http://{}", address);
info!("Serving on: {}", serving_url);
if open_browser {
open(serving_url);
}
#[cfg(feature = "watch")]
watch::trigger_on_change(&book, move |paths, book_dir| {
info!("Files changed: {:?}", paths);
info!("Building book...");
// FIXME: This area is really ugly because we need to re-set livereload :(
2023-05-13 09:44:11 -07:00
let result = MDBook::load(book_dir).and_then(|mut b| {
2020-05-17 11:04:29 -07:00
update_config(&mut b);
b.build()
});
if let Err(e) = result {
error!("Unable to load the book");
utils::log_backtrace(&e);
} else {
let _ = tx.send(Message::text("reload"));
}
});
let _ = thread_handle.join();
Ok(())
2019-11-12 18:06:11 -08:00
}
#[tokio::main]
async fn serve(
build_dir: PathBuf,
address: SocketAddr,
reload_tx: broadcast::Sender<Message>,
file_404: &str,
) {
// A warp Filter which captures `reload_tx` and provides an `rx` copy to
// receive reload messages.
let sender = warp::any().map(move || reload_tx.subscribe());
// A warp Filter to handle the livereload endpoint. This upgrades to a
// websocket, and then waits for any filesystem change notifications, and
// relays them over the websocket.
let livereload = warp::path(LIVE_RELOAD_ENDPOINT)
.and(warp::ws())
.and(sender)
.map(|ws: warp::ws::Ws, mut rx: broadcast::Receiver<Message>| {
ws.on_upgrade(move |ws| async move {
let (mut user_ws_tx, _user_ws_rx) = ws.split();
trace!("websocket got connection");
if let Ok(m) = rx.recv().await {
trace!("notify of reload");
let _ = user_ws_tx.send(m).await;
}
})
});
// A warp Filter that serves from the filesystem.
2020-05-13 14:45:35 +02:00
let book_route = warp::fs::dir(build_dir.clone());
// The fallback route for 404 errors
let fallback_route = warp::fs::file(build_dir.join(file_404))
2020-05-13 14:45:35 +02:00
.map(|reply| warp::reply::with_status(reply, warp::http::StatusCode::NOT_FOUND));
let routes = livereload.or(book_route).or(fallback_route);
2021-05-28 07:40:56 -07:00
std::panic::set_hook(Box::new(move |panic_info| {
// exit if serve panics
error!("Unable to serve: {}", panic_info);
std::process::exit(1);
}));
warp::serve(routes).run(address).await;
}