-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcache.go
224 lines (194 loc) · 5.28 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/*******************************************************************************
*
* Copyright 2017 Stefan Majewsky <majewsky@gmx.net>
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
*******************************************************************************/
package main
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"time"
"github.com/BurntSushi/toml"
)
//PackageCacheEntry contains metadata for a Package instance that is held in the Cache.
type PackageCacheEntry struct {
LastModified time.Time
OutputFiles []string
}
//OutputCacheEntry contains metadata for an output file that is held in the Cache.
type OutputCacheEntry struct {
MD5Digest string
}
//Cache contains metadata for a number of Package instances.
type Cache struct {
Packages map[string]PackageCacheEntry `toml:"package"`
OutputFiles map[string]OutputCacheEntry `toml:"output"`
Changed bool `toml:"-"`
}
const (
cachePath = ".art-cache"
)
func readCache() (*Cache, error) {
c := &Cache{
Packages: make(map[string]PackageCacheEntry),
OutputFiles: make(map[string]OutputCacheEntry),
}
bytes, err := ioutil.ReadFile(cachePath)
if err != nil {
if os.IsNotExist(err) {
//acceptable, e.g. on first run; start with empty cache
return c, nil
}
return nil, err
}
err = toml.Unmarshal(bytes, c)
c.Changed = false
return c, err
}
func (c *Cache) writeCache() error {
if !c.Changed {
return nil
}
c.Changed = false //since we're writing it now
var buf bytes.Buffer
err := toml.NewEncoder(&buf).Encode(c)
if err != nil {
return err
}
return ioutil.WriteFile(cachePath, buf.Bytes(), 0644)
}
//GetEntryForPackage retrieves (or creates) a cache entry for the given Package.
func (c *Cache) GetEntryForPackage(pkg Package) (PackageCacheEntry, error) {
entry, exists := c.Packages[pkg.CacheKey()]
mtime, err := pkg.LastModified()
if err != nil {
return PackageCacheEntry{}, err
}
if exists && fuzzyTimeEqual(entry.LastModified, mtime) {
return entry, nil
}
entry = PackageCacheEntry{
LastModified: mtime,
}
entry.OutputFiles, err = pkg.OutputFiles()
if err != nil {
return PackageCacheEntry{}, err
}
c.Packages[pkg.CacheKey()] = entry
c.Changed = true
return entry, nil
}
//GetEntryForOutputFile retrieves (or creates) a cache entry for the given output file.
func (c *Cache) GetEntryForOutputFile(path string) (OutputCacheEntry, error) {
baseName := filepath.Base(path)
entry, exists := c.OutputFiles[baseName]
if exists {
return entry, nil
}
buf, err := ioutil.ReadFile(path)
if err != nil {
return OutputCacheEntry{}, err
}
entry = OutputCacheEntry{
MD5Digest: md5digest(buf),
}
c.OutputFiles[baseName] = entry
c.Changed = true
return entry, nil
}
////////////////////////////////////////////////////////////////////////////////
//Build performs (if needed) the build of the given package into the given
//target directory.
func (c *Cache) Build(pkg Package, targetDirPath string, ui *UI) error {
entry, err := c.GetEntryForPackage(pkg)
if err != nil {
return err
}
var (
alreadyBuilt = false
needsBuild = false
)
for _, fileName := range entry.OutputFiles {
fi, err := os.Stat(filepath.Join(targetDirPath, fileName))
switch {
case err == nil:
alreadyBuilt = true
if fi.ModTime().Before(entry.LastModified) {
ui.ShowWarning(
"not building %s: target file exists and is older than package definition",
fileName,
)
}
case os.IsNotExist(err):
needsBuild = true
default:
return err
}
}
if alreadyBuilt && needsBuild {
return fmt.Errorf(
"cannot build package: some of %v exist at target, but some do not",
entry.OutputFiles,
)
}
if !needsBuild {
return nil
}
return pkg.Build(targetDirPath)
}
//AddMissingSignatures adds signature files to all output files that do not
//have one yet. It returns a list of the names of all output files.
func (c *Cache) AddMissingSignatures(pkg Package, targetDirPath string, mcfg MakepkgConfig) ([]string, error) {
entry, err := c.GetEntryForPackage(pkg)
if err != nil {
return nil, err
}
if mcfg.GPGKeyID != "" {
for _, fileName := range entry.OutputFiles {
path := filepath.Join(targetDirPath, fileName)
outputExists, err := fileExists(path)
if err != nil {
return nil, err
}
if !outputExists {
continue
}
signatureExists, err := fileExists(path + ".sig")
if err != nil {
return nil, err
}
if signatureExists {
continue
}
cmd := exec.Command(
"gpg", "--detach-sign", "--use-agent",
"-u", mcfg.GPGKeyID,
"--no-armor", path,
)
cmd.Stdin = nil
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err = cmd.Run()
if err != nil {
return nil, err
}
}
}
return entry.OutputFiles, nil
}