Files
kopia/cli/command_mount.go
Jarek Kowalski d2288c443f cli: major refactoring (#1046)
cli: major refactoring of how CLI commands are registered

The goal is to eliminate flags as global variables to allow for better
testing. Each command and subcommand and most sets of flags are now
their own struct with 'setup()' methods that attached the flags or
subcommand to the provided parent.

This change is 94.3% mechanical, but is fully organic and hand-made.

* introduced cli.appServices interface which provides the environment in which commands run
* remove auto-maintenance global flag
* removed globals in memory_tracking.go
* removed globals from cli_progress.go
* removed globals from the update_check.go
* moved configPath into TheApp
* removed remaining globals from config.go
* refactored logfile to get rid of global variables
* removed 'app' global variable
* linter fixes
* fixed password_*.go build
* fixed BSD build
2021-05-03 10:28:00 -07:00

126 lines
4.0 KiB
Go

package cli
import (
"context"
"github.com/pkg/errors"
"github.com/skratchdot/open-golang/open"
"github.com/kopia/kopia/fs"
"github.com/kopia/kopia/fs/cachefs"
"github.com/kopia/kopia/fs/loggingfs"
"github.com/kopia/kopia/internal/mount"
"github.com/kopia/kopia/repo"
"github.com/kopia/kopia/snapshot/snapshotfs"
)
type commandMount struct {
mountObjectID string
mountPoint string
mountPointBrowse bool
mountTraceFS bool
mountFuseAllowOther bool
mountFuseAllowNonEmptyMount bool
mountPreferWebDAV bool
maxCachedEntries int
maxCachedDirectories int
}
func (c *commandMount) setup(svc appServices, parent commandParent) {
cmd := parent.Command("mount", "Mount repository object as a local filesystem.")
cmd.Arg("path", "Identifier of the directory to mount.").Default("all").StringVar(&c.mountObjectID)
cmd.Arg("mountPoint", "Mount point").Default("*").StringVar(&c.mountPoint)
cmd.Flag("browse", "Open file browser").BoolVar(&c.mountPointBrowse)
cmd.Flag("trace-fs", "Trace filesystem operations").BoolVar(&c.mountTraceFS)
cmd.Flag("fuse-allow-other", "Allows other users to access the file system.").BoolVar(&c.mountFuseAllowOther)
cmd.Flag("fuse-allow-non-empty-mount", "Allows the mounting over a non-empty directory. The files in it will be shadowed by the freshly created mount.").BoolVar(&c.mountFuseAllowNonEmptyMount)
cmd.Flag("webdav", "Use WebDAV to mount the repository object regardless of fuse availability.").BoolVar(&c.mountPreferWebDAV)
cmd.Flag("max-cached-entries", "Limit the number of cached directory entries").Default("100000").IntVar(&c.maxCachedEntries)
cmd.Flag("max-cached-dirs", "Limit the number of cached directories").Default("100").IntVar(&c.maxCachedDirectories)
cmd.Action(svc.repositoryReaderAction(c.run))
}
func (c *commandMount) newFSCache() cachefs.DirectoryCacher {
return cachefs.NewCache(&cachefs.Options{
MaxCachedDirectories: c.maxCachedDirectories,
MaxCachedEntries: c.maxCachedEntries,
})
}
func (c *commandMount) run(ctx context.Context, rep repo.Repository) error {
var entry fs.Directory
if c.mountObjectID == "all" {
entry = snapshotfs.AllSourcesEntry(rep)
} else {
var err error
entry, err = snapshotfs.FilesystemDirectoryFromIDWithPath(ctx, rep, c.mountObjectID, false)
if err != nil {
return errors.Wrapf(err, "unable to get directory entry for %v", c.mountObjectID)
}
}
if c.mountTraceFS {
entry = loggingfs.Wrap(entry, log(ctx).Debugf).(fs.Directory)
}
entry = cachefs.Wrap(entry, c.newFSCache()).(fs.Directory)
ctrl, mountErr := mount.Directory(ctx, entry, c.mountPoint,
mount.Options{
FuseAllowOther: c.mountFuseAllowOther,
FuseAllowNonEmptyMount: c.mountFuseAllowNonEmptyMount,
PreferWebDAV: c.mountPreferWebDAV,
})
if mountErr != nil {
return errors.Wrap(mountErr, "mount error")
}
log(ctx).Infof("Mounted '%v' on %v", c.mountObjectID, ctrl.MountPath())
if c.mountPoint == "*" && !c.mountPointBrowse {
log(ctx).Infof("HINT: Pass --browse to automatically open file browser.")
}
log(ctx).Infof("Press Ctrl-C to unmount.")
if c.mountPointBrowse {
if err := open.Start(ctrl.MountPath()); err != nil {
log(ctx).Errorf("unable to browse %v", err)
}
}
// Wait until ctrl-c pressed or until the directory is unmounted.
ctrlCPressed := make(chan bool)
onCtrlC(func() {
close(ctrlCPressed)
})
select {
case <-ctrlCPressed:
log(ctx).Infof("Unmounting...")
// TODO: Consider lazy unmounting (-z) and polling till the filesystem is unmounted instead of failing with:
// "unmount error: exit status 1: fusermount: failed to unmount /tmp/kopia-mount719819963: Device or resource busy, try --help"
err := ctrl.Unmount(ctx)
if err != nil {
return errors.Wrap(err, "unmount error")
}
case <-ctrl.Done():
log(ctx).Infof("Unmounted.")
return nil
}
// Reporting clean unmount in case of interrupt signal.
<-ctrl.Done()
log(ctx).Infof("Unmounted.")
return nil
}