123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- package main
- import (
- "bytes"
- "io"
- "os"
- "os/exec"
- "path/filepath"
- "strings"
- "github.com/cryptix/git-remote-ipfs/Godeps/_workspace/src/github.com/cryptix/exp/git"
- "github.com/cryptix/git-remote-ipfs/Godeps/_workspace/src/gopkg.in/errgo.v1"
- )
- // "fetch $sha1 $ref" method 1 - unpacking loose objects
- // - look for it in ".git/objects/substr($sha1, 0, 2)/substr($sha, 2)"
- // - if found, download it and put it in place. (there may be a command for this)
- // - done \o/
- func fetchObject(sha1 string) error {
- return recurseCommit(sha1)
- }
- func recurseCommit(sha1 string) error {
- obj, err := fetchAndWriteObj(sha1)
- if err != nil {
- return errgo.Notef(err, "fetchAndWriteObj(%s) commit object failed", sha1)
- }
- commit, ok := obj.Commit()
- if !ok {
- return errgo.Newf("sha1<%s> is not a git commit object:%s ", sha1, obj)
- }
- if commit.Parent != "" {
- if err := recurseCommit(commit.Parent); err != nil {
- return errgo.Notef(err, "recurseCommit(%s) commit Parent failed", commit.Parent)
- }
- }
- return fetchTree(commit.Tree)
- }
- func fetchTree(sha1 string) error {
- obj, err := fetchAndWriteObj(sha1)
- if err != nil {
- return errgo.Notef(err, "fetchAndWriteObj(%s) commit tree failed", sha1)
- }
- entries, ok := obj.Tree()
- if !ok {
- return errgo.Newf("sha1<%s> is not a git tree object:%s ", sha1, obj)
- }
- for _, t := range entries {
- obj, err := fetchAndWriteObj(t.SHA1Sum.String())
- if err != nil {
- return errgo.Notef(err, "fetchAndWriteObj(%s) commit tree failed", sha1)
- }
- if obj.Type != git.BlobT {
- return errgo.Newf("sha1<%s> is not a git tree object:%s ", t.SHA1Sum.String(), obj)
- }
- }
- return nil
- }
- // fetchAndWriteObj looks for the loose object under 'thisGitRepo' global git dir
- // and usses an io.TeeReader to write it to the local repo
- func fetchAndWriteObj(sha1 string) (*git.Object, error) {
- p := filepath.Join(ipfsRepoPath, "objects", sha1[:2], sha1[2:])
- ipfsCat, err := ipfsShell.Cat(p)
- if err != nil {
- return nil, errgo.Notef(err, "shell.Cat() commit failed")
- }
- targetP := filepath.Join(thisGitRepo, "objects", sha1[:2], sha1[2:])
- if err := os.MkdirAll(filepath.Join(thisGitRepo, "objects", sha1[:2]), 0700); err != nil {
- return nil, errgo.Notef(err, "mkDirAll() failed")
- }
- targetObj, err := os.Create(targetP)
- if err != nil {
- return nil, errgo.Notef(err, "os.Create(%s) commit failed", targetP)
- }
- obj, err := git.DecodeObject(io.TeeReader(ipfsCat, targetObj))
- if err != nil {
- return nil, errgo.Notef(err, "git.DecodeObject(commit) failed")
- }
- if err := ipfsCat.Close(); err != nil {
- if errRm := os.Remove(targetObj.Name()); errRm != nil {
- return nil, errgo.WithCausef(errRm, err, "os.Remove(targetObj) failed while closing ipfs cat")
- }
- return nil, errgo.Notef(err, "closing ipfs cat failed")
- }
- if err := targetObj.Close(); err != nil {
- return nil, errgo.Notef(err, "target file close() failed")
- }
- return obj, nil
- }
- // "fetch $sha1 $ref" method 2 - unpacking packed objects
- // - look for it in packfiles by fetching ".git/objects/pack/*.idx"
- // and looking at each idx with cat <idx> | git show-index (alternatively can learn to read the format in go)
- // - if found in an <idx>, download the relevant .pack file,
- // and feed it into `git index-pack --stdin --fix-thin` which will put it into place.
- // - done \o/
- func fetchPackedObject(sha1 string) error {
- // search for all index files
- packPath := filepath.Join(ipfsRepoPath, "objects", "pack")
- links, err := ipfsShell.List(packPath)
- if err != nil {
- return errgo.Notef(err, "shell FileList(%q) failed", packPath)
- }
- var indexes []string
- for _, lnk := range links {
- if lnk.Type == 2 && strings.HasSuffix(lnk.Name, ".idx") {
- indexes = append(indexes, filepath.Join(packPath, lnk.Name))
- }
- }
- if len(indexes) == 0 {
- return errgo.New("fetchPackedObject: no idx files found")
- }
- for _, idx := range indexes {
- idxF, err := ipfsShell.Cat(idx)
- if err != nil {
- return errgo.Notef(err, "fetchPackedObject: idx<%s> cat(%s) failed", sha1, idx)
- }
- // using external git show-index < idxF for now
- // TODO: parse index file in go to make this portable
- var b bytes.Buffer
- showIdx := exec.Command("git", "show-index")
- showIdx.Stdin = idxF
- showIdx.Stdout = &b
- showIdx.Stderr = &b
- if err := showIdx.Run(); err != nil {
- return errgo.Notef(err, "fetchPackedObject: idx<%s> show-index start failed", sha1)
- }
- cmdOut := b.String()
- if !strings.Contains(cmdOut, sha1) {
- log.WithField("idx", filepath.Base(idx)).Debug("git show-index: sha1 not in index, next idx file")
- continue
- }
- //log.Debug("git show-index:", cmdOut)
- // we found an index with our hash inside
- pack := strings.Replace(idx, ".idx", ".pack", 1)
- log.Debug("unpacking:", pack)
- packF, err := ipfsShell.Cat(pack)
- if err != nil {
- return errgo.Notef(err, "fetchPackedObject: pack<%s> open() failed", sha1)
- }
- b.Reset()
- unpackIdx := exec.Command("git", "unpack-objects")
- unpackIdx.Dir = thisGitRepo // GIT_DIR
- unpackIdx.Stdin = packF
- unpackIdx.Stdout = &b
- unpackIdx.Stderr = &b
- if err := unpackIdx.Run(); err != nil {
- return errgo.Notef(err, "fetchPackedObject: pack<%s> 'git unpack-objects' failed\nOutput: %s", sha1, b.String())
- }
- log.Debug("git unpack-objects ...:", b.String())
- return nil
- }
- return errgo.Newf("did not find sha1<%s> in %d index files", sha1, len(indexes))
- }
|