-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.go
171 lines (150 loc) · 3.67 KB
/
app.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
package main
import (
"bufio"
"context"
"datafilter/charset"
"fmt"
"os"
"path/filepath"
"regexp"
"strings"
"time"
"github.com/wailsapp/wails/v2/pkg/runtime"
)
const FILE_ADD_SUFFIX = "_filter"
var OPT = Options{}
// App struct
type App struct {
ctx context.Context
}
// NewApp creates a new App application struct
func NewApp() *App {
return &App{}
}
// startup is called when the app starts. The context is saved
// so we can call the runtime methods
func (a *App) startup(ctx context.Context) {
a.ctx = ctx
OPT.load()
}
// Greet returns a greeting for the given name
func (a *App) Greet(name string) string {
return fmt.Sprintf("Greet %s !", name)
}
// GetOptions 获取配置文件JSON
func (a *App) GetOptions() Options {
return OPT.GetData()
}
// SetOptions 解析传来的配置
func (a *App) SetOptions(val Options) {
OPT.SetData(&val)
}
type PathStruct struct {
Directory string `json:"directory"`
Filename string `json:"filename"`
Ext string `json:"ext"`
AddSuffixStr string `json:"addSuffixStr"`
}
// SplitFilePath 拆分文件路径信息
func (a *App) SplitFilePath(filePath string) PathStruct {
directory, filename, ext := splitFilePath(filePath)
return PathStruct{
directory,
filename,
ext,
FILE_ADD_SUFFIX,
}
}
// 分解文件路径
func splitFilePath(filePath string) (string, string, string) {
path, filename := filepath.Split(filePath)
fileNameSp := strings.Split(filename, ".")
return path, fileNameSp[0], fileNameSp[1]
}
// SelectFile 选择需要处理的文件
func (a *App) SelectFile(title string, filetype string) string {
if title == "" {
title = "选择文件"
}
if filetype == "" {
filetype = "*.txt;*.json"
}
selection, err := runtime.OpenFileDialog(a.ctx, runtime.OpenDialogOptions{
Title: title,
Filters: []runtime.FileFilter{
{
DisplayName: "文本数据",
Pattern: filetype,
},
},
})
if err != nil {
return fmt.Sprintf("err %s!", err)
}
return selection
}
// FilterFile 处理文件数据
func (a *App) FilterFile(filePath string) string {
var checkCoding = false
var isFileEncodingUtf8 bool
timeStart := time.Now()
// 读取文件
fileHandle, err := os.Open(filePath)
if err != nil {
fmt.Println(err.Error())
return ""
}
defer fileHandle.Close()
// 保存文件
path, filename, ext := splitFilePath(filePath)
newFilePath := path + filename + FILE_ADD_SUFFIX + "." + ext
fileSaveHandle, err := os.OpenFile(newFilePath, os.O_RDWR|os.O_TRUNC|os.O_CREATE, os.ModePerm)
if err != nil {
fmt.Println(err.Error())
return ""
}
defer fileSaveHandle.Close()
accumulationLine := 0
bufSaveHandle := bufio.NewWriter(fileSaveHandle)
lineScanner := bufio.NewScanner(fileHandle)
for lineScanner.Scan() {
newStr := lineScanner.Text()
accumulationLine++
runtime.EventsEmit(a.ctx, "filter-change", accumulationLine)
if !checkCoding {
checkCoding = true
isFileEncodingUtf8 = charset.IsUtf8(newStr)
}
if !isFileEncodingUtf8 {
// 仅处理GBK情况
newStr, _ = charset.ToUtf8(charset.GBK, newStr)
}
newStr = filterTextData(newStr)
_, err := bufSaveHandle.WriteString(newStr + "\n")
if err != nil {
fmt.Println(err.Error())
return ""
}
}
bufSaveHandle.Flush()
return time.Now().Sub(timeStart).String()
}
// 文本处理
func filterTextData(str string) string {
result := str
if OPT.EraseZeroWidthCharacter {
result = eraseZeroWidthCharacter(str, "")
}
result = OPT.ExecRegex(result)
return result
}
// 处理零宽字符
func eraseZeroWidthCharacter(str string, val string) string {
myRegex, err := regexp.Compile("[\u200b-\u200f|\ufefe]")
if err != nil {
fmt.Println(err)
return str
}
result := myRegex.ReplaceAllString(str, val)
return result
}