1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862
use std::{
os::unix::prelude::PermissionsExt,
path::{Path, PathBuf},
rc::Rc,
};
use path_clean::PathClean;
use url::Url;
use crate::{
config::{Group, LocalGroup, RenamingRule, SyncMethod},
error::{Error as AppError, Result},
registry::Register,
utils,
};
/// Defines shared behaviours for an item (a path to a file) used in [DT].
///
/// [DT]: https://github.com/blurgyy/dt
#[allow(unused_variables)]
pub trait Operate
where
Self: Sized,
{
/// Checks if the item is for another machine.
fn is_for_other_host(&self, hostname_sep: &str) -> bool {
unimplemented!()
}
/// Gets the absolute location of `self`, if applicable.
fn absolute(self) -> Result<Self> {
unimplemented!()
}
/// Gets the host-specific counterpart of `self`, if applicable. If
/// `self` is already host-specific, returns `self` directly.
fn host_specific(self, hostname_sep: &str) -> Self {
unimplemented!()
}
/// Gets the non-host-specific counterpart of `self`, if applicable. If
/// `self` is already non-host-specific, returns `self` directly.
fn non_host_specific(self, hostname_sep: &str) -> Self {
unimplemented!()
}
/// Gets the nearest existing parent component of `self`.
fn nearest_existing_parent(&self) -> Self {
unimplemented!()
}
/// Checks whether any of the component above `self` is readonly.
fn is_parent_readonly(&self) -> bool {
unimplemented!()
}
/// Checks whether any component of `self`'s parent is not a directory.
fn has_file_as_parent(&self) -> bool {
unimplemented!()
}
/// Checks whether any of the component refernces its parent.
fn is_twisted(&self) -> bool {
unimplemented!()
}
/// Given a `hostname_sep`, a `base`, a `targetbase`, and optionally a
/// list of [renaming rule]s, creates the path where `self` would be
/// synced to. Renaming rules are applied after host-specific suffixes
/// are stripped.
fn make_target<P>(
self,
hostname_sep: &str,
base: &Self,
targetbase: P,
renaming_rules: Vec<RenamingRule>,
) -> Result<Self>
where
P: AsRef<Path>,
{
unimplemented!()
}
/// Renders this item with given context to the `dest` path.
fn get_content<R: Register, O: Operate>(
&self,
registry: &Rc<R>,
group: &Rc<Group<O>>,
) -> Result<Vec<u8>> {
unimplemented!()
}
/// Populate this item with given group config. The given group config is
/// expected to be the group where this item belongs to.
fn populate<T: Register>(
&self,
group: Rc<Group<Self>>,
registry: Rc<T>,
) -> Result<()> {
unimplemented!()
}
/// Show what is to be done if this item is to be populated with given
/// group config. The given group config is expected to be the group
/// where this item belongs to.
fn populate_dry(&self, group: Rc<LocalGroup>) -> Result<()> {
unimplemented!()
}
}
impl Operate for PathBuf {
/// Checks if the item is for another machine (by checking its name).
///
/// A host-specific item is considered for another machine, when its
/// filename contains only 1 [`hostname_sep`], and after the
/// [`hostname_sep`] should not be current machine's hostname.
///
/// A non-host-specific item is always considered **not** for another
/// machine (because it is non-host-specific, i.e. for all machines).
///
/// An item with filename containing more than 1 [`hostname_sep`] causes
/// this function to panic.
///
/// [`hostname_sep`]: crate::config::GlobalConfig::hostname_sep
fn is_for_other_host(&self, hostname_sep: &str) -> bool {
let filename = self
.file_name()
.unwrap_or_else(|| {
panic!(
"Failed extracting file name from path '{}'",
self.display(),
)
})
.to_str()
.unwrap_or_else(|| {
panic!(
"Failed converting &OsStr to &str for path '{}'",
self.display(),
)
});
let splitted: Vec<_> = filename.split(hostname_sep).collect();
assert!(
splitted.len() <= 2,
"There appears to be more than 1 occurrences of hostname_sep ({}) in this path: {}",
hostname_sep,
self.display(),
);
assert!(
!splitted.first().unwrap().is_empty(),
"hostname_sep ({}) appears to be a prefix of this path: {}",
hostname_sep,
self.display(),
);
splitted.len() > 1
&& *splitted.last().unwrap()
!= gethostname::gethostname().to_string_lossy()
}
/// Gets the absolute path of `self`, **without** traversing symlinks.
///
/// Reference: <https://stackoverflow.com/a/54817755/13482274>
fn absolute(self) -> Result<Self> {
let absolute_path = if self.is_absolute() {
self.to_owned()
} else {
std::env::current_dir()?.join(self)
}
.clean();
Ok(absolute_path)
}
/// Gets the host-specific counterpart of `self`. If `self` is already
/// host-specific, returns `self` directly.
fn host_specific(self, hostname_sep: &str) -> Self {
if self.ends_with(utils::host_specific_suffix(hostname_sep)) {
self.into()
} else {
let hs_filename = self
.file_name()
.unwrap_or_else(|| {
panic!(
"Failed extracting file name from path '{}'",
self.display(),
)
})
.to_str()
.unwrap_or_else(|| {
panic!(
"Failed converting &OsStr to &str for path: '{}'",
self.display(),
)
})
.to_owned()
+ &utils::host_specific_suffix(hostname_sep);
self.with_file_name(hs_filename)
}
}
/// Converts a path to a non-host-specific path. If the input path is
/// already non-host-specific, returns itself; Otherwise returns a
/// path where _every component_ of the path is converted to a
/// non-host-specific one.
///
/// # Example
///
/// ```rust
/// # use dt_core::item::Operate;
/// # use std::path::PathBuf;
/// # use std::str::FromStr;
/// let itm: PathBuf = "/some/long/path".into();
/// assert_eq!(
/// itm.non_host_specific("@@"),
/// PathBuf::from_str("/some/long/path").unwrap(),
/// );
///
/// let itm: PathBuf = "/some@@john/long/path@@watson".into();
/// assert_eq!(
/// itm.non_host_specific("@@"),
/// PathBuf::from_str("/some/long/path").unwrap(),
/// );
/// ```
fn non_host_specific(self, hostname_sep: &str) -> Self {
self
.iter()
.map(std::ffi::OsStr::to_str)
.map(|s| {
s.unwrap_or_else(|| {
panic!(
"Failed extracting path components from '{}'",
self.display(),
)
})
})
.map(|s| {
s.split(hostname_sep)
.collect::<Vec<_>>()
.first()
.unwrap_or_else(|| {
panic!(
"Failed extracting basename from component '{}' of path '{}'",
s,
self.display(),
)
})
.to_owned()
})
.collect::<PathBuf>()
}
/// Gets the nearest existing parent component of `self`.
fn nearest_existing_parent(&self) -> Self {
let mut p: &Path = self.as_ref();
let p = loop {
if p.exists() {
break p;
}
p = p.parent().unwrap();
};
p.into()
}
/// Checks whether any of the component above `self` is readonly.
fn is_parent_readonly(&self) -> bool {
self.nearest_existing_parent()
.metadata()
.unwrap()
.permissions()
.readonly()
}
/// Checks whether any component of `self`'s parent is not a directory.
fn has_file_as_parent(&self) -> bool {
self.nearest_existing_parent().metadata().unwrap().is_file()
}
/// Checks whether any of the component refernces its parent.
fn is_twisted(&self) -> bool {
self.iter().any(|comp| comp == "..")
}
/// Given a `hostname_sep`, a `base`, a `targetbase`, and optionally a
/// list of [renaming rule]s, create the path where `self` would be synced
/// to. Renaming rules are applied after host-specific suffixes are
/// stripped.
///
/// # Example
///
/// ## No renaming rule
///
/// ```rust
/// # use dt_core::{
/// # config::RenamingRule,
/// # error::Error as AppError,
/// # item::Operate
/// # };
/// # use std::path::PathBuf;
/// # use std::str::FromStr;
/// let itm: PathBuf = "/path/to/source@@john/item".into();
/// let base: PathBuf = "/path/to/source".into();
/// let targetbase: PathBuf = "/path/to/target".into();
///
/// assert_eq!(
/// itm.make_target("@@", &base, &targetbase, vec![])?,
/// PathBuf::from_str("/path/to/target/item").unwrap(),
/// );
/// # Ok::<(), AppError>(())
/// ```
///
/// ## Single renaming rule
///
/// ```rust
/// # use dt_core::{
/// # config::RenamingRule,
/// # error::Error as AppError,
/// # item::Operate
/// # };
/// # use std::path::PathBuf;
/// # use std::str::FromStr;
/// let itm: PathBuf = "/path/to/source@@john/_dot_item".into();
/// let base: PathBuf = "/path/to/source".into();
/// let targetbase: PathBuf = "/path/to/target".into();
/// let rules = vec![
/// RenamingRule{
/// pattern: regex::Regex::new("^_dot_").unwrap(),
/// substitution: ".".into(),
/// },
/// ];
///
/// assert_eq!(
/// itm.make_target("@@", &base, &targetbase, rules)?,
/// PathBuf::from_str("/path/to/target/.item").unwrap(),
/// );
/// # Ok::<(), AppError>(())
/// ```
///
/// ## Multiple renaming rules
///
/// When multiple renaming rules are supplied, they are applied one after
/// another.
///
/// ```rust
/// # use dt_core::{
/// # config::RenamingRule,
/// # error::Error as AppError,
/// # item::Operate
/// # };
/// # use std::path::PathBuf;
/// # use std::str::FromStr;
/// let itm: PathBuf = "/path/to/source@@john/_dot_item.ext".into();
/// let base: PathBuf = "/path/to/source".into();
/// let targetbase: PathBuf = "/path/to/target".into();
/// let rules = vec![
/// RenamingRule{
/// pattern: regex::Regex::new("^_dot_").unwrap(),
/// substitution: ".".into(),
/// },
/// RenamingRule{
/// pattern: regex::Regex::new("^.").unwrap(),
/// substitution: "_dotted_".into(),
/// },
/// ];
///
/// assert_eq!(
/// itm.make_target("@@", &base, &targetbase, rules)?,
/// PathBuf::from_str("/path/to/target/_dotted_item.ext").unwrap(),
/// );
/// # Ok::<(), AppError>(())
/// ```
///
/// ## Capture groups
///
/// ```rust
/// # use dt_core::{
/// # config::RenamingRule,
/// # error::Error as AppError,
/// # item::Operate
/// # };
/// # use std::path::PathBuf;
/// # use std::str::FromStr;
/// let itm: PathBuf = "/path/to/source@@john/_dot_item.ext".into();
/// let base: PathBuf = "/path/to/source".into();
/// let targetbase: PathBuf = "/path/to/target".into();
///
/// let named_capture = RenamingRule{
/// // Named capture group, captures "dot" into a group with name
/// // "prefix".
/// pattern: regex::Regex::new("^_(?P<prefix>.*)_").unwrap(),
/// substitution: ".${prefix}.".into(),
/// };
/// assert_eq!(
/// itm.to_owned().make_target(
/// "@@",
/// &base,
/// &targetbase,
/// vec![named_capture]
/// )?,
/// PathBuf::from_str("/path/to/target/.dot.item.ext").unwrap(),
/// );
///
/// let numbered_capture = RenamingRule{
/// // Numbered capture group, where `${0}` references the whole match,
/// // other groups are indexed from 1.
/// pattern: regex::Regex::new(r#"\.(.*?)$"#).unwrap(),
/// substitution: "_${1}_${0}".into(),
/// };
/// assert_eq!(
/// itm.to_owned().make_target(
/// "@@",
/// &base,
/// &targetbase,
/// vec![numbered_capture]
/// )?,
/// PathBuf::from_str("/path/to/target/_dot_item_ext_.ext").unwrap(),
/// );
/// # Ok::<(), AppError>(())
/// ```
///
/// [renaming rule]: crate::config::RenamingRule
fn make_target<P: AsRef<Path>>(
self,
hostname_sep: &str,
base: &Self,
targetbase: P,
renaming_rules: Vec<RenamingRule>,
) -> Result<Self> {
// Get non-host-specific counterpart of `self`
let nhself = self.to_owned().non_host_specific(hostname_sep);
// Get non-host-specific counterpart of `base`
let base = base.to_owned().non_host_specific(hostname_sep);
// The tail of the target path, which is the non-host-specific `self`
// without its `base` prefix path
let mut tail = nhself.strip_prefix(base)?.to_owned();
// Apply renaming rules to the tail component
for rr in renaming_rules {
log::trace!("Processing renaming rule: {:#?}", rr);
log::debug!("Before renaming: '{}'", tail.display());
let RenamingRule {
pattern,
substitution,
} = rr;
tail = tail
.iter()
.map(|comp| {
pattern
.replace(&comp.to_string_lossy(), &substitution)
.into_owned()
})
.collect();
log::debug!("After renaming: '{}'", tail.display());
}
// The target is the target base appended with `tail`
Ok(targetbase.as_ref().join(tail))
}
fn get_content<R: Register, O: Operate>(
&self,
registry: &Rc<R>,
group: &Rc<Group<O>>,
) -> Result<Vec<u8>> {
let name = self.to_string_lossy();
if group.is_templated() {
registry.get(&name)
} else {
Ok(std::fs::read(self)?)
}
}
/// Populate this item with given group config. The given group config is
/// expected to be the group where this item belongs to.
fn populate<T: Register>(
&self,
group: Rc<LocalGroup>,
registry: Rc<T>,
) -> Result<()> {
// Create possibly missing parent directories along target's path.
let tpath = self.to_owned().make_target(
&group.get_hostname_sep(),
&group.base,
&group.target,
group.get_renaming_rules(),
)?;
let tparent = tpath.parent().unwrap().to_owned();
if tparent.has_file_as_parent() {
return Err(AppError::PathError(format!(
"target path's parent '{}' contains one or more file components thus can not be created as a directory",
tparent.display()
)));
}
std::fs::create_dir_all(tparent)?;
if group.target.canonicalize()? == group.base.canonicalize()? {
return Err(AppError::PathError(format!(
"base directory and its target point to the same path in group '{}'",
group.name,
)));
}
match group.get_method() {
SyncMethod::Copy => {
// `self` is _always_ a file. If its target path `tpath` is a
// directory, we should return an error.
if tpath.is_dir() {
return Err(
AppError::SyncingError(format!(
"a directory '{}' exists at the target path of a source file '{}'",
tpath.display(),
self.display(),
))
);
}
if tpath.is_symlink() {
log::debug!(
"SYNC::COPY [{}]> '{}' is a symlink, removing it",
group.name,
tpath.display(),
);
std::fs::remove_file(&tpath)?;
}
// Get content of this item
let src_content: Vec<u8> =
self.get_content(®istry, &group)?;
if let Ok(dest_content) = std::fs::read(&tpath) {
// Check target file's contents, if it has identical
// contents as self, there is no need to write to it.
if src_content == dest_content {
log::debug!(
"SYNC::COPY::SKIP [{}]> '{}' has identical content as '{}'",
group.name,
tpath.display(),
self.display(),
);
} else if std::fs::write(&tpath, &src_content).is_err() {
// Contents of target file differs from content of
// self, but writing to it failed. It might be due to
// target file being readonly. Attempt to remove it
// and try again.
log::warn!(
"SYNC::COPY::OVERWRITE [{}]> '{}' seems to be readonly, trying to remove it first ..",
group.name,
tpath.display(),
);
std::fs::remove_file(&tpath)?;
log::debug!(
"SYNC::COPY::OVERWRITE [{}]> '{}' => '{}'",
group.name,
self.display(),
tpath.display(),
);
std::fs::write(&tpath, src_content)?;
}
} else if tpath.exists() {
// If read of target file failed but it does exist, then
// the target file is probably unreadable. Attempt to
// remove it first, then write contents to `tpath`.
log::warn!(
"SYNC::COPY::OVERWRITE [{}]> Could not read content of target file ('{}'), trying to remove it first ..",
group.name,
tpath.display(),
);
std::fs::remove_file(&tpath)?;
log::debug!(
"SYNC::COPY::OVERWRITE [{}]> '{}' => '{}'",
group.name,
self.display(),
tpath.display(),
);
std::fs::write(&tpath, src_content)?;
}
// If the target file does not exist --- this is the simplest
// case --- we just write the contents to `tpath`.
else {
log::debug!(
"SYNC::COPY [{}]> '{}' => '{}'",
group.name,
self.display(),
tpath.display(),
);
std::fs::write(&tpath, src_content)?;
}
// Copy permissions to target if permission bits do not match.
let src_perm = self.metadata()?.permissions();
let dest_perm = tpath.metadata()?.permissions();
if dest_perm != src_perm {
log::debug!(
"SYNC::COPY::SETPERM [{}]> source('{:o}') => target('{:o}')",
group.name,
src_perm.mode(),
dest_perm.mode()
);
if let Err(e) = std::fs::set_permissions(tpath, src_perm)
{
log::warn!(
"'{}': Could not set permission: {}",
self.display(),
e,
);
}
}
}
SyncMethod::Symlink => {
let staging_path = self.to_owned().make_target(
&group.get_hostname_sep(),
&group.base,
&group.get_staging_dir(),
Vec::new(), // Do not apply renaming on staging path
)?;
let sparent = staging_path.parent().unwrap().to_owned();
if sparent.has_file_as_parent() {
return Err(AppError::PathError(format!(
"staging path's parent '{}' contains one or more file component thus can not be created as a directory",
sparent.display()
)));
}
std::fs::create_dir_all(sparent)?;
if group.global.staging.0.canonicalize()?
== group.base.canonicalize()?
{
return Err(AppError::PathError(format!(
"base directory and its target point to the same path in group '{}'",
group.name,
)));
}
if group.global.staging.0.canonicalize()?
== group.target.canonicalize()?
{
return Err(AppError::PathError(format!(
"target directory and staging directory point to the same path in group '{}'",
group.name,
)));
}
// `self` is _always_ a file. If its target path `tpath` is a
// directory, we should return an error.
if tpath.is_dir() {
return Err(
AppError::SyncingError(format!(
"a directory '{}' exists at the target path of a source file '{}'",
tpath.display(),
self.display(),
))
);
}
if tpath.exists() && !group.is_overwrite_allowed() {
log::warn!(
"SYNC::SKIP [{}]> Target path ('{}') exists while `allow_overwrite` is set to false",
group.name,
tpath.display(),
);
} else {
// In this block, either:
//
// - `tpath` does not exist
// - `allow_overwrite` is true
//
// or both are true.
//
// 1. Staging:
//
// Check if the content of destination is already the
// same as source first. When the file is large, this
// operation is significantly faster than copying to an
// existing target file.
// Get content of this item
let src_content: Vec<u8> =
self.get_content(®istry, &group)?;
if let Ok(dest_content) = std::fs::read(&staging_path) {
// Check staging file's contents, if it has identical
// contents as self, there is no need to write to it.
if src_content == dest_content {
log::debug!(
"SYNC::STAGE::SKIP [{}]> '{}' has identical content as '{}'",
group.name,
staging_path.display(),
self.display(),
);
} else if std::fs::write(&staging_path, &src_content)
.is_err()
{
// Contents of staging file differs from content
// of self, but writing to it failed. It might be
// due to staging file being readonly. Attempt to
// remove it and try again.
log::warn!(
"SYNC::STAGE::OVERWRITE [{}]> '{}' seems to be readonly, trying to remove it first ..",
group.name,
staging_path.display(),
);
std::fs::remove_file(&staging_path)?;
log::debug!(
"SYNC::STAGE [{}]> '{}' => '{}'",
group.name,
self.display(),
staging_path.display(),
);
std::fs::write(&staging_path, src_content)?;
}
} else if staging_path.exists() {
// If read of staging file failed but it does exist,
// then the staging file is probably unreadable.
// Attempt to remove it first, then write contents to
// `staging_path`.
log::warn!(
"SYNC::STAGE::OVERWRITE [{}]> Could not read content of staging file ('{}'), trying to remove it first ..",
group.name,
staging_path.display(),
);
std::fs::remove_file(&staging_path)?;
log::debug!(
"SYNC::STAGE::OVERWRITE [{}]> '{}' => '{}'",
group.name,
self.display(),
staging_path.display(),
);
std::fs::write(&staging_path, src_content)?;
}
// If the staging file does not exist --- this is the
// simplest case --- we just write the contents to
// `staging_path`.
else {
log::debug!(
"SYNC::STAGE [{}]> '{}' => '{}'",
group.name,
self.display(),
staging_path.display(),
);
std::fs::write(&staging_path, src_content)?;
}
// Copy permissions to staging file if permission bits do
// not match.
let src_perm = self.metadata()?.permissions();
let dest_perm = staging_path.metadata()?.permissions();
if dest_perm != src_perm {
log::debug!(
"SYNC::STAGE::SETPERM [{}]> source('{:o}') => staging('{:o}')",
group.name,
src_perm.mode(),
dest_perm.mode()
);
if let Err(e) =
std::fs::set_permissions(&staging_path, src_perm)
{
log::warn!(
"'{}': Could not set permission: {}",
self.display(),
e,
);
}
}
// 2. Symlinking
//
// Do not remove target file if it is already a symlink
// that points to the correct location.
if let Ok(dest) = std::fs::read_link(&tpath) {
if dest == staging_path {
log::debug!(
"SYNC::SYMLINK::SKIP [{}]> '{}' is already a symlink pointing to '{}'",
group.name,
tpath.display(),
staging_path.display(),
);
} else {
log::debug!(
"SYNC::SYMLINK::OVERWRITE [{}]> '{}' => '{}'",
group.name,
staging_path.display(),
tpath.display(),
);
std::fs::remove_file(&tpath)?;
std::os::unix::fs::symlink(
&staging_path,
&tpath,
)?;
}
}
// If target file exists but is not a symlink, try to
// remove it first, then make a symlink from
// `staging_path` to `tpath`.
else if tpath.exists() {
log::debug!(
"SYNC::SYMLINK::OVERWRITE [{}]> '{}' => '{}'",
group.name,
staging_path.display(),
tpath.display(),
);
std::fs::remove_file(&tpath)?;
std::os::unix::fs::symlink(&staging_path, &tpath)?;
}
// The final case is that when `tpath` does not exist
// yet, we can then directly create a symlink.
else {
log::debug!(
"SYNC::SYMLINK [{}]> '{}' => '{}'",
group.name,
staging_path.display(),
tpath.display(),
);
std::os::unix::fs::symlink(&staging_path, &tpath)?;
}
}
}
}
Ok(())
}
/// Show what is to be done if this item is to be populated with given
/// group config. The given group config is expected to be the group
/// where this item belongs to.
fn populate_dry(&self, group: Rc<LocalGroup>) -> Result<()> {
let tpath = self.to_owned().make_target(
&group.get_hostname_sep(),
&group.base,
&group.target,
group.get_renaming_rules(),
)?;
if tpath.exists() {
if group.is_overwrite_allowed() {
if tpath.is_dir() {
log::error!(
"DRYRUN [{}]> A directory ('{}') exists at the target path of a source file ('{}')",
group.name,
tpath.display(),
self.display(),
);
} else {
log::debug!(
"DRYRUN [{}]> '{}' -> '{}'",
group.name,
self.display(),
tpath.display(),
);
}
} else {
log::error!(
"DRYRUN [{}]> Target path ('{}') exists while `allow_overwrite` is set to false",
group.name,
tpath.display(),
);
}
} else {
log::debug!(
"DRYRUN [{}]> '{}' -> '{}'",
group.name,
self.display(),
tpath.display(),
);
}
Ok(())
}
}
impl Operate for Url {}
// Author: Blurgy <gy@blurgy.xyz>
// Date: Oct 29 2021, 22:56 [CST]