代码拉取完成,页面将自动刷新
同步操作将从 aoe5188/foot 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package main
import (
"bufio"
"fmt"
"github.com/lxn/walk"
. "github.com/lxn/walk/declarative"
"io"
"log"
"tesou.io/platform/foot-parent/foot-api/common/base"
"tesou.io/platform/foot-parent/foot-core/common/utils"
"os"
"strings"
"tesou.io/platform/foot-parent/foot-core/launch"
launch2 "tesou.io/platform/foot-parent/foot-spider/launch"
"time"
)
func init() {
}
func main() {
//buildWinForm()
test()
}
func buildWinForm() {
var inTE *walk.TextEdit
window := MainWindow{
Title: "FOOT000GUI",
MinSize: Size{400, 300},
Layout: VBox{},
Children: []Widget{
TextEdit{AssignTo: &inTE, ReadOnly: true, HScroll: false, VScroll: true},
HSplitter{
Children: []Widget{
PushButton{
Text: "Spider数据",
OnClicked: func() {
inTE.SetText("Spider数据...\r\n")
go launch2.Spider()
go showConsole(inTE)
},
},
PushButton{
Text: "分析数据",
OnClicked: func() {
inTE.SetText("分析数据...\r\n")
go launch.Analy(false)
go showConsole(inTE)
},
},
PushButton{
Text: "清理数据库",
OnClicked: func() {
inTE.SetText("清理数据库...\r\n")
go showConsole(inTE)
},
},
PushButton{
Text: "清空日志",
OnClicked: func() {
inTE.SetText("清空日志...\r\n")
logFile, err := os.OpenFile(base.output_Path, os.O_WRONLY|os.O_TRUNC, 0777)
if err != nil {
log.Fatal(err)
}
logFile.WriteString("")
defer logFile.Close()
},
},
},
},
},
}
window.Run()
}
func showConsole(edit *walk.TextEdit) {
utils.FileMonitoring(base.output_Path, func(bytes []byte) {
str := string(bytes)
if strings.TrimSpace(str) == "" {
return
}
str = str + "\r\n"
edit.AppendText(str)
})
}
func test() {
logFile, err := os.OpenFile(base.output_Path, os.O_RDONLY, 0777)
if err != nil {
log.Fatal(err)
}
reader := bufio.NewReader(logFile)
for {
var i int
i += 1
var str string
line, _, err := reader.ReadLine()
if err == io.EOF {
time.Sleep(200)
} else if nil != err {
str = "发生错误:" + err.Error()
} else {
str = string(line)
}
if strings.TrimSpace(str) == "" {
continue
}
fmt.Println(str)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。