-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbatch_import.go
More file actions
244 lines (213 loc) · 6.62 KB
/
batch_import.go
File metadata and controls
244 lines (213 loc) · 6.62 KB
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
package main
import (
"context"
"encoding/csv"
"encoding/json"
"fmt"
"os"
"path/filepath"
"strings"
"github.com/wailsapp/wails/v2/pkg/runtime"
)
// ================================================================================
// BATCH IMPORT SERVICE - Handles log file imports (Enterprise Feature)
// Follows Single Responsibility Principle: handles only batch import operations
// ================================================================================
// BatchImportResult represents the result of a batch import operation
type BatchImportResult struct {
Messages []string `json:"messages"`
TotalLines int `json:"totalLines"`
Errors []string `json:"errors"`
}
// BatchImportService handles batch log import operations
type BatchImportService struct {
ctx context.Context
}
// NewBatchImportService creates a new BatchImportService instance
func NewBatchImportService() *BatchImportService {
return &BatchImportService{}
}
// SetContext sets the Wails runtime context
func (b *BatchImportService) SetContext(ctx context.Context) {
b.ctx = ctx
}
// SelectLogFile opens a file dialog to select a log file for batch import
func (b *BatchImportService) SelectLogFile() (string, error) {
filePath, err := runtime.OpenFileDialog(b.ctx, runtime.OpenDialogOptions{
Title: "Select Log File for Import",
Filters: []runtime.FileFilter{
{
DisplayName: "Log Files (*.csv, *.json, *.txt, *.log)",
Pattern: "*.csv;*.json;*.txt;*.log",
},
{
DisplayName: "CSV Files (*.csv)",
Pattern: "*.csv",
},
{
DisplayName: "JSON Files (*.json)",
Pattern: "*.json",
},
{
DisplayName: "Text Files (*.txt, *.log)",
Pattern: "*.txt;*.log",
},
{
DisplayName: "All Files (*.*)",
Pattern: "*.*",
},
},
})
if err != nil {
return "", fmt.Errorf("failed to open file dialog: %w", err)
}
return filePath, nil
}
// ImportLogFile reads and parses a log file, returning the messages
func (b *BatchImportService) ImportLogFile(filePath string) (BatchImportResult, error) {
result := BatchImportResult{
Messages: []string{},
Errors: []string{},
}
// Read file content
content, err := os.ReadFile(filePath)
if err != nil {
return result, fmt.Errorf("failed to read file: %w", err)
}
// Detect format based on extension
ext := strings.ToLower(filepath.Ext(filePath))
switch ext {
case ".json":
return b.parseJSONLogs(content)
case ".csv":
return b.parseCSVLogs(content)
default:
// Try JSON first, then fallback to plain text
if len(content) > 0 && (content[0] == '[' || content[0] == '{') {
jsonResult, err := b.parseJSONLogs(content)
if err == nil && len(jsonResult.Messages) > 0 {
return jsonResult, nil
}
}
return b.parseTextLogs(content)
}
}
// parseJSONLogs parses JSON format logs
func (b *BatchImportService) parseJSONLogs(content []byte) (BatchImportResult, error) {
result := BatchImportResult{
Messages: []string{},
Errors: []string{},
}
// Try parsing as array of strings
var stringArray []string
if err := json.Unmarshal(content, &stringArray); err == nil {
for _, msg := range stringArray {
if trimmed := strings.TrimSpace(msg); trimmed != "" {
result.Messages = append(result.Messages, trimmed)
}
}
result.TotalLines = len(stringArray)
return result, nil
}
// Try parsing as array of objects with "message" field
var objArray []map[string]interface{}
if err := json.Unmarshal(content, &objArray); err == nil {
result.TotalLines = len(objArray)
for i, obj := range objArray {
if msg, ok := obj["message"].(string); ok && strings.TrimSpace(msg) != "" {
result.Messages = append(result.Messages, strings.TrimSpace(msg))
} else if msg, ok := obj["msg"].(string); ok && strings.TrimSpace(msg) != "" {
result.Messages = append(result.Messages, strings.TrimSpace(msg))
} else if msg, ok := obj["log"].(string); ok && strings.TrimSpace(msg) != "" {
result.Messages = append(result.Messages, strings.TrimSpace(msg))
} else {
result.Errors = append(result.Errors, fmt.Sprintf("Line %d: no 'message', 'msg', or 'log' field found", i+1))
}
}
return result, nil
}
// Try parsing as newline-delimited JSON (NDJSON)
lines := strings.Split(string(content), "\n")
result.TotalLines = len(lines)
for i, line := range lines {
line = strings.TrimSpace(line)
if line == "" {
continue
}
var obj map[string]interface{}
if err := json.Unmarshal([]byte(line), &obj); err == nil {
if msg, ok := obj["message"].(string); ok && strings.TrimSpace(msg) != "" {
result.Messages = append(result.Messages, strings.TrimSpace(msg))
} else if msg, ok := obj["msg"].(string); ok && strings.TrimSpace(msg) != "" {
result.Messages = append(result.Messages, strings.TrimSpace(msg))
} else {
result.Errors = append(result.Errors, fmt.Sprintf("Line %d: no message field found", i+1))
}
} else {
result.Errors = append(result.Errors, fmt.Sprintf("Line %d: invalid JSON", i+1))
}
}
return result, nil
}
// parseCSVLogs parses CSV format logs
func (b *BatchImportService) parseCSVLogs(content []byte) (BatchImportResult, error) {
result := BatchImportResult{
Messages: []string{},
Errors: []string{},
}
reader := csv.NewReader(strings.NewReader(string(content)))
reader.TrimLeadingSpace = true
reader.LazyQuotes = true
records, err := reader.ReadAll()
if err != nil {
return result, fmt.Errorf("failed to parse CSV: %w", err)
}
if len(records) == 0 {
return result, nil
}
result.TotalLines = len(records)
// Check for header row
messageColIdx := 0
hasHeader := false
header := records[0]
for i, col := range header {
colLower := strings.ToLower(strings.TrimSpace(col))
if colLower == "message" || colLower == "msg" || colLower == "log" {
messageColIdx = i
hasHeader = true
break
}
}
startRow := 0
if hasHeader {
startRow = 1
}
for i := startRow; i < len(records); i++ {
record := records[i]
if len(record) > messageColIdx {
msg := strings.TrimSpace(record[messageColIdx])
if msg != "" {
result.Messages = append(result.Messages, msg)
}
} else {
result.Errors = append(result.Errors, fmt.Sprintf("Line %d: insufficient columns", i+1))
}
}
return result, nil
}
// parseTextLogs parses plain text logs (one message per line)
func (b *BatchImportService) parseTextLogs(content []byte) (BatchImportResult, error) {
result := BatchImportResult{
Messages: []string{},
Errors: []string{},
}
lines := strings.Split(string(content), "\n")
result.TotalLines = len(lines)
for _, line := range lines {
trimmed := strings.TrimSpace(line)
if trimmed != "" {
result.Messages = append(result.Messages, trimmed)
}
}
return result, nil
}