blob: d3818e037c4db810c39f02c0f7508a7eb183033f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
package main
import (
"fmt"
"io"
"os"
"time"
"github.com/aerospike/aerospike-client-go"
"gopkg.in/src-d/go-git.v4"
)
func main() {
url := os.Args[2]
client, err := aerospike.NewClient("127.0.0.1", 3000)
if err != nil {
panic(err)
}
s := NewAerospikeStorage(url, client)
r, err := git.NewRepository(s)
if err != nil {
panic(err)
}
switch os.Args[1] {
case "clone":
clone(r, url)
case "list":
list(r)
default:
panic("unknown option")
}
}
func clone(r *git.Repository, url string) {
fmt.Printf("Cloning %q ...\n", os.Args[2])
start := time.Now()
if err := r.Clone(&git.RepositoryCloneOptions{URL: url}); err != nil {
panic(err)
}
fmt.Printf("Time elapsed %s\n", time.Since(start))
}
func list(r *git.Repository) {
fmt.Printf("Listing commits from %q ...\n", os.Args[1])
iter, err := r.Commits()
if err != nil {
panic(err)
}
defer iter.Close()
var count int
for {
//the commits are not shorted in any special order
commit, err := iter.Next()
if err != nil {
if err == io.EOF {
break
}
panic(err)
}
count++
fmt.Println(commit)
}
fmt.Printf("Total number of commits %d\n", count)
}
|