mutagen

package module
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 17, 2017 License: MIT Imports: 3 Imported by: 0

README

Mutagen

Mutagen is a cross-platform, continuous, bidirectional file synchronization utility designed to be simple, robust, and performant. It can operate locally or over SSH.

Warning: Mutagen is a very powerful tool that is still in early beta. It has known issues and will almost certainly have unknown issues. It should not be used on production or mission-critical systems. Use on any system is at your own risk (please see the license).

Status

Windows macOS/Linux Code coverage Report card
Windows macOS/Linux Code coverage Report card

Usage

For usage information, please see the documentation site. For platform-specific instructions and known issues, please see the platform guide.

FAQs

Please see the FAQ.

Unique features

Rather than provide a heavily biased feature comparison table, I'll just point out what I consider to be the unique and compelling features of Mutagen. Astute readers with knowledge of the file synchronization landscape can draw their own conclusions. I'd recommend users read this list so they know what they're getting.

  • Mutagen is a user-space utility, not requiring any kernel extensions or administrative permissions to use.
  • Mutagen only needs to be installed on the computer where you want to control synchronization. Mutagen comes with a broad range of small, cross-compiled "agent" binaries that it automatically copies to remote endpoints as necessary. Most major platforms and architectures are supported.
  • Mutagen propagates changes bidirectionally. Any conflicts that arise will be flagged for resolution. Automatic conflict resolution is performed if doing so does not result in destruction of unsynchronized changes. Manual conflict resolution is performed by manually deleting the undesired side of the conflict. Conflicts won't stop non-conflicting changes from propagating.
  • Mutagen uses the rsync algorithm to perform differential file transfers. These transfers are pipelined to mitigate the effects of latency. It stages files outside of the synchronization root and relocates them atomically.
  • Mutagen is designed to handle very large directory hierarchies efficiently. It uses rsync to transfer directory snapshots when performing reconciliation so that snapshot transfer time doesn't scale linearly with directory size.
  • Mutagen is robust to connection drop-outs. It will attempt to reconnect automatically to endpoints and will resume synchronization safely. It will also resume staging files where it left off.
  • Mutagen identifies changes to file contents rather than just modification times.
  • On systems that support recursive file monitoring (Windows and macOS), Mutagen effeciently watches synchronization roots for changes. Other systems currently use regular and efficient polling out of a desire to support very large directory hierarchies that might exhaust watch and file descriptors, but support for watching small directories on these systems isn't ruled out.
  • Mutagen is agnostic of the transport to endpoints - all it requires is a byte stream to each endpoint. Support is currently built-in for local and SSH-based synchronization, but support for other remote types can easily be added. As a corollary, Mutagen can even synchronize between two remote endpoints without ever needing a local copy of the files.
  • Mutagen can display dynamic synchronization status in the terminal.
  • Mutagen does not propagate (most) permissions, but it does preserve permissions when updating files. The only permission propagated by Mutagen is executability or lack thereof. Any other permissions are left untouched for existing files and set to user-only access for newly created files. This is by design, since Mutagen's raison d'être is remote code editing and mirroring. Nothing in the current Mutagen design precludes adding permission propagation in the future.
  • Mutagen attempts to handle quirks by default, e.g. dealing with case-(in)sensitivity, HFS's pseudo-NFD Unicode normalization, systems that don't support executability bits, or file names that might create NTFS alternate data streams.

You might have surmised that Mutagen's closest cousin is the Unison file synchronization tool. This tool has existed for ages, and while it is very good at what it does, it didn't quite fit my needs. In particular, it has a lot of knobs to turn, puts a lot of focus on transferring permissions (which can cause even more headache), and requires installation on both ends of the connection. I wanted something simpler, a bit more performant, and just a bit more modern (the fact that Unison is written in rather terse OCaml also makes it a bit difficult to extend or support on more obscure platforms and architectures).

Building

Please see the build instructions.

Documentation

Index

Constants

View Source
const (
	// VersionMajor represents the current major version of Mutagen.
	VersionMajor = 0
	// VersionMinor represents the current minor version of Mutagen.
	VersionMinor = 2
	// VersionPatch represents the current patch version of Mutagen.
	VersionPatch = 0
)
View Source
const LegalNotice = `` /* 16817-byte string literal not displayed */

LegalNotice provides license notices for Mutagen itself and any third-party dependencies.

Variables

View Source
var Version string

Functions

func ReceiveAndCompareVersion

func ReceiveAndCompareVersion(reader io.Reader) (bool, error)

func ReceiveVersion

func ReceiveVersion(reader io.Reader) (uint32, uint32, uint32, error)

func SendVersion

func SendVersion(writer io.Writer) error

Types

This section is empty.

Directories

Path Synopsis
cmd
examples
Package rsync provides an implementation of the rsync algorithm as described in Andrew Tridgell's thesis (https://www.samba.org/~tridge/phd_thesis.pdf) and the rsync technical report (https://rsync.samba.org/tech_report).
Package rsync provides an implementation of the rsync algorithm as described in Andrew Tridgell's thesis (https://www.samba.org/~tridge/phd_thesis.pdf) and the rsync technical report (https://rsync.samba.org/tech_report).
Package session is a generated protocol buffer package.
Package session is a generated protocol buffer package.
Package sync is a generated protocol buffer package.
Package sync is a generated protocol buffer package.
Package url is a generated protocol buffer package.
Package url is a generated protocol buffer package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL