forked from synthparadox/EggLedger
-
Notifications
You must be signed in to change notification settings - Fork 3
/
export.go
400 lines (371 loc) · 9.73 KB
/
export.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
package main
import (
"archive/zip"
"bytes"
"encoding/csv"
"fmt"
"io"
"os"
"path/filepath"
"regexp"
"time"
"github.com/pkg/errors"
"github.com/xuri/excelize/v2"
"github.com/DavidArthurCole/EggLedger/ei"
)
type mission struct {
Id string
Ship ei.MissionInfo_Spaceship
ShipName string
DurationType ei.MissionInfo_DurationType
DurationTypeName string
Level uint32
LaunchedAt time.Time
LaunchedAtStr string
ReturnedAt time.Time
ReturnedAtStr string
Duration time.Duration
DurationDays float64
Capacity uint32
Artifacts []*ei.ArtifactSpec
ArtifactNames []string
TargetArtifact ei.ArtifactSpec_Name
}
/*
These two were created to cope with the fact that kevin can't count
This replaces the GetTargetArtifact() method, which for a nil value,
returns LUNAR_TOTEM, million dollar game devlopment right there
*/
func CustomGetTargetArtifact(mission *ei.MissionInfo) ei.ArtifactSpec_Name {
if mission != nil && mission.TargetArtifact != nil && *mission.StartTimeDerived >= float64(1686260700) {
return *mission.TargetArtifact
}
return ei.ArtifactSpec_UNKNOWN
}
func GetNamedTarget(aspecN *ei.ArtifactSpec_Name) string {
if aspecN != nil && *aspecN != ei.ArtifactSpec_UNKNOWN {
return aspecN.CasedName()
}
return ""
}
func newMission(r *ei.CompleteMissionResponse) *mission {
info := r.GetInfo()
ship := info.GetShip()
durationType := info.GetDurationType()
launchedAt := unixToTime(info.GetStartTimeDerived()).Truncate(time.Second)
durationSeconds := info.GetDurationSeconds()
duration := time.Duration(durationSeconds) * time.Second
returnedAt := launchedAt.Add(duration)
target := CustomGetTargetArtifact(info)
var artifacts []*ei.ArtifactSpec
var artifactNames []string
for _, a := range r.Artifacts {
artifacts = append(artifacts, a.Spec)
artifactNames = append(artifactNames, a.Spec.Display())
}
return &mission{
Id: info.GetIdentifier(),
Ship: ship,
ShipName: ship.Name(),
DurationType: durationType,
DurationTypeName: durationType.Display(),
Level: info.GetLevel(),
LaunchedAt: launchedAt,
LaunchedAtStr: launchedAt.Format(time.RFC3339),
ReturnedAt: returnedAt,
ReturnedAtStr: returnedAt.Format(time.RFC3339),
Duration: duration,
DurationDays: durationSeconds / 86400,
Capacity: info.GetCapacity(),
Artifacts: artifacts,
ArtifactNames: artifactNames,
TargetArtifact: target,
}
}
func exportMissionsToCsv(missions []*mission, path string) error {
action := fmt.Sprintf("exporting missions to %s", path)
wrap := func(err error) error {
return errors.Wrap(err, "error "+action)
}
var maxArtifactCount int
for _, m := range missions {
count := len(m.ArtifactNames)
if count > maxArtifactCount {
maxArtifactCount = count
}
}
header := []string{"ID", "Ship", "Type", "Level", "Launched at", "Returned at", "Duration days", "Capacity", "Target"}
for i := 1; i <= maxArtifactCount; i++ {
header = append(header, fmt.Sprintf("Artifact %d", i))
}
records := [][]string{header}
for _, m := range missions {
record := []string{
m.Id,
m.ShipName,
m.DurationTypeName,
fmt.Sprint(m.Level),
m.LaunchedAtStr,
m.ReturnedAtStr,
fmt.Sprint(m.DurationDays),
fmt.Sprint(m.Capacity),
fmt.Sprint(GetNamedTarget(&m.TargetArtifact)),
}
count := len(m.ArtifactNames)
for i := 0; i < maxArtifactCount; i++ {
if i < count {
record = append(record, m.ArtifactNames[i])
} else {
record = append(record, "")
}
}
records = append(records, record)
}
temp, err := writeCsvToTempfile(records, filepath.Dir(path), tempfilePattern(path))
if err != nil {
return wrap(err)
}
if err := os.Rename(temp, path); err != nil {
return wrap(err)
}
return nil
}
func writeCsvToTempfile(records [][]string, dir, pattern string) (temp string, err error) {
f, err := os.CreateTemp(dir, pattern)
if err != nil {
return
}
_ = os.Chmod(f.Name(), 0644)
temp = f.Name()
defer func() { err = f.Close() }()
w := csv.NewWriter(f)
for _, record := range records {
err = w.Write(record)
if err != nil {
return
}
}
w.Flush()
err = w.Error()
if err != nil {
return
}
return
}
func exportMissionsToXlsx(missions []*mission, path string) error {
action := fmt.Sprintf("exporting missions to %s", path)
wrap := func(err error) error {
return errors.Wrap(err, "error "+action)
}
var maxArtifactCount int
var maxArtifactNameLength int
for _, m := range missions {
count := len(m.ArtifactNames)
if count > maxArtifactCount {
maxArtifactCount = count
}
for _, name := range m.ArtifactNames {
if len(name) > maxArtifactNameLength {
maxArtifactNameLength = len(name)
}
}
}
f := excelize.NewFile()
f.SetDefaultFont("Consolas")
datetimeStyle, err := f.NewStyle(&excelize.Style{CustomNumFmt: sptr("yyyy-mm-dd hh:MM:ss")})
if err != nil {
return wrap(err)
}
durationStyle, err := f.NewStyle(&excelize.Style{CustomNumFmt: sptr("d\\dh\\hm\\m")})
if err != nil {
return wrap(err)
}
sw, err := f.NewStreamWriter("Sheet1")
if err != nil {
return wrap(err)
}
// Width of each column is set to max number of characters plus 5.
colWidths := []float64{56, 25, 13, 8, 24, 24, 13, 8}
for i := 1; i <= maxArtifactCount; i++ {
colWidths = append(colWidths, float64(maxArtifactNameLength+5))
}
for i, width := range colWidths {
if err := sw.SetColWidth(i+1, i+1, width); err != nil {
return wrap(err)
}
}
header := []interface{}{"ID", "Ship", "Type", "Level", "Launched at", "Returned at", "Duration", "Capacity", "Target"}
for i := 1; i <= maxArtifactCount; i++ {
header = append(header, fmt.Sprintf("Artifact %d", i))
}
if err = sw.SetRow("A1", header); err != nil {
return wrap(err)
}
rowId := 1
for _, m := range missions {
rowId++
row := []interface{}{
m.Id,
m.ShipName,
m.DurationTypeName,
m.Level,
&excelize.Cell{Value: m.LaunchedAt, StyleID: datetimeStyle},
&excelize.Cell{Value: m.ReturnedAt, StyleID: datetimeStyle},
&excelize.Cell{Value: m.DurationDays, StyleID: durationStyle},
m.Capacity,
GetNamedTarget(&m.TargetArtifact),
}
for _, name := range m.ArtifactNames {
row = append(row, name)
}
cell, err := excelize.CoordinatesToCellName(1, rowId)
if err != nil {
return wrap(err)
}
if err := sw.SetRow(cell, row); err != nil {
return wrap(err)
}
}
if err := sw.Flush(); err != nil {
return wrap(err)
}
temp, err := os.CreateTemp(filepath.Dir(path), tempfilePattern(path))
if err != nil {
return wrap(err)
}
if err := temp.Close(); err != nil {
return wrap(err)
}
_ = os.Chmod(temp.Name(), 0644)
if err := f.SaveAs(temp.Name()); err != nil {
return wrap(err)
}
if err := f.Close(); err != nil {
return wrap(err)
}
if err := os.Rename(temp.Name(), path); err != nil {
return wrap(err)
}
return nil
}
// findLastMatchingFile returns the path of the alphabetically last file in
// directory matching the regexp pattern. Empty string is returned if there's no
// file matching the pattern.
func findLastMatchingFile(directory, pattern string) (string, error) {
re, err := regexp.Compile(pattern)
if err != nil {
return "", err
}
entries, err := os.ReadDir(directory)
if err != nil {
return "", err
}
var last string
for _, entry := range entries {
if entry.IsDir() {
continue
}
name := entry.Name()
if re.MatchString(name) {
last = name
}
}
if last == "" {
return "", nil
}
return filepath.Join(directory, last), nil
}
// cmpFiles compares two files and returns true if their contents are equal.
// Both files can be fully read into memory; only suitable for small files.
func cmpFiles(path1, path2 string) (bool, error) {
wrap := func(err error) error {
return errors.Wrapf(err, "error comparing files %s and %s", path1, path2)
}
s1, err := os.Stat(path1)
if err != nil {
return false, wrap(err)
}
s2, err := os.Stat(path2)
if err != nil {
return false, wrap(err)
}
if s1.Size() != s2.Size() {
return false, nil
}
b1, err := os.ReadFile(path1)
if err != nil {
return false, wrap(err)
}
b2, err := os.ReadFile(path2)
if err != nil {
return false, wrap(err)
}
return bytes.Equal(b1, b2), nil
}
// cmpZipFiles compares two zip files and returns true if their contents are
// equal. This is needed since zip is not deterministic given the exact same
// source files.
func cmpZipFiles(path1, path2 string) (bool, error) {
wrap := func(err error) error {
return errors.Wrapf(err, "error comparing zip files %s and %s", path1, path2)
}
files1, err := readZipContent(path1)
if err != nil {
return false, wrap(err)
}
files2, err := readZipContent(path2)
if err != nil {
return false, wrap(err)
}
if len(files1) != len(files2) {
return false, nil
}
for name, content1 := range files1 {
content2, ok := files2[name]
if !ok {
return false, nil
}
if !bytes.Equal(content1, content2) {
return false, nil
}
}
return true, nil
}
// readZipContent returns a map from file names to file contents for all files
// in the zip.
func readZipContent(path string) (map[string][]byte, error) {
r, err := zip.OpenReader(path)
if err != nil {
return nil, err
}
defer r.Close()
files := make(map[string][]byte)
for _, f := range r.File {
rc, err := f.Open()
if err != nil {
return files, err
}
body, err := io.ReadAll(rc)
if err != nil {
return files, err
}
if err := rc.Close(); err != nil {
return files, err
}
files[f.Name] = body
}
return files, nil
}
func filenameWithoutExt(f string) string {
f = filepath.Base(f)
ext := filepath.Ext(f)
return f[:len(f)-len(ext)]
}
func tempfilePattern(f string) string {
f = filepath.Base(f)
ext := filepath.Ext(f)
return f[:len(f)-len(ext)] + ".*" + ext
}
func sptr(s string) *string {
return &s
}