代码拉取完成,页面将自动刷新
package services
import (
"fmt"
"gitee.com/quant1x/engine/cache"
"gitee.com/quant1x/exchange"
"gitee.com/quant1x/gox/api"
"os"
"path/filepath"
"time"
)
const (
// 状态文件时间格式
timeLayoutOfState = "150405"
)
func stateFilename(date, timestamp string) string {
date = exchange.FixTradeDate(date)
t, _ := time.ParseInLocation(exchange.CN_SERVERTIME_FORMAT, timestamp, time.Local)
timestamp = t.Format(timeLayoutOfState)
tm := date + "T" + timestamp
filename := fmt.Sprintf("%s/update.%s", cache.GetVariablePath(), tm)
return filename
}
// 状态文件不存在则可更新, 反之不可更新
func checkUpdateState(date, timestamp string) bool {
filename := stateFilename(date, timestamp)
return !api.FileExist(filename)
}
// 确定完成当期更新状态
func doneUpdate(date, timestamp string) {
filename := stateFilename(date, timestamp)
file, err := os.Create(filename)
if err != nil {
return
}
api.CloseQuietly(file)
}
// 清理过期的状态文件
func cleanExpiredStateFiles() error {
statePath := cache.GetVariablePath()
pattern := filepath.Join(statePath, "update.*")
filePaths, err := filepath.Glob(pattern)
if err != nil {
return err
}
for _, filePath := range filePaths {
_ = os.Remove(filePath)
}
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。