-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
csv.go
351 lines (295 loc) · 9.27 KB
/
csv.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
package main
import (
"encoding/csv"
"fmt"
"math"
"os"
"time"
)
type csvPrinter struct {
writer *csv.Writer
file *os.File
dataFilename string
headerDone bool
showTimestamp *bool
showLocalAddress *bool
statsWriter *csv.Writer
statsFile *os.File
statsFilename string
statsHeaderDone bool
cleanup func()
}
const (
colStatus = "Status"
colTimestamp = "Timestamp"
colHostname = "Hostname"
colIP = "IP"
colPort = "Port"
colTCPConn = "TCP_Conn"
colLatency = "Latency(ms)"
colLocalAddress = "Local Address"
)
func ensureCSVExtension(filename string) string {
if len(filename) > 4 && filename[len(filename)-4:] == ".csv" {
return filename
}
return filename + ".csv"
}
func newCSVPrinter(dataFilename string, showTimestamp *bool, showLocalAddress *bool) (*csvPrinter, error) {
// Ensure .csv extension for dataFilename
dataFilename = ensureCSVExtension(dataFilename)
// Open the data file with the os.O_TRUNC flag to truncate it
file, err := os.OpenFile(dataFilename, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
if err != nil {
return nil, fmt.Errorf("error creating data CSV file: %w", err)
}
// Append _stats before the .csv extension for statsFilename
statsFilename := dataFilename[:len(dataFilename)-4] + "_stats.csv"
cp := &csvPrinter{
writer: csv.NewWriter(file),
file: file,
dataFilename: dataFilename,
statsFilename: statsFilename,
showTimestamp: showTimestamp,
showLocalAddress: showLocalAddress,
}
cp.cleanup = func() {
if cp.writer != nil {
cp.writer.Flush()
}
if cp.file != nil {
cp.file.Close()
}
if cp.statsWriter != nil {
cp.statsWriter.Flush()
}
if cp.statsFile != nil {
cp.statsFile.Close()
}
}
return cp, nil
}
func (cp *csvPrinter) writeHeader() error {
headers := []string{
colStatus,
colHostname,
colIP,
colPort,
colTCPConn,
colLatency,
}
if *cp.showLocalAddress {
headers = append(headers, colLocalAddress)
}
if *cp.showTimestamp {
headers = append(headers, colTimestamp)
}
if err := cp.writer.Write(headers); err != nil {
return fmt.Errorf("failed to write headers: %w", err)
}
cp.writer.Flush()
return cp.writer.Error()
}
func (cp *csvPrinter) writeRecord(record []string) error {
if _, err := os.Stat(cp.dataFilename); os.IsNotExist(err) {
file, err := os.OpenFile(cp.dataFilename, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0644)
if err != nil {
return fmt.Errorf("failed to recreate data CSV file: %w", err)
}
cp.file = file
cp.writer = csv.NewWriter(file)
cp.headerDone = false
}
if !cp.headerDone {
if err := cp.writeHeader(); err != nil {
return err
}
cp.headerDone = true
}
if *cp.showTimestamp {
record = append(record, time.Now().Format(timeFormat))
}
if err := cp.writer.Write(record); err != nil {
return fmt.Errorf("failed to write record: %w", err)
}
cp.writer.Flush()
return cp.writer.Error()
}
func (cp *csvPrinter) printStart(hostname string, port uint16) {
fmt.Printf("TCPing results being written to: %s\n", cp.dataFilename)
}
func (cp *csvPrinter) printProbeSuccess(localAddr string, userInput userInput, streak uint, rtt float32) {
hostname := userInput.hostname
record := []string{
"Reply",
hostname,
userInput.ip.String(),
fmt.Sprint(userInput.port),
fmt.Sprint(streak),
fmt.Sprintf("%.3f", rtt),
}
if *cp.showLocalAddress {
record = append(record, localAddr)
}
if err := cp.writeRecord(record); err != nil {
cp.printError("Failed to write success record: %v", err)
}
}
func (cp *csvPrinter) printProbeFail(userInput userInput, streak uint) {
hostname := userInput.hostname
record := []string{
"No reply",
hostname,
userInput.ip.String(),
fmt.Sprint(userInput.port),
fmt.Sprint(streak),
"",
}
if *cp.showLocalAddress {
record = append(record, "")
}
if err := cp.writeRecord(record); err != nil {
cp.printError("Failed to write failure record: %v", err)
}
}
func (cp *csvPrinter) printRetryingToResolve(hostname string) {
record := []string{
"Resolving",
hostname,
"",
"",
"",
"",
}
if err := cp.writeRecord(record); err != nil {
cp.printError("Failed to write resolve record: %v", err)
}
}
func (cp *csvPrinter) printError(format string, args ...any) {
fmt.Fprintf(os.Stderr, "CSV Error: "+format+"\n", args...)
}
func (cp *csvPrinter) writeStatsHeader() error {
headers := []string{
"Metric",
"Value",
}
if err := cp.statsWriter.Write(headers); err != nil {
return fmt.Errorf("failed to write statistics headers: %w", err)
}
cp.statsWriter.Flush()
return cp.statsWriter.Error()
}
func (cp *csvPrinter) writeStatsRecord(record []string) error {
if _, err := os.Stat(cp.statsFilename); os.IsNotExist(err) {
statsFile, err := os.OpenFile(cp.statsFilename, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0644)
if err != nil {
return fmt.Errorf("failed to recreate statistics CSV file: %w", err)
}
cp.statsFile = statsFile
cp.statsWriter = csv.NewWriter(statsFile)
cp.statsHeaderDone = false
}
// Write header if not done
if !cp.statsHeaderDone {
if err := cp.writeStatsHeader(); err != nil {
return err
}
cp.statsHeaderDone = true
}
if err := cp.statsWriter.Write(record); err != nil {
return fmt.Errorf("failed to write statistics record: %w", err)
}
cp.statsWriter.Flush()
return cp.statsWriter.Error()
}
func (cp *csvPrinter) printStatistics(t tcping) {
// Initialize stats file if not already done
if cp.statsFile == nil {
statsFile, err := os.OpenFile(cp.statsFilename, os.O_CREATE|os.O_WRONLY|os.O_APPEND|os.O_TRUNC, 0644)
if err != nil {
cp.printError("Failed to create statistics CSV file: %v", err)
return
}
cp.statsFile = statsFile
cp.statsWriter = csv.NewWriter(statsFile)
cp.statsHeaderDone = false
}
totalPackets := t.totalSuccessfulProbes + t.totalUnsuccessfulProbes
packetLoss := (float32(t.totalUnsuccessfulProbes) / float32(totalPackets)) * 100
if math.IsNaN(float64(packetLoss)) {
packetLoss = 0
}
// Collect statistics data
timestamp := time.Now().Format(time.RFC3339)
statistics := [][]string{
{"Timestamp", timestamp},
{"Total Packets", fmt.Sprint(totalPackets)},
{"Successful Probes", fmt.Sprint(t.totalSuccessfulProbes)},
{"Unsuccessful Probes", fmt.Sprint(t.totalUnsuccessfulProbes)},
{"Packet Loss", fmt.Sprintf("%.2f%%", packetLoss)},
}
if t.lastSuccessfulProbe.IsZero() {
statistics = append(statistics, []string{"Last Successful Probe", "Never succeeded"})
} else {
statistics = append(statistics, []string{"Last Successful Probe", t.lastSuccessfulProbe.Format(timeFormat)})
}
if t.lastUnsuccessfulProbe.IsZero() {
statistics = append(statistics, []string{"Last Unsuccessful Probe", "Never failed"})
} else {
statistics = append(statistics, []string{"Last Unsuccessful Probe", t.lastUnsuccessfulProbe.Format(timeFormat)})
}
statistics = append(statistics, []string{"Total Uptime", durationToString(t.totalUptime)})
statistics = append(statistics, []string{"Total Downtime", durationToString(t.totalDowntime)})
if t.longestUptime.duration != 0 {
statistics = append(statistics,
[]string{"Longest Uptime Duration", durationToString(t.longestUptime.duration)},
[]string{"Longest Uptime From", t.longestUptime.start.Format(timeFormat)},
[]string{"Longest Uptime To", t.longestUptime.end.Format(timeFormat)},
)
}
if t.longestDowntime.duration != 0 {
statistics = append(statistics,
[]string{"Longest Downtime Duration", durationToString(t.longestDowntime.duration)},
[]string{"Longest Downtime From", t.longestDowntime.start.Format(timeFormat)},
[]string{"Longest Downtime To", t.longestDowntime.end.Format(timeFormat)},
)
}
if !t.destIsIP {
statistics = append(statistics, []string{"Retried Hostname Lookups", fmt.Sprint(t.retriedHostnameLookups)})
if len(t.hostnameChanges) >= 2 {
for i := 0; i < len(t.hostnameChanges)-1; i++ {
statistics = append(statistics,
[]string{"IP Change", t.hostnameChanges[i].Addr.String()},
[]string{"To", t.hostnameChanges[i+1].Addr.String()},
[]string{"At", t.hostnameChanges[i+1].When.Format(timeFormat)},
)
}
}
}
if t.rttResults.hasResults {
statistics = append(statistics,
[]string{"RTT Min", fmt.Sprintf("%.3f ms", t.rttResults.min)},
[]string{"RTT Avg", fmt.Sprintf("%.3f ms", t.rttResults.average)},
[]string{"RTT Max", fmt.Sprintf("%.3f ms", t.rttResults.max)},
)
}
statistics = append(statistics, []string{"TCPing Started At", t.startTime.Format(timeFormat)})
if !t.endTime.IsZero() {
statistics = append(statistics, []string{"TCPing Ended At", t.endTime.Format(timeFormat)})
}
durationTime := time.Time{}.Add(t.totalDowntime + t.totalUptime)
statistics = append(statistics, []string{"Duration (HH:MM:SS)", durationTime.Format(hourFormat)})
// Write statistics to CSV
for _, record := range statistics {
if err := cp.writeStatsRecord(record); err != nil {
cp.printError("Failed to write statistics record: %v", err)
return
}
}
// Print the message only if statistics are written
fmt.Printf("TCPing statistics written to: %s\n", cp.statsFilename)
}
// Satisfying remaining printer interface methods
func (cp *csvPrinter) printTotalDownTime(downtime time.Duration) {}
func (cp *csvPrinter) printVersion() {}
func (cp *csvPrinter) printInfo(format string, args ...any) {}