forked from rojo-rbx/rojo
305 lines
9.6 KiB
Rust
305 lines
9.6 KiB
Rust
use std::{
|
|
fmt,
|
|
path::{Path, PathBuf},
|
|
sync::Arc,
|
|
};
|
|
|
|
use anyhow::Context;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use crate::{
|
|
glob::Glob,
|
|
path_serializer,
|
|
project::ProjectNode,
|
|
snapshot_middleware::{emit_legacy_scripts_default, Middleware},
|
|
};
|
|
|
|
/// Rojo-specific metadata that can be associated with an instance or a snapshot
|
|
/// of an instance.
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
|
pub struct InstanceMetadata {
|
|
/// Whether instances not present in the source should be ignored when
|
|
/// live-syncing. This is useful when there are instances that Rojo does not
|
|
/// manage.
|
|
pub ignore_unknown_instances: bool,
|
|
|
|
/// If a change occurs to this instance, the instigating source is what
|
|
/// should be run through the snapshot functions to regenerate it.
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub instigating_source: Option<InstigatingSource>,
|
|
|
|
/// The paths that, when changed, could cause the function that generated
|
|
/// this snapshot to generate a different snapshot. Paths should be included
|
|
/// even if they don't exist, since the presence of a file can change the
|
|
/// outcome of a snapshot function.
|
|
///
|
|
/// For example, a file named foo.lua might have these relevant paths:
|
|
/// - foo.lua
|
|
/// - foo.meta.json (even if this file doesn't exist!)
|
|
///
|
|
/// A directory named bar/ might have these:
|
|
/// - bar/
|
|
/// - bar/init.meta.json
|
|
/// - bar/init.lua
|
|
/// - bar/init.server.lua
|
|
/// - bar/init.client.lua
|
|
/// - bar/default.project.json
|
|
///
|
|
/// This path is used to make sure that file changes update all instances
|
|
/// that may need updates.
|
|
// TODO: Change this to be a SmallVec for performance in common cases?
|
|
#[serde(serialize_with = "path_serializer::serialize_vec_absolute")]
|
|
pub relevant_paths: Vec<PathBuf>,
|
|
|
|
/// Contains information about this instance that should persist between
|
|
/// snapshot invocations and is generally inherited.
|
|
///
|
|
/// If an instance has a piece of context attached to it, then the next time
|
|
/// that instance's instigating source is snapshotted directly, the same
|
|
/// context will be passed into it.
|
|
pub context: InstanceContext,
|
|
}
|
|
|
|
impl InstanceMetadata {
|
|
pub fn new() -> Self {
|
|
Self {
|
|
ignore_unknown_instances: false,
|
|
instigating_source: None,
|
|
relevant_paths: Vec::new(),
|
|
context: InstanceContext::default(),
|
|
}
|
|
}
|
|
|
|
pub fn ignore_unknown_instances(self, ignore_unknown_instances: bool) -> Self {
|
|
Self {
|
|
ignore_unknown_instances,
|
|
..self
|
|
}
|
|
}
|
|
|
|
pub fn instigating_source(self, instigating_source: impl Into<InstigatingSource>) -> Self {
|
|
Self {
|
|
instigating_source: Some(instigating_source.into()),
|
|
..self
|
|
}
|
|
}
|
|
|
|
pub fn relevant_paths(self, relevant_paths: Vec<PathBuf>) -> Self {
|
|
Self {
|
|
relevant_paths,
|
|
..self
|
|
}
|
|
}
|
|
|
|
pub fn context(self, context: &InstanceContext) -> Self {
|
|
Self {
|
|
context: context.clone(),
|
|
..self
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Default for InstanceMetadata {
|
|
fn default() -> Self {
|
|
Self::new()
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
|
pub struct InstanceContext {
|
|
#[serde(skip_serializing_if = "Vec::is_empty")]
|
|
pub path_ignore_rules: Arc<Vec<PathIgnoreRule>>,
|
|
pub emit_legacy_scripts: bool,
|
|
#[serde(skip_serializing_if = "Vec::is_empty")]
|
|
pub sync_rules: Vec<SyncRule>,
|
|
}
|
|
|
|
impl InstanceContext {
|
|
pub fn new() -> Self {
|
|
Self {
|
|
path_ignore_rules: Arc::new(Vec::new()),
|
|
emit_legacy_scripts: emit_legacy_scripts_default().unwrap(),
|
|
sync_rules: Vec::new(),
|
|
}
|
|
}
|
|
|
|
pub fn with_emit_legacy_scripts(emit_legacy_scripts: Option<bool>) -> Self {
|
|
Self {
|
|
emit_legacy_scripts: emit_legacy_scripts
|
|
.or_else(emit_legacy_scripts_default)
|
|
.unwrap(),
|
|
..Self::new()
|
|
}
|
|
}
|
|
|
|
/// Extend the list of ignore rules in the context with the given new rules.
|
|
pub fn add_path_ignore_rules<I>(&mut self, new_rules: I)
|
|
where
|
|
I: IntoIterator<Item = PathIgnoreRule>,
|
|
I::IntoIter: ExactSizeIterator,
|
|
{
|
|
let new_rules = new_rules.into_iter();
|
|
|
|
// If the iterator is empty, we can skip cloning our list of ignore
|
|
// rules and appending to it.
|
|
if new_rules.len() == 0 {
|
|
return;
|
|
}
|
|
|
|
let rules = Arc::make_mut(&mut self.path_ignore_rules);
|
|
rules.extend(new_rules);
|
|
}
|
|
|
|
/// Extend the list of syncing rules in the context with the given new rules.
|
|
pub fn add_sync_rules<I>(&mut self, new_rules: I)
|
|
where
|
|
I: IntoIterator<Item = SyncRule>,
|
|
{
|
|
self.sync_rules.extend(new_rules);
|
|
}
|
|
|
|
/// Clears all sync rules for this InstanceContext
|
|
pub fn clear_sync_rules(&mut self) {
|
|
self.sync_rules.clear();
|
|
}
|
|
|
|
pub fn set_emit_legacy_scripts(&mut self, emit_legacy_scripts: bool) {
|
|
self.emit_legacy_scripts = emit_legacy_scripts;
|
|
}
|
|
|
|
/// Returns the middleware specified by the first sync rule that
|
|
/// matches the provided path. This does not handle default syncing rules.
|
|
pub fn get_user_sync_rule(&self, path: &Path) -> Option<&SyncRule> {
|
|
self.sync_rules.iter().find(|&rule| rule.matches(path))
|
|
}
|
|
}
|
|
|
|
impl Default for InstanceContext {
|
|
fn default() -> Self {
|
|
Self::new()
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
|
pub struct PathIgnoreRule {
|
|
/// The path that this glob is relative to. Since ignore globs are defined
|
|
/// in project files, this will generally be the folder containing the
|
|
/// project file that defined this glob.
|
|
#[serde(serialize_with = "path_serializer::serialize_absolute")]
|
|
pub base_path: PathBuf,
|
|
|
|
/// The actual glob that can be matched against the input path.
|
|
pub glob: Glob,
|
|
}
|
|
|
|
impl PathIgnoreRule {
|
|
pub fn passes<P: AsRef<Path>>(&self, path: P) -> bool {
|
|
let path = path.as_ref();
|
|
|
|
match path.strip_prefix(&self.base_path) {
|
|
Ok(suffix) => !self.glob.is_match(suffix),
|
|
Err(_) => true,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, PartialEq, Serialize, Deserialize)]
|
|
pub enum InstigatingSource {
|
|
Path(#[serde(serialize_with = "path_serializer::serialize_absolute")] PathBuf),
|
|
ProjectNode(
|
|
#[serde(serialize_with = "path_serializer::serialize_absolute")] PathBuf,
|
|
String,
|
|
ProjectNode,
|
|
Option<String>,
|
|
),
|
|
}
|
|
|
|
impl fmt::Debug for InstigatingSource {
|
|
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
match self {
|
|
InstigatingSource::Path(path) => write!(formatter, "Path({})", path.display()),
|
|
InstigatingSource::ProjectNode(path, name, node, parent_class) => write!(
|
|
formatter,
|
|
"ProjectNode({}: {:?}) from path {} and parent class {:?}",
|
|
name,
|
|
node,
|
|
path.display(),
|
|
parent_class,
|
|
),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<PathBuf> for InstigatingSource {
|
|
fn from(path: PathBuf) -> Self {
|
|
InstigatingSource::Path(path)
|
|
}
|
|
}
|
|
|
|
impl From<&Path> for InstigatingSource {
|
|
fn from(path: &Path) -> Self {
|
|
InstigatingSource::Path(path.to_path_buf())
|
|
}
|
|
}
|
|
|
|
/// Represents an user-specified rule for transforming files
|
|
/// into Instances using a given middleware.
|
|
#[derive(Debug, Deserialize, Serialize, Clone, PartialEq)]
|
|
pub struct SyncRule {
|
|
/// A pattern used to determine if a file is included in this SyncRule
|
|
#[serde(rename = "pattern")]
|
|
pub include: Glob,
|
|
/// A pattern used to determine if a file is excluded from this SyncRule.
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub exclude: Option<Glob>,
|
|
/// The middleware specified by the user for this SyncRule
|
|
#[serde(rename = "use")]
|
|
pub middleware: Middleware,
|
|
/// A suffix to trim off of file names, including the file extension.
|
|
/// If not specified, the file extension is the only thing cut off.
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub suffix: Option<String>,
|
|
/// The 'base' of the glob above, allowing it to be used
|
|
/// relative to a path instead of absolute.
|
|
#[serde(skip)]
|
|
pub base_path: PathBuf,
|
|
}
|
|
|
|
impl SyncRule {
|
|
/// Returns whether the given path matches this rule.
|
|
pub fn matches(&self, path: &Path) -> bool {
|
|
match path.strip_prefix(&self.base_path) {
|
|
Ok(suffix) => {
|
|
if let Some(pattern) = &self.exclude {
|
|
if pattern.is_match(suffix) {
|
|
return false;
|
|
}
|
|
}
|
|
self.include.is_match(suffix)
|
|
}
|
|
Err(_) => false,
|
|
}
|
|
}
|
|
|
|
pub fn file_name_for_path<'a>(&self, path: &'a Path) -> anyhow::Result<&'a str> {
|
|
if let Some(suffix) = &self.suffix {
|
|
let file_name = path
|
|
.file_name()
|
|
.and_then(|s| s.to_str())
|
|
.with_context(|| format!("file name of {} is invalid", path.display()))?;
|
|
if file_name.ends_with(suffix) {
|
|
let end = file_name.len().saturating_sub(suffix.len());
|
|
Ok(&file_name[..end])
|
|
} else {
|
|
Ok(file_name)
|
|
}
|
|
} else {
|
|
// If the user doesn't specify a suffix, we assume they just want
|
|
// the name of the file (the file_stem)
|
|
path.file_stem()
|
|
.and_then(|s| s.to_str())
|
|
.with_context(|| format!("file name of {} is invalid", path.display()))
|
|
}
|
|
}
|
|
}
|