原文地址:http://blog.csdn.net/cashey1991/article/details/7942809

getopt和getopt_long函数

 
平时在写程序时常常需要对命令行参数进行处理,当命令行参数个数较多时,如果按照顺序一个一个定义参数含义很容易造成混乱,而且如果程序只按顺序处理参数的话,一些“可选参数”的功能将很难实现。

在Linux中,我们可以使用getopt、getopt_long、getopt_long_only来对这个问题进行处理。

  1. #include <unistd.h>
  2.  
  3. int getopt(int argc, char * const argv[],
  4. const char *optstring);
  5.  
  6. extern char *optarg;
  7. extern int optind, opterr, optopt;
  8.  
  9. #include <getopt.h>
  10.  
  11. int getopt_long(int argc, char * const argv[],
  12. const char *optstring,
  13. const struct option *longopts, int *longindex);
  14.  
  15. int getopt_long_only(int argc, char * const argv[],
  16. const char *optstring,
  17. const struct option *longopts, int *longindex);

从最简单的getopt讲起,getopt函数的前两个参数,就是main函数的argc和argv,这两者直接传入即可,要考虑的就只剩下第三个参数。

optstring的格式举例说明比较方便,例如:

char *optstring = "abcd:";

上面这个optstring在传入之后,getopt函数将依次检查命令行是否指定了 -a, -b, -c及 -d(这需要多次调用getopt函数,直到其返回-1),当检查到上面某一个参数被指定时,函数会返回被指定的参数名称(即该字母)

最后一个参数d后面带有冒号,: 表示参数d是可以指定值的,如 -d 100 或 -d user。

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

如果指定opterr = 0的话,在getopt、getopt_long、getopt_long_only遇到错误将不会输出错误信息到标准输出流。

  1. #include <unistd.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7. int opt;
  8. char *optstring = "a:b:c:d";
  9.  
  10. while ((opt = getopt(argc, argv, optstring)) != -)
  11. {
  12. printf("opt = %c\n", opt);
  13. printf("optarg = %s\n", optarg);
  14. printf("optind = %d\n", optind);
  15. printf("argv[optind - 1] = %s\n\n", argv[optind - ]);
  16. }
  17.  
  18. return ;
  19. }

编译上述程序并运行,有如下结果:

  1. cashey@ubuntu:~/Desktop/getopt$ ./test_getopt -a -b -c admin -d
  2. opt = a
  3. optarg =
  4. optind =
  5. argv[optind - ] =
  6.  
  7. opt = b
  8. optarg =
  9. optind =
  10. argv[optind - ] =
  11.  
  12. opt = c
  13. optarg = admin
  14. optind =
  15. argv[optind - ] = admin
  16.  
  17. opt = d
  18. optarg = (null)
  19. optind =
  20. argv[optind - ] = -d

下面来讲getopt_long函数,getopt_long函数包含了getopt函数的功能,并且还可以指定“长参数”(或者说长选项),与getopt函数对比,getopt_long比其多了两个参数:

  1. int getopt(int argc, char * const argv[],
  2. const char *optstring);
  3.  
  4. int getopt_long(int argc, char * const argv[],
  5. const char *optstring,
  6. const struct option *longopts, int *longindex);

在这里,longopts指向的是一个由option结构体组成的数组,那个数组的每个元素,指明了一个“长参数”(即形如--name的参数)名称和性质:

  1. struct option {
  2. const char *name;
  3. int has_arg;
  4. int *flag;
  5. int val;
  6. };

name  是参数的名称

has_arg 指明是否带参数值,其数值可选:

  1. no_argument (即 ) 表明这个长参数不带参数(即不带数值,如:--name
  2. required_argument (即 ) 表明这个长参数必须带参数(即必须带数值,如:--name Bob
  3. optional_argument(即2)表明这个长参数后面带的参数是可选的,(即--name和--name Bob均可)

flag   当这个指针为空的时候,函数直接将val的数值从getopt_long的返回值返回出去,当它非空时,val的值会被赋到flag指向的整型数中,而函数返回值为0

val    用于指定函数找到该选项时的返回值,或者当flag非空时指定flag指向的数据的值。

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

  1. #include <unistd.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include <getopt.h>
  5.  
  6. int
  7. main(int argc, char **argv)
  8. {
  9. int opt;
  10. int digit_optind = ;
  11. int option_index = ;
  12. char *optstring = "a:b:c:d";
  13. static struct option long_options[] = {
  14. {"reqarg", required_argument, NULL, 'r'},
  15. {"noarg", no_argument, NULL, 'n'},
  16. {"optarg", optional_argument, NULL, 'o'},
  17. {, , , }
  18. };
  19.  
  20. while ( (opt = getopt_long(argc, argv, optstring, long_options, &option_index)) != -)
  21. {
  22. printf("opt = %c\n", opt);
  23. printf("optarg = %s\n", optarg);
  24. printf("optind = %d\n", optind);
  25. printf("argv[optind - 1] = %s\n", argv[optind - ]);
  26. printf("option_index = %d\n", option_index);
  27. }
  28.  
  29. return ;
  30. }

编译运行以上程序并运行,可以得到以下结果:

  1. cashey@ubuntu:~/Desktop/getopt$ ./test_getopt_long -a --reqarg --nonarg
  2. opt = a
  3. optarg =
  4. optind =
  5. argv[optind - ] =
  6. option_index =
  7. opt = r
  8. optarg =
  9. optind =
  10. argv[optind - ] =
  11. option_index =
  12. ./test_getopt_long: unrecognized option '--nonarg'
  13. opt = ?
  14. optarg = (null)
  15. optind =
  16. argv[optind - ] = --nonarg
  17. option_index =

当所给的参数存在问题时,opt(即函数返回值是'?'),如:

  1. cashey@ubuntu:~/Desktop/getopt$ ./test_getopt_long -a
  2. ./test_getopt_long: option requires an argument -- 'a'
  3. opt = ?
  4. optarg = (null)
  5. optind =
  6. argv[optind - ] = -a
  7. option_index =
  8. cashey@ubuntu:~/Desktop/getopt$ ./test_getopt_long --reqarg
  9. ./test_getopt_long: option '--reqarg' requires an argument
  10. opt = ?
  11. optarg = (null)
  12. optind =
  13. argv[optind - ] = --reqarg

最后说说getopt_long_only函数,它与getopt_long函数使用相同的参数表,在功能上基本一致,只是getopt_long只将--name当作长参数,但getopt_long_only会将--name和-name两种选项都当作长参数来匹配。在getopt_long在遇到-name时,会拆解成-n -a -m -e到optstring中进行匹配,而getopt_long_only只在-name不能在longopts中匹配时才将其拆解成-n -a -m -e这样的参数到optstring中进行匹配。

 

命令行参数解析函数getopt和getopt_long函数【转】的更多相关文章

  1. webbench源码学习-->命令行选项解析函数getopt和getopt_long函数

    对于webbench这个网站压力测试工具网上介绍的很多,有深度详解剖析的,对于背景就不在提了, 听说最多可以模拟3万个并发连接去测试网站的负载能力,这里主要是学习了一下它的源码,做点 笔记. 官方介绍 ...

  2. 命令行参数解析函数 getopt

    命令行参数解析函数 —— getopt() getopt()函数声明如下: #include <unistd.h> int getopt(int argc, char * const ar ...

  3. 命令行参数处理-getopt()和getopt_long()

    在实际编程当中,自己编写代码处理命令行参数是比较麻烦且易出错的.一般我们会直接使用getopt()和getopt_long()函数,下文将介绍具体的使用方法. getopt() getopt()用于处 ...

  4. 【C】命令行参数解析——getopt、getopt_long及getopt_long_only

    前言 在linux下学习开源代码Webbench,遇到get_long等函数的用法,一时有点懵,故想深入了解这类命令行解析函数,并记此博文. 1.getopt getopt主要用来处理短命令行选项,例 ...

  5. [转]Python 命令行参数和getopt模块详解

    FROM : http://www.tuicool.com/articles/jaqQvq 有时候我们需要写一些脚本处理一些任务,这时候往往需要提供一些命令行参数,根据不同参数进行不同的处理,在Pyt ...

  6. Python 命令行参数和getopt模块详解

    有时候我们需要写一些脚本处理一些任务,这时候往往需要提供一些命令行参数,根据不同参数进行不同的处理,在Python里,命令行的参数和C语言很类似(因为标准Python是用C语言实现的).在C语言里,m ...

  7. shell 命令行参数(getopt和getopts)

    getopt 命令 使用getopt命令,可以解析任何命令行选项和参数,但是用法比较复杂.getopt的命令用法如下: $ getopt --help 用法: getopt optstring par ...

  8. 转载:linux编程,命令行参数输入getopt

    下面资料来自百度百科: getopt(分析命令行参数) 相关函数 表头文件 #include<unistd.h> 定义函数 int getopt(int argc,char * const ...

  9. getopt函数的使用——分析命令行参数

    getopt(分析命令行参数) getopt(分析命令行参数) 短参数的定义 返回值 范例 getopt_long 相关函数表头文件#include<unistd.h> 函数声明int g ...

随机推荐

  1. python3 文件及文件夹路径相关

    1. #返回当前文件所在的目录 currentDir = path.dirname(__file__) # __file__ 为当前文件 2.获得某个路径的父级目录: parent_path = os ...

  2. mysql主从备份及原理分析

    一.mysql主从备份(复制)的基本原理mysql支持单向.异步复制,复制过程中一个服务器充当主服务器,而一个或多个其它服务器充当从服务器.mysql复制基于主服务器在二进制日志中跟踪所有对数据库的更 ...

  3. LSTM 文本情感分析/序列分类 Keras

    LSTM 文本情感分析/序列分类 Keras 请参考 http://spaces.ac.cn/archives/3414/   neg.xls是这样的 pos.xls是这样的neg=pd.read_e ...

  4. 设置py文件的路径

    想在IDLE中打开py文件,需要设置PYTHONPATH环境变量: 设置后,就能在IDLE的Path Browser中看到sys.path了: 然后,就可以用import了

  5. 对Bootloader(引导加载程序)的几点理解

    1.在加电复位之后,大多数处理器都会从一个默认的地址处获取代码.比如MIPS结构的CPU会从0xBFC00000处取第一条指令,而ARM结构的CPU则从地址0x00000000处取第一条指令.因此,在 ...

  6. Spring MVC 实现文件的上传和下载

    前些天一位江苏经贸的学弟跟我留言问了我这样一个问题:“用什么技术来实现一般网页上文件的上传和下载?是框架还是Java中的IO流”.我回复他说:“使用Spring MVC框架可以做到这一点,因为Spri ...

  7. sublime text执行PHP代码

    新建编译系统 { "cmd": ["php", "$file"], "file_regex": "php$&q ...

  8. MySQL事物系列:1:事物简介

    1:事物是一组SQL的集合,要么都执行,要么都不执行.有ACID4个特性,即:原子性.一致性.隔离性.持久性. A(Atomicity)原子性:整个事物是不可分割的工作单位. C(consistenc ...

  9. Spring解决Hibernate中的懒加载问题

    OpenSessionInViewFilter 过滤器将 Hibernate Session 绑定到请求线程中,它将自动被 Spring 的事务管理器探测到. <filter>       ...

  10. 一条SQL语句获取具有父子关系的分类列表(mysql)

    有如下表数据: 获取“菜单”分类的子分类数据列表: SELECT a.cat_id, a.cat_name, a.sort_order AS parent_order, a.cat_id, b.cat ...