// Start the filesystem func Start(mounter Mounter, options StartOptions) *Error { c, err := mounter.Mount() if err != nil { return MountError(err.Error()) } defer c.Close() onInterruptFn := func() { select { case <-c.Ready: // Was mounted, so try to unmount if it was successful. if c.MountError == nil { err = mounter.Unmount() if err != nil { return } } default: // Was not mounted successfully yet, so do nothing. Note that the mount // could still happen, but that's a rare enough edge case. } } log := logger.NewWithCallDepth("", 1, os.Stderr) log.Info("KBFS version %s", libkbfs.VersionString()) config, err := libkbfs.Init(options.KbfsParams, onInterruptFn, log) if err != nil { return InitError(err.Error()) } defer libkbfs.Shutdown(options.KbfsParams.MemProfile) if options.RuntimeDir != "" { info := libkb.NewServiceInfo(libkbfs.Version, libkbfs.Build(), options.Label, os.Getpid()) err = info.WriteFile(path.Join(options.RuntimeDir, "kbfs.info")) if err != nil { return InitError(err.Error()) } } fs := NewFS(config, c, options.KbfsParams.Debug) ctx := context.WithValue(context.Background(), CtxAppIDKey, fs) logTags := make(logger.CtxLogTags) logTags[CtxIDKey] = CtxOpID ctx = logger.NewContextWithLogTags(ctx, logTags) fs.Serve(ctx) <-c.Ready err = c.MountError if err != nil { return MountError(err.Error()) } return nil }
// Start the filesystem func Start(mounter Mounter, options StartOptions) *libfs.Error { // InitLog errors are non-fatal and are ignored. log, _ := libkbfs.InitLog(options.KbfsParams) if options.RuntimeDir != "" { info := libkb.NewServiceInfo(libkbfs.Version, libkbfs.PrereleaseBuild, options.Label, os.Getpid()) err := info.WriteFile(path.Join(options.RuntimeDir, "kbfs.info")) if err != nil { return libfs.InitError(err.Error()) } } log.Debug("Mounting: %s", mounter.Dir()) c, err := mounter.Mount() if err != nil { return libfs.MountError(err.Error()) } defer c.Close() onInterruptFn := func() { select { case <-c.Ready: // Was mounted, so try to unmount if it was successful. if c.MountError == nil { err = mounter.Unmount() if err != nil { return } } default: // Was not mounted successfully yet, so do nothing. Note that the mount // could still happen, but that's a rare enough edge case. } } log.Debug("Initializing") config, err := libkbfs.Init(options.KbfsParams, onInterruptFn, log) if err != nil { return libfs.InitError(err.Error()) } defer libkbfs.Shutdown() log.Debug("Creating filesystem") fs := NewFS(config, c, options.KbfsParams.Debug) ctx, cancel := context.WithCancel(context.Background()) defer cancel() ctx = context.WithValue(ctx, CtxAppIDKey, fs) log.Debug("Serving filesystem") fs.Serve(ctx) <-c.Ready err = c.MountError if err != nil { return libfs.MountError(err.Error()) } log.Debug("Ending") return nil }