-
Notifications
You must be signed in to change notification settings - Fork 0
/
autosave.go
68 lines (57 loc) · 1.89 KB
/
autosave.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
package engine
// Bookkeeping for auto-saving quantities at given intervals.
import "fmt"
var (
output = make(map[Quantity]*autosave) // when to save quantities
autonum = make(map[string]int) // auto number for out file
)
func init() {
DeclFunc("AutoSave", AutoSave, "Auto save space-dependent quantity every period (s).")
DeclFunc("AutoSnapshot", AutoSnapshot, "Auto save image of quantity every period (s).")
}
// Periodically called by run loop to save everything that's needed at this time.
func DoOutput() {
for q, a := range output {
if a.needSave() {
a.save(q)
a.count++
}
}
if Table.needSave() {
Table.Save()
}
}
// Register quant to be auto-saved every period.
// period == 0 stops autosaving.
func AutoSave(q Quantity, period float64) {
autoSave(q, period, Save)
}
// Register quant to be auto-saved as image, every period.
func AutoSnapshot(q Quantity, period float64) {
autoSave(q, period, Snapshot)
}
// register save(q) to be called every period
func autoSave(q Quantity, period float64, save func(Quantity)) {
if period == 0 {
delete(output, q)
} else {
output[q] = &autosave{period, Time, -1, save} // init count to -1 allows save at t=0
}
}
// generate auto file name based on save count and FilenameFormat. E.g.:
// m000001.ovf
func autoFname(name string, format OutputFormat, num int) string {
return fmt.Sprintf(OD()+FilenameFormat+"."+StringFromOutputFormat[format], name, num)
}
// keeps info needed to decide when a quantity needs to be periodically saved
type autosave struct {
period float64 // How often to save
start float64 // Starting point
count int // Number of times it has been autosaved
save func(Quantity) // called to do the actual save
}
// returns true when the time is right to save.
func (a *autosave) needSave() bool {
t := Time - a.start
return a.period != 0 && t-float64(a.count)*a.period >= a.period
}