3 Star 0 Fork 0

mirrors_xalanq/cf-tool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
parse.go 970 Bytes
一键复制 编辑 原始数据 按行查看 历史
package cmd
import (
"fmt"
"os"
"path/filepath"
"github.com/fatih/color"
"github.com/xalanq/cf-tool/client"
"github.com/xalanq/cf-tool/config"
)
// Parse command
func Parse(args map[string]interface{}) error {
currentPath, err := os.Getwd()
if err != nil {
return err
}
cfg := config.New(config.ConfigPath)
contestID, err := getContestID(args)
if err != nil {
return err
}
cln := client.New(config.SessionPath)
work := func() error {
if problemID, ok := args["<problem-id>"].(string); ok {
samples, err := cln.ParseContestProblem(contestID, problemID, filepath.Join(currentPath, problemID))
if err != nil {
return fmt.Errorf("Failed %v %v", contestID, problemID)
}
color.Green("Parsed %v %v with %v samples", contestID, problemID, samples)
return nil
}
return cln.ParseContest(contestID, currentPath)
}
if err = work(); err != nil {
if err = loginAgain(cfg, cln, err); err == nil {
err = work()
}
}
return err
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_xalanq/cf-tool.git
git@gitee.com:mirrors_xalanq/cf-tool.git
mirrors_xalanq
cf-tool
cf-tool
v0.2.1

搜索帮助

0d507c66 1850385 C8b1a773 1850385