代码拉取完成,页面将自动刷新
/*
Copyright 2016 Medcl (m AT medcl.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"bufio"
"encoding/json"
"github.com/cheggaaa/pb"
log "github.com/cihub/seelog"
"io"
"os"
"strings"
"sync"
)
func checkFileIsExist(filename string) bool {
var exist = true
if _, err := os.Stat(filename); os.IsNotExist(err) {
exist = false
}
return exist
}
func (m *Migrator) NewFileReadWorker(pb *pb.ProgressBar, wg *sync.WaitGroup) {
log.Debug("start reading file")
f, err := os.Open(m.Config.DumpInputFile)
if err != nil {
log.Error(err)
return
}
defer f.Close()
r := bufio.NewReader(f)
lineCount := 0
for {
line, err := r.ReadString('\n')
if io.EOF == err || nil != err {
break
}
lineCount += 1
js := map[string]interface{}{}
err = DecodeJson(line, &js)
if err != nil {
log.Error(err)
continue
}
m.DocChan <- js
pb.Increment()
}
defer f.Close()
log.Debug("end reading file")
close(m.DocChan)
wg.Done()
}
func (c *Migrator) NewFileDumpWorker(pb *pb.ProgressBar, wg *sync.WaitGroup) {
var f *os.File
var err1 error
if checkFileIsExist(c.Config.DumpOutFile) {
flag := os.O_WRONLY
if c.Config.TruncateOutFile {
flag |= os.O_TRUNC
} else {
flag |= os.O_APPEND
}
f, err1 = os.OpenFile(c.Config.DumpOutFile, flag, os.ModeAppend)
if err1 != nil {
log.Error(err1)
return
}
} else {
f, err1 = os.Create(c.Config.DumpOutFile)
if err1 != nil {
log.Error(err1)
return
}
}
w := bufio.NewWriter(f)
skipFields := make([]string, 0)
if len(c.Config.SkipFields) > 0 {
//skip fields
if !strings.Contains(c.Config.SkipFields, ",") {
skipFields = append(skipFields, c.Config.SkipFields)
} else {
fields := strings.Split(c.Config.SkipFields, ",")
for _, field := range fields {
skipFields = append(skipFields, field)
}
}
}
READ_DOCS:
for {
docI, open := <-c.DocChan
// this check is in case the document is an error with scroll stuff
if status, ok := docI["status"]; ok {
if status.(int) == 404 {
log.Error("error: ", docI["response"])
continue
}
}
// sanity check
for _, key := range []string{"_index", "_type", "_source", "_id"} {
if _, ok := docI[key]; !ok {
break READ_DOCS
}
}
for _, key := range skipFields {
if _, found := docI[key]; found {
delete(docI, key)
}
}
jsr, err := json.Marshal(docI)
log.Trace(string(jsr))
if err != nil {
log.Error(err)
}
n, err := w.WriteString(string(jsr))
if err != nil {
log.Error(n, err)
}
w.WriteString("\n")
pb.Increment()
// if channel is closed flush and gtfo
if !open {
goto WORKER_DONE
}
}
WORKER_DONE:
w.Flush()
f.Close()
wg.Done()
log.Debug("file dump finished")
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。