git-lfs/commands/command_clean.go

116 lines
3.2 KiB
Go
Raw Normal View History

package commands
import (
2016-11-09 00:50:52 +00:00
"io"
2015-05-13 19:43:41 +00:00
"os"
"github.com/git-lfs/git-lfs/v3/errors"
"github.com/git-lfs/git-lfs/v3/lfs"
"github.com/git-lfs/git-lfs/v3/tools"
"github.com/git-lfs/git-lfs/v3/tr"
"github.com/spf13/cobra"
)
2016-11-09 00:57:11 +00:00
// clean cleans an object read from the given `io.Reader`, "from", and writes
// out a corresponding pointer to the `io.Writer`, "to". If there were any
// errors encountered along the way, they will be returned immediately if the
// error is non-fatal, otherwise they will halt using the built in
// `commands.Panic`.
//
// If fileSize is given as a non-negative (>= 0) integer, that value is used
// with preference to os.Stat(fileName).Size(). If it is given as negative, the
// value from the `stat(1)` call will be used instead.
//
2016-11-09 00:57:11 +00:00
// If the object read from "from" is _already_ a clean pointer, then it will be
// written out verbatim to "to", without trying to make it a pointer again.
func clean(gf *lfs.GitFilter, to io.Writer, from io.Reader, fileName string, fileSize int64) (*lfs.Pointer, error) {
var cb tools.CopyCallback
2014-08-07 17:01:06 +00:00
var file *os.File
2016-11-09 00:50:52 +00:00
if len(fileName) > 0 {
2015-07-21 23:53:31 +00:00
stat, err := os.Stat(fileName)
2014-08-07 17:01:06 +00:00
if err == nil && stat != nil {
if fileSize < 0 {
fileSize = stat.Size()
}
2014-08-07 17:01:06 +00:00
2017-10-24 19:46:32 +00:00
localCb, localFile, err := gf.CopyCallbackFile("clean", fileName, 1, 1)
2014-08-07 17:01:06 +00:00
if err != nil {
Error(err.Error())
} else {
cb = localCb
file = localFile
}
}
}
cleaned, err := gf.Clean(from, fileName, fileSize, cb)
2014-08-07 17:01:06 +00:00
if file != nil {
file.Close()
}
if cleaned != nil {
defer cleaned.Teardown()
}
2016-08-18 20:20:33 +00:00
if errors.IsCleanPointerError(err) {
2016-11-09 00:50:52 +00:00
// If the contents read from the working directory was _already_
// a pointer, we'll get a `CleanPointerError`, with the context
// containing the bytes that we should write back out to Git.
_, err = to.Write(errors.GetContext(err, "bytes").([]byte))
return nil, err
}
if err != nil {
ExitWithError(errors.Wrap(err, tr.Tr.Get("Error cleaning Git LFS object")))
}
tmpfile := cleaned.Filename
2017-10-25 17:31:15 +00:00
mediafile, err := gf.ObjectPath(cleaned.Oid)
2014-06-05 19:05:02 +00:00
if err != nil {
Panic(err, tr.Tr.Get("Unable to get local media path."))
2014-06-05 19:05:02 +00:00
}
if stat, _ := os.Stat(mediafile); stat != nil {
2015-07-21 23:53:31 +00:00
if stat.Size() != cleaned.Size && len(cleaned.Pointer.Extensions) == 0 {
Exit("%s\n%s\n%s", tr.Tr.Get("Files don't match:"), mediafile, tmpfile)
}
Debug("%s exists", mediafile)
} else {
if err := os.Rename(tmpfile, mediafile); err != nil {
Panic(err, tr.Tr.Get("Unable to move %s to %s", tmpfile, mediafile))
}
Debug(tr.Tr.Get("Writing %s", mediafile))
}
_, err = lfs.EncodePointer(to, cleaned.Pointer)
return cleaned.Pointer, err
2016-11-09 00:50:52 +00:00
}
func cleanCommand(cmd *cobra.Command, args []string) {
requireStdin(tr.Tr.Get("This command should be run by the Git 'clean' filter"))
setupRepository()
installHooks(false)
2016-11-09 00:50:52 +00:00
var fileName string
if len(args) > 0 {
fileName = args[0]
}
gitfilter := lfs.NewGitFilter(cfg)
ptr, err := clean(gitfilter, os.Stdout, os.Stdin, fileName, -1)
if err != nil {
2016-11-09 00:50:52 +00:00
Error(err.Error())
}
if ptr != nil && possiblyMalformedObjectSize(ptr.Size) {
Error(tr.Tr.Get("Possibly malformed conversion on Windows, see `git lfs help smudge` for more details."))
}
}
func init() {
RegisterCommand("clean", cleanCommand, nil)
}