65 lines
1.4 KiB
Go
65 lines
1.4 KiB
Go
// Copyright 2022 wanderer <a_mirre at utb dot cz>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
package report
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"text/template"
|
|
"time"
|
|
)
|
|
|
|
// picTexFiles holds paths to tex files including pics of a certain algo.
|
|
type picTexFiles struct {
|
|
Algo string
|
|
FilePaths []string
|
|
}
|
|
|
|
// allThePics contains a slice of picTexFiles and consequently paths to all pic
|
|
// tex files generated during a single run of the program.
|
|
type allThePics struct {
|
|
TexFiles []picTexFiles
|
|
}
|
|
|
|
var allPics = &allThePics{}
|
|
|
|
// SaveTexAllPics feeds all paths of generated pics to a template that creates
|
|
// `allpics.tex` file, which then aggregates all tex files tracking plot pics
|
|
// in one place.
|
|
func SaveTexAllPics() {
|
|
a := allPics
|
|
texAllPicsFile := GetTexDir() + "allpics" + ".tex"
|
|
tmplAllPicsFile := "report/allpics.tmpl"
|
|
|
|
if _, err := os.Stat(tmplAllPicsFile); err != nil {
|
|
// TODO(me): fix this.
|
|
// this block is relevant for the unit test path, somehow the file is
|
|
// not found as defined above.
|
|
log.Println(err, `, weird test behaviour , prepending "../"`)
|
|
|
|
tmplAllPicsFile = "../" + tmplAllPicsFile
|
|
}
|
|
|
|
tmplAllPics := template.Must(template.ParseFiles(tmplAllPicsFile))
|
|
|
|
f, err := os.Create(texAllPicsFile)
|
|
if err != nil {
|
|
log.Println(err)
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
err = tmplAllPics.Execute(f, struct {
|
|
AllPics allThePics
|
|
Timestamp time.Time
|
|
}{
|
|
AllPics: *a,
|
|
Timestamp: time.Now(),
|
|
})
|
|
|
|
if err != nil {
|
|
log.Println(err)
|
|
}
|
|
}
|