学习使用getopt_long命令行传参

前言

​ 在linux中,经常需要各种命令,通常情况下都会带各种参数,而这些参数是如何解析的呢?通常使用GNU C提供的函数getopt、getopt_long、getopt_long_only函数来解析命令行参数。

一、关于命令行参数

​ 命令行参数可以分为两类,一类是短选项,一类是长选项,短选项在参数前加一杠"-“,长选项在参数前连续加两杠”–",如下表(ls 命令参数)所示,其中-a,-A,-b都表示短选项,–all,–almost-all, --author都表示长选项。他们两者后面都可选择性添加额外参数。比如–block-size=SIZE,SIZE便是额外的参数

getopt_long函数

​ getopt函数只能处理短选项,而getopt_long函数两者都可以,可以说getopt_long已经包含了getopt_long的功能。因此,这里就只介绍getopt_long函数。而getopt_long与getopt_long_only的区别很小,等介绍完getopt_long,在提起会更好。

#include <unistd.h> 
extern char *optarg; 
extern int optind, opterr, optopt; 
#include <getopt.h>
int getopt(int argc, char * const argv[],const char *optstring); 
int getopt_long(int argc, char * const argv[], const char *optstring, const struct option *longopts, int *longindex); 
int getopt_long_only(int argc, char * const argv[], const char *optstring, const struct option *longopts, int *longindex);

参数以及返回值介绍(以上三个函数都适用):

1、argc和argv和main函数的两个参数一致。
2、optstring: 表示短选项字符串。

形式如“a:b::cd:“,分别表示程序支持的命令行短选项有-a、-b、-c、-d,冒号含义如下:

(1)只有一个字符,不带冒号——只表示选项, 如-c

(2)一个字符,后接一个冒号——表示选项后面带一个参数,如-a 100

(3)一个字符,后接两个冒号——表示选项后面带一个可选参数,即参数可有可无, 如果带参数,则选项与参数直接不能有空格,形式应该如-b200

3、longopts:表示长选项结构体。结构如下:

struct option
{
     const char *name;
     int         has_arg;
     int        *flag;
     int         val;
};
eg:
 static struct option longOpts[] = {
      { "daemon", no_argument, NULL, 'D' },
      { "dir", required_argument, NULL, 'd' },
      { "out", required_argument, NULL, 'o' },
      { "log", required_argument, NULL, 'l' },
      { "split", required_argument, NULL, 's' },
      { "http-proxy", required_argument, &lopt, 1 },
      { "http-user", required_argument, &lopt, 2 },
      { "http-passwd", required_argument, &lopt, 3 },
      { "http-proxy-user", required_argument, &lopt, 4 },
      { "http-proxy-passwd", required_argument, &lopt, 5 },
      { "http-auth-scheme", required_argument, &lopt, 6 },
      { "version", no_argument, NULL, 'v' },
      { "help", no_argument, NULL, 'h' },
      { 0, 0, 0, 0 }
    };

(1)name:表示选项的名称,比如daemon,dir,out等。

(2)has_arg:表示选项后面是否携带参数。该参数有三个不同值,如下:

​ a: no_argument(或者是0)时 ——参数后面不跟参数值,eg: --version,--help

​ b: required_argument(或者是1)时 ——参数输入格式为:–参数 值 或者 --参数=值。eg:--dir=/home

​ c: optional_argument(或者是2)时 ——参数输入格式只能为:–参数=值

(3)flag:这个参数有两个意思,空或者非空。

​ a:如果参数为空NULL,那么当选中某个长选项的时候,getopt_long将返回val值.

eg,可执行程序 --help,getopt_long的返回值为h.

​ b:如果参数不为空,那么当选中某个长选项的时候,getopt_long将返回0,并且将flag指针参数指向val值。

eg: 可执行程序 --http-proxy=127.0.0.1:80 那么getopt_long返回值为0,并且lopt值为1。

(4)val:表示指定函数找到该选项时的返回值,或者当flag非空时指定flag指向的数据的值val。

4、longindexlongindex非空,它指向的变量将记录当前找到参数符合longopts里的第几个元素的描述,即是longopts的下标值。

5、全局变量:

(1)optarg:表示当前选项对应的参数值。

(2)optind:表示的是下一个将被处理到的参数在argv中的下标值。

(3)opterr:如果opterr = 0,在getopt、getopt_long、getopt_long_only遇到错误将不会输出错误信息到标准输出流。opterr在非0时,向屏幕输出错误。

(4)optopt:表示没有被未标识的选项。

6、返回值:

(1)如果短选项找到,那么将返回短选项对应的字符。

(2)如果长选项找到,如果flag为NULL,返回val。如果flag不为空,返回0

(3)如果遇到一个选项没有在短字符、长字符里面。或者在长字符里面存在二义性的,返回“?”

(4)如果解析完所有字符没有找到(一般是输入命令参数格式错误,eg: 连斜杠都没有加的选项),返回“-1”

(5)如果选项需要参数,忘了添加参数。返回值取决于optstring,如果其第一个字符是“:”,则返回“:”,否则返回“?”。

注意:

(1)longopts的最后一个元素必须是全0填充,否则会报段错误

(2)短选项中每个选项都是唯一的。而长选项如果简写,也需要保持唯一性。

二、SAMPLE

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include <signal.h>
#include <getopt.h>

static struct{
	int height;
	int width;
	int all;
}SP_SAMPLE_S;

static SP_SAMPLE_S data;

void handle_sig(int s32Sig)
{
	int s32Ret = 0;

	signal(SIGINT, SIG_IGN);
	signal(SIGTERM, SIG_IGN);

	if (s32Sig == SIGINT || s32Sig == SIGTERM) {
		printf("catch the signal SIGNINT or SIGTERM\nProgram exit abnormally\n");
	}

	/* exit pthread */
}


static void sp_show_opt_usage()
{
	printf("Options:\n");
	printf("\t--height=100\t\t\tThe rectangle's height.\n");
	printf("\t--width=50\t\t\tThe rectangle's width.\n");
	printf("\t-h, --help\t\t\tPrint help message.\n");
}

void sp_print_all_param()
{
	/* printf all your set param */
	printf("height:%d\n", data.height);
	printf("width:%d\n", data.width);
}

int sp_parseParam(int argc, char **argv)
{
	char c = 0;
	int ret = 0;
	int lopt = 0;
	int opt_index = 0;

#define OPT_HEIGHT 1
#define OPT_WIDTH 2

	struct option longOpts[] = {
		{"height", 	optional_argument, &lopt, OPT_HEIGHT},
		{"width", 	optional_argument, &lopt, OPT_WIDTH},
		{"help", 	no_argument, NULL, 'h'},
	};

	while (1) {
		c = getopt_long(argc, argv, "h:", longOpts, &opt_index);
		if (c == -1)
			break;

		switch (c) {
			case 0:
				switch (lopt) {
					case OPT_HEIGHT:
						printf("set height:%d\n", atoi(optarg));
						break;
					case OPT_WIDTH:
						printf("set width:%d\n", atoi(optarg));
						break;
				}
				break;
			case 'h':
				sp_show_opt_usage();
				break;
			default:
				printf("invalid param! Please try again.\n");
				return -1;
		}
	};

	sp_print_all_param();
}

static void sp_init()
{
	/* init data */

	data.height = 200;
	data.width = 100;
	printf("init success!\n");

	return;
}

static void sp_reset()
{
	data.height = 200;
	data.width = 100;
}

int main(int argc, char **argv)
{
	int s32Ret = 0;
	char ch = '\0';
	int exit = 0;

	signal(SIGINT, handle_sig);
	signal(SIGTERM, handle_sig);

	/* system init */
	sp_init();
	exit = sp_parseParam(argc, argv);
	if (exit)/* quit */
		return 0;

	while (1) {
		sp_reset();
		sp_show_usage();

again:
		ch = getchar();
		if (ch == 10) /* 'LF' Line Feed*/
			goto again;
	
		switch (ch) {
			case '0':
				sp_todo_1();
				break;
			case '1':
				sp_todo_2();
				break;
			case '0':
				sp_todo_3();
				break;

			case 'q':
				exit = 1;
				break;
			default:
				printf("input invalid! Please try again.\n\n");
				goto again;
		}

		if (exit) {
			break;
		}
	}
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Van.Ghylivan

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值