-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathcsv.go
352 lines (294 loc) · 9.18 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
352
// csv.go outputs data in CSV format
package main
import (
"encoding/csv"
"fmt"
"math"
"os"
"strings"
"time"
)
type csvPrinter struct {
probeWriter *csv.Writer
statsWriter *csv.Writer
probeFile *os.File
statsFile *os.File
statsFilename string
probeFilename string
headerDone bool
statsHeaderDone bool
showTimestamp *bool
showSourceAddress *bool
cleanup func()
}
const (
colStatus = "Status"
colTimestamp = "Timestamp"
colHostname = "Hostname"
colIP = "IP"
colPort = "Port"
colTCPConn = "TCP_Conn"
colLatency = "Latency(ms)"
colSourceAddress = "Source Address"
)
const (
filePermission os.FileMode = 0644
)
func addCSVExtension(filename string, withStats bool) string {
if withStats {
return strings.Split(filename, ".")[0] + "_stats.csv"
}
if strings.HasSuffix(filename, ".csv") {
return filename
}
return filename + ".csv"
}
func newCSVPrinter(filename string, showTimestamp *bool, showSourceAddress *bool) (*csvPrinter, error) {
filename = addCSVExtension(filename, false)
file, err := os.OpenFile(filename, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, filePermission)
if err != nil {
return nil, fmt.Errorf("error creating data CSV file: %w", err)
}
statsFilename := addCSVExtension(filename, true)
cp := &csvPrinter{
probeWriter: csv.NewWriter(file),
probeFile: file,
probeFilename: filename,
statsFilename: statsFilename,
showTimestamp: showTimestamp,
showSourceAddress: showSourceAddress,
}
cp.cleanup = func() {
if cp.probeWriter != nil {
cp.probeWriter.Flush()
}
if cp.probeFile != nil {
cp.probeFile.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.showSourceAddress {
headers = append(headers, colSourceAddress)
}
if *cp.showTimestamp {
headers = append(headers, colTimestamp)
}
if err := cp.probeWriter.Write(headers); err != nil {
return fmt.Errorf("failed to write headers: %w", err)
}
cp.probeWriter.Flush()
return cp.probeWriter.Error()
}
func (cp *csvPrinter) writeRecord(record []string) error {
if _, err := os.Stat(cp.probeFilename); os.IsNotExist(err) {
file, err := os.OpenFile(cp.probeFilename, os.O_CREATE|os.O_WRONLY|os.O_APPEND, filePermission)
if err != nil {
return fmt.Errorf("failed to recreate data CSV file: %w", err)
}
cp.probeFile = file
cp.probeWriter = 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.probeWriter.Write(record); err != nil {
return fmt.Errorf("failed to write record: %w", err)
}
cp.probeWriter.Flush()
return cp.probeWriter.Error()
}
func (cp *csvPrinter) printStart(hostname string, port uint16) {
fmt.Printf("TCPing results for %s on port %d being written to: %s\n", hostname, port, cp.probeFilename)
}
func (cp *csvPrinter) printProbeSuccess(sourceAddr string, userInput userInput, streak uint, rtt float32) {
record := []string{
"Reply",
userInput.hostname,
userInput.ip.String(),
fmt.Sprint(userInput.port),
fmt.Sprint(streak),
fmt.Sprintf("%.3f", rtt),
}
if *cp.showSourceAddress {
record = append(record, sourceAddr)
}
if err := cp.writeRecord(record); err != nil {
cp.printError("failed to write success record: %v", err)
}
}
func (cp *csvPrinter) printProbeFail(userInput userInput, streak uint) {
record := []string{
"No reply",
userInput.hostname,
userInput.ip.String(),
fmt.Sprint(userInput.port),
fmt.Sprint(streak),
"",
}
if *cp.showSourceAddress {
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, filePermission)
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
}
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) {
if cp.statsFile == nil {
statsFile, err := os.OpenFile(cp.statsFilename, os.O_CREATE|os.O_WRONLY|os.O_APPEND|os.O_TRUNC, filePermission)
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(timeFormat)
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)})
for _, record := range statistics {
if err := cp.writeStatsRecord(record); err != nil {
cp.printError("failed to write statistics record: %v", err)
return
}
}
fmt.Printf("TCPing statistics written to: %s\n", cp.statsFilename)
}
// Satisfying remaining printer interface methods
func (cp *csvPrinter) printTotalDownTime(_ time.Duration) {}
func (cp *csvPrinter) printVersion() {}
func (cp *csvPrinter) printInfo(_ string, _ ...any) {}