summaryrefslogtreecommitdiff
path: root/template.go
blob: 036f806653cf3bd3ddc12b0c29366f3a7143c619 (plain)
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
package main

import (
	"embed"
	"fmt"
	"io"
	"io/fs"
	"os"
	"path"
	"text/template"
)

const verbatimPath = "templates/verbatim"
const participantsName = "tireur.txt"
const clubsName = "club.txt"
const competitionName = "competition.egw"

//go:embed templates/verbatim
var verbatim embed.FS

//go:embed templates/competition.egw.tpl
var competition string

func writeVerbatimFile(outputDir string, entry fs.DirEntry) error {
	inName := path.Join(verbatimPath, entry.Name())

	input, err := verbatim.Open(inName)
	if err != nil {
		return fmt.Errorf("reading bundled file '%s': %w", entry.Name(), err)
	}
	defer input.Close()

	outName := path.Join(outputDir, entry.Name())
	output, err := os.Create(outName)
	if err != nil {
		return fmt.Errorf("creating '%s': %w", outName, err)
	}
	defer output.Close()

	if _, err = io.Copy(encodedWriter(output), input); err != nil {
		return fmt.Errorf("writing to '%s': %w", outName, err)
	}

	return nil
}

func writeVerbatim(outputDir string) error {
	entries, err := verbatim.ReadDir(verbatimPath)
	if err != nil {
		return err
	}

	for _, e := range entries {
		if err = writeVerbatimFile(outputDir, e); err != nil {
			return err
		}
	}

	return nil
}

func write(config EngardeConfig, participants []participant, clubs []club) error {
	if err := os.MkdirAll(config.outputDir, 0755); err != nil {
		return fmt.Errorf("creating output directory '%s': %w", config.outputDir, err)
	}

	if err := writeVerbatim(config.outputDir); err != nil {
		return fmt.Errorf("copying default files: %w", err)
	}

	if err := writeParticipants(config.outputDir, participants); err != nil {
		return fmt.Errorf("writing participant data: %w", err)
	}

	if err := writeClubs(config.outputDir, clubs); err != nil {
		return fmt.Errorf("writing club data: %w", err)
	}

	if err := writeCompetition(config.outputDir, config); err != nil {
		return fmt.Errorf("writing competition file: %w", err)
	}

	return nil
}

func writeClubs(outputDir string, clubs []club) error {
	entries := make([]engarde, len(clubs))
	for i := range clubs {
		entries[i] = clubs[i]
	}

	return writeEngarde(outputDir, clubsName, entries)
}

func writeParticipants(outputDir string, participants []participant) error {
	entries := make([]engarde, len(participants))
	for i := range participants {
		entries[i] = participants[i]
	}

	return writeEngarde(outputDir, participantsName, entries)
}

func writeEngarde(outputDir, fileName string, entries []engarde) error {
	outName := path.Join(outputDir, fileName)
	output, err := os.Create(outName)
	if err != nil {
		return fmt.Errorf("creating '%s': %w", outName, err)
	}
	defer output.Close()

	encodedOutput := encodedWriter(output)

	for _, entry := range entries {
		str, err := entry.Engarde()
		if err != nil {
			return err
		}
		if _, err = encodedOutput.Write([]byte(str)); err != nil {
			return fmt.Errorf("writing to '%s': %w", outName, err)
		}
	}

	return nil
}

func writeCompetition(outputDir string, config EngardeConfig) error {
	tpl, err := template.New(competitionName).Parse(competition)
	if err != nil {
		return fmt.Errorf("parsing template '%s': %w", competitionName, err)
	}

	outName := path.Join(outputDir, competitionName)
	output, err := os.Create(outName)
	if err != nil {
		return fmt.Errorf("creating '%s': %w", outName, err)
	}
	defer output.Close()

	encodedOutput := encodedWriter(output)

	if err = tpl.Execute(encodedOutput, config); err != nil {
		return fmt.Errorf("executing template '%s': %w", competitionName, err)
	}
	return nil
}