当前位置: 首页 > article >正文

第一个golang项目增加help指令并调整指令模式

第一个golang项目增加help指令并调整指令模式

  • 调整指令模式
  • 增加help指令
  • 减少了配置文件的解析读取次数
  • 新指令模式
  • 打包并运行

上一篇文章

调整指令模式

  • version指令修改为-v-version
  • replace指令修改为-r-replace
  • dir参数修改为-d-directory
package commands

import (
	"flag"
	"fmt"
	"log"
	"os"
	"strings"

	"github.com/spf13/viper"
)

var (
	help    bool
	version bool
	replace bool

	directory string
)

func Init() {
	flag.BoolVar(&help, "h", false, "this `help` and exit")
	flag.BoolVar(&help, "help", false, "this `help` and exit")
	flag.BoolVar(&version, "v", false, "show `version` and exit")
	flag.BoolVar(&version, "version", false, "show `version` and exit")
	flag.BoolVar(&replace, "r", false, "send `replace` to process and replace content for scan files under directory.")
	flag.BoolVar(&replace, "replace", false, "send `replace` to process and replace content for scan files under directory.")

	// 注意 `directory`。默认是 -d string,有了 `directory` 之后,变为 -d directory
	flag.StringVar(&directory, "d", "", "send `directory` to process: standard, standard-fix, saas, saas-fix")
	flag.StringVar(&directory, "directory", "", "send `directory` to process: standard, standard-fix, saas, saas-fix")

	// 改变默认的 Usage
	flag.Usage = usage

	viper.SetConfigName("config") // 配置文件名(不包含扩展名)
	viper.SetConfigType("toml")   // 配置文件格式
	viper.AddConfigPath(".")      // 查找配置文件的路径
	if err := viper.ReadInConfig(); err != nil {
		log.Fatalf("Error reading config file, %s", err)
	}

	flag.Parse()
}

func usage() {
	version := viper.Get("version").(string)
	cmd := os.Args[0]
	fmt.Fprintf(os.Stderr, `%s version: %s
Usage: %s [-hvq] [-d,directory directory]

Options:
`, cmd, version, cmd)
	flag.PrintDefaults()
}

func Run() {
	Init()

	if help {
		flag.Usage()
	} else if version {
		Version()
	} else if replace {
		dir := "standard"
		if strings.TrimSpace(directory) != "" {
			dir = directory
		}
		Replace(dir)
	} else {
		flag.Usage()
	}
}

增加help指令

  • -h-help指令,打印程序已知参数列表及参数说明
func usage() {
	version := viper.Get("version").(string)
	cmd := os.Args[0]
	fmt.Fprintf(os.Stderr, `%s version: %s
Usage: %s [-hvq] [-d,directory directory]

Options:
`, cmd, version, cmd)
	flag.PrintDefaults()
}

减少了配置文件的解析读取次数

  • 在程序执行初始化时解析一次,后续皆可使用
func Init() {
	flag.BoolVar(&help, "h", false, "this `help` and exit")
	flag.BoolVar(&help, "help", false, "this `help` and exit")
	flag.BoolVar(&version, "v", false, "show `version` and exit")
	flag.BoolVar(&version, "version", false, "show `version` and exit")
	flag.BoolVar(&replace, "r", false, "send `replace` to process and replace content for scan files under directory.")
	flag.BoolVar(&replace, "replace", false, "send `replace` to process and replace content for scan files under directory.")

	// 注意 `directory`。默认是 -d string,有了 `directory` 之后,变为 -d directory
	flag.StringVar(&directory, "d", "", "send `directory` to process: standard, standard-fix, saas, saas-fix")
	flag.StringVar(&directory, "directory", "", "send `directory` to process: standard, standard-fix, saas, saas-fix")

	// 改变默认的 Usage
	flag.Usage = usage

	viper.SetConfigName("config") // 配置文件名(不包含扩展名)
	viper.SetConfigType("toml")   // 配置文件格式
	viper.AddConfigPath(".")      // 查找配置文件的路径
	if err := viper.ReadInConfig(); err != nil {
		log.Fatalf("Error reading config file, %s", err)
	}

	flag.Parse()
}

新指令模式

func Run() {
	Init()

	if help {
		flag.Usage()
	} else if version {
		Version()
	} else if replace {
		dir := "standard"
		if strings.TrimSpace(directory) != "" {
			dir = directory
		}
		Replace(dir)
	} else {
		flag.Usage()
	}
}

打包并运行

go build -v -ldflags "-linkmode external -extldflags '-static' -w" -o devtools.exe main.go
devtools.exe -h
devtools.exe -help
devtools.exe -v
devtools.exe -version
devtools.exe -r -d saas
devtools.exe -replace -directory saas

在这里插入图片描述

https://gitee.com/xqxyxchy/dev-tools
尽情享用吧


http://www.kler.cn/a/286720.html

相关文章:

  • 【前端】Hexo 建站指南
  • 前端开发中的模拟后端与MVVM架构实践[特殊字符][特殊字符][特殊字符]
  • 解释 RESTful API,以及如何使用它构建 web 应用程序
  • Java 设计模式 二 单例模式 (Singleton Pattern)
  • 2000-2010年各省第三产业就业人数数据
  • Swift 中 Codable 和 Hashable 的理解
  • 【最全深度学习介绍】基本概念、类型、应用、优缺点、与机器学习区别是什么?
  • CART算法原理及Python实践
  • Axure RP9安装教程(Pro版)
  • 为k8s准备docker 私有仓库 harbor
  • Scrum 敏捷模型、软件测试
  • Java中的String能存储多少字符?不可变吗?
  • 这才是老板喜欢的运营简历
  • three.js 编辑器,动画,着色器, cesium 热力图,聚合点位,大量点线面, 图层,主题,文字,等众多案例中心
  • OmniGraffle Pro for Mac 思维导图软件安装
  • 前端打包部署,Nginx服务器启动
  • 【protobuf】protobuf语法及序列化原理
  • 集成电路学习:什么是DMA直接内存访问
  • 虚幻5|技能栏UI优化(2)——优化技能UI并实现技能栏的拖拽操作
  • 日常工作中的AI助手
  • milvus多个Querynode,资源消耗都打在一个节点上
  • C语言6大常用标准库 -- 1.<stdio.h>
  • Day-01—QT项目的新建
  • 【大模型LLM第十一篇】微调自动化数据选择方式之MoDS
  • 不良信息公示
  • How can I change from OpenAI to ChatOpenAI in langchain and Flask?