-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
178 lines (151 loc) · 3.53 KB
/
utils.go
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package main
import (
"context"
"flag"
"fmt"
"io"
"net/url"
"os"
"github.com/peterbourgon/ff/v3/ffcli"
"github.com/jtolio/jam/backends"
)
var (
cmdBackendCat = &ffcli.Command{
Name: "backend-cat",
ShortHelp: "cat an object in the backend",
ShortUsage: fmt.Sprintf("%s [opts] utils backend-cat <path-inside-backend>", os.Args[0]),
Exec: BackendCat,
}
cmdBackendSync = &ffcli.Command{
Name: "backend-sync",
ShortHelp: "sync one backend to another",
ShortUsage: fmt.Sprintf("%s [opts] utils backend-sync <source-backend-url> <dest-backend-url>", os.Args[0]),
Exec: BackendSync,
}
cmdHashCoalesce = &ffcli.Command{
Name: "hash-coalesce",
ShortHelp: "combine hash files",
ShortUsage: fmt.Sprintf("%s [opts] utils hash-coalesce", os.Args[0]),
Exec: HashCoalesce,
}
cmdHashSplit = &ffcli.Command{
Name: "hash-split",
ShortHelp: "split hash files to one per blob (default behavior on upload)",
ShortUsage: fmt.Sprintf("%s [opts] utils hash-split", os.Args[0]),
Exec: HashSplit,
}
cmdUtils = &ffcli.Command{
Name: "utils",
ShortHelp: "miscellaneous utilities",
ShortUsage: fmt.Sprintf("%s [opts] utils <subcommand> [opts]", os.Args[0]),
Subcommands: []*ffcli.Command{
cmdBackendCat,
cmdBackendSync,
cmdHashCoalesce,
cmdHashSplit,
},
Exec: help,
}
)
func BackendSync(ctx context.Context, args []string) error {
if len(args) != 2 {
return flag.ErrHelp
}
sourceSpec, err := url.Parse(args[0])
if err != nil {
return err
}
destSpec, err := url.Parse(args[1])
if err != nil {
return err
}
sourceStore, err := backends.Create(ctx, sourceSpec)
if err != nil {
return err
}
defer sourceStore.Close()
destStore, err := backends.Create(ctx, destSpec)
if err != nil {
return err
}
defer destStore.Close()
destContains := map[string]bool{}
err = destStore.List(ctx, "", func(ctx context.Context, path string) error {
destContains[path] = true
return nil
})
if err != nil {
return err
}
var missingPaths []string
err = sourceStore.List(ctx, "", func(ctx context.Context, path string) error {
if !destContains[path] {
missingPaths = append(missingPaths, path)
}
return nil
})
if err != nil {
return err
}
for _, path := range missingPaths {
fmt.Printf("syncing %q\n", path)
r, err := sourceStore.Get(ctx, path, 0, -1)
if err != nil {
return err
}
err = destStore.Put(ctx, path, r)
r.Close()
if err != nil {
return err
}
}
return nil
}
func BackendCat(ctx context.Context, args []string) error {
if len(args) != 1 {
return flag.ErrHelp
}
_, backend, _, mgrClose, err := getManager(ctx)
if err != nil {
return err
}
defer mgrClose()
rc, err := backend.Get(ctx, args[0], 0, -1)
if err != nil {
return err
}
defer rc.Close()
_, err = io.Copy(os.Stdout, rc)
return err
}
func HashCoalesce(ctx context.Context, args []string) error {
if len(args) != 0 {
return flag.ErrHelp
}
_, _, hashes, mgrClose, err := getManager(ctx)
if err != nil {
return err
}
defer mgrClose()
return hashes.Coalesce(ctx)
}
func HashSplit(ctx context.Context, args []string) error {
if len(args) != 0 {
return flag.ErrHelp
}
_, _, hashes, mgrClose, err := getManager(ctx)
if err != nil {
return err
}
defer mgrClose()
return hashes.Split(ctx)
}
func byteFmt(bytes int64) string {
val := float64(bytes)
suffixes := []string{"B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"}
for val > 1024 {
val /= 1024
suffixes = suffixes[1:]
}
return fmt.Sprintf("%0.02f %s", val, suffixes[0])
}