-
Notifications
You must be signed in to change notification settings - Fork 0
/
cache.go
155 lines (116 loc) · 3 KB
/
cache.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
// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
package main
import (
"errors"
"flag"
"fmt"
"io/ioutil"
"os"
"path/filepath"
)
type Cache struct {
Common
}
func (cmd *Cache) Name() string { return "cache" }
func (cmd *Cache) Parse(args []string) error {
set := flag.NewFlagSet(cmd.Name(), flag.ExitOnError)
return set.Parse(args)
}
func (cmd *Cache) Exec() {
fmt.Fprintf(os.Stderr, "# Caching\n")
repodir := cmd.RepoDir()
hash, err := HashFiles(
filepath.Join(repodir, "go.mod"),
// filepath.Join(repodir, "go.sum"),
)
ErrFatal(err)
fmt.Println("HASH:", hash)
cmd.VendorModules()
zipdata, err := Zip(filepath.Join(repodir, "vendor"))
ErrFatal(err)
ioutil.WriteFile(filepath.Join(repodir, "vendor.zip"), zipdata, 0755)
err = Unzip(zipdata, filepath.Join(repodir, "vendor2"))
ErrFatal(err)
}
type Hash struct {
Common
}
func (cmd *Hash) Name() string { return "hash" }
func (cmd *Hash) Parse(args []string) error {
set := flag.NewFlagSet(cmd.Name(), flag.ExitOnError)
return set.Parse(args)
}
func (cmd *Hash) Exec() {
repodir := cmd.RepoDir()
hash, err := HashFiles(
filepath.Join(repodir, "go.mod"),
//filepath.Join(repodir, "go.sum"),
)
ErrFatal(err)
fmt.Println(hash)
}
type ZipVendor struct {
Common
Destination string
}
func (cmd *ZipVendor) Name() string { return "zip-vendor" }
func (cmd *ZipVendor) Parse(args []string) error {
set := flag.NewFlagSet(cmd.Name(), flag.ExitOnError)
err := set.Parse(args)
if err != nil {
return err
}
cmd.Destination = set.Arg(0)
if cmd.Destination == "" {
return errors.New("destination file unspecified")
}
return nil
}
func (cmd *ZipVendor) Exec() {
fmt.Fprintf(os.Stderr, "# Zipping vendor\n")
cmd.VendorModules()
zipdata, err := Zip(filepath.Join(cmd.RepoDir(), "vendor"))
ErrFatalf(err, "unable to zip vendor: %v", err)
cmd.DeleteVendor()
writeErr := ioutil.WriteFile(cmd.Destination, zipdata, 0644)
ErrFatalf(writeErr, "unable to write zip: %v", writeErr)
}
type UnzipVendor struct {
Common
Source string
}
func (cmd *UnzipVendor) Name() string { return "unzip-vendor" }
func (cmd *UnzipVendor) Parse(args []string) error {
set := flag.NewFlagSet(cmd.Name(), flag.ExitOnError)
err := set.Parse(args)
if err != nil {
return err
}
cmd.Source = set.Arg(0)
if cmd.Source == "" {
return errors.New("source file unspecified")
}
return nil
}
func (cmd *UnzipVendor) Exec() {
fmt.Fprintf(os.Stderr, "# Unzipping vendor\n")
zipdata, err := ioutil.ReadFile(cmd.Source)
ErrFatalf(err, "unable to read zip: %v", err)
cmd.DeleteVendor()
unzipErr := Unzip(zipdata, filepath.Join(cmd.RepoDir(), "vendor"))
ErrFatalf(unzipErr, "unable to unzip: %v", unzipErr)
}
type FlattenVendor struct {
Common
Source string
}
func (cmd *FlattenVendor) Name() string { return "flatten-vendor" }
func (cmd *FlattenVendor) Parse(args []string) error {
set := flag.NewFlagSet(cmd.Name(), flag.ExitOnError)
return set.Parse(args)
}
func (cmd *FlattenVendor) Exec() {
cmd.DeleteNonRepos()
cmd.FlattenVendor()
}