mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 12:45:05 +00:00
63 lines
1.5 KiB
Rust
63 lines
1.5 KiB
Rust
use std::{
|
|
path::PathBuf,
|
|
sync::Arc,
|
|
};
|
|
|
|
use log::info;
|
|
use failure::Fail;
|
|
|
|
use crate::{
|
|
project::{Project, ProjectLoadFuzzyError},
|
|
web::LiveServer,
|
|
imfs::FsError,
|
|
live_session::{LiveSession, LiveSessionError},
|
|
};
|
|
|
|
const DEFAULT_PORT: u16 = 34872;
|
|
|
|
#[derive(Debug)]
|
|
pub struct ServeOptions {
|
|
pub fuzzy_project_path: PathBuf,
|
|
pub port: Option<u16>,
|
|
}
|
|
|
|
#[derive(Debug, Fail)]
|
|
pub enum ServeError {
|
|
#[fail(display = "Project load error: {}", _0)]
|
|
ProjectLoadError(#[fail(cause)] ProjectLoadFuzzyError),
|
|
|
|
#[fail(display = "{}", _0)]
|
|
FsError(#[fail(cause)] FsError),
|
|
|
|
#[fail(display = "{}", _0)]
|
|
LiveSessionError(#[fail(cause)] LiveSessionError),
|
|
}
|
|
|
|
impl_from!(ServeError {
|
|
ProjectLoadFuzzyError => ProjectLoadError,
|
|
FsError => FsError,
|
|
LiveSessionError => LiveSessionError,
|
|
});
|
|
|
|
pub fn serve(options: &ServeOptions) -> Result<(), ServeError> {
|
|
info!("Looking for project at {}", options.fuzzy_project_path.display());
|
|
|
|
let project = Arc::new(Project::load_fuzzy(&options.fuzzy_project_path)?);
|
|
project.check_compatibility();
|
|
|
|
info!("Found project at {}", project.file_location.display());
|
|
info!("Using project {:#?}", project);
|
|
|
|
let live_session = Arc::new(LiveSession::new(Arc::clone(&project))?);
|
|
let server = LiveServer::new(live_session);
|
|
|
|
let port = options.port
|
|
.or(project.serve_port)
|
|
.unwrap_or(DEFAULT_PORT);
|
|
|
|
println!("Rojo server listening on port {}", port);
|
|
|
|
server.start(port);
|
|
|
|
Ok(())
|
|
} |