c++命令行解析开源库cxxopts上手教程

devtools/2024/12/23 5:59:52/

文章目录

  • cxxopts
    • 快速入门
      • 1. cmake环境配置
      • 2. 定义解析的规则
      • 3. 使用例子

cxxopts

  • 简介
    • cxxopts是一个轻量级的C++命令行解析库,它提供了易于使用的API来定义和解析命令行选项。它支持多种类型的选项,并且允许用户自定义选项的处理逻辑。
  • 项目地址: cxxopts GitHub

快速入门

轻量级C++选项解析库,支持标准的GNU样式语法。

1. cmake环境配置

include(FetchContent)
FetchContent_Declare(cxxoptsGIT_REPOSITORY https://github.com/jarro2783/cxxoptsGIT_TAG v3.2.1GIT_SHALLOW TRUE)
FetchContent_MakeAvailable(cxxopts)
# 给项目代码链接cxxopts库
target_link_libraries(cxx_opt_guide PRIVATE cxxopts::cxxopts)

2. 定义解析的规则

具体规则请看代码注释,总体来说还是比较通俗易懂的,不需要特别多的解释。

// 1. 导入头文件(只有一个)
#include <cxxopts.hpp>// 2. 创建一个Options实例
cxxopts::Options options("MyProgram", "One line description of MyProgram");// 3. 写入可解析的参数
options.add_options()("d,debug", "Enable debugging") // 默认是bool类型("i,integer", "Int param", cxxopts::value<int>()) // 该参数是int类型("f,file", "File name", cxxopts::value<std::string>())// vector 传递参数有 2 种方式// --value_list=1,2,3,4 一次性传递,确保没有空格// -v 1 -v 3 分多次传递,组成一个list("v,value_list", "File name", cxxopts::value<std::vector<double>>());("v,verbose", "Verbose output", cxxopts::value<bool>()->default_value("false")); // 该参数默认是false// 4. 解析参数
auto result = options.parse(argc, argv);// 5. 检查参数 d 在命令行出现了几次
int t = result.count("d")// 6. 获得参数d的值
auto v = result["d"].as<type>()// 7.(可选) 准许有未知的参数,会忽略该部分值。
// 默认是不接受未知的参数的,会直接报错。
options.allow_unrecognised_options();

3. 使用例子

我这里用Argv类模拟命令行传参,进行测试,该类取自cxxopts的官方源代码中。
可以看到我在void test_(cxxopts::Options &options) 方法中,对该功能做了测试。

#include <assert.h>
#include <cxxopts.hpp>
#include <iostream>
#include <string>using namespace std;class Argv {
public:Argv(std::initializer_list<const char *> args): m_argv(new const char *[args.size()]),m_argc(static_cast<int>(args.size())) {int i = 0;auto iter = args.begin();while (iter != args.end()) {auto len = strlen(*iter) + 1;auto ptr = std::unique_ptr<char[]>(new char[len]);strcpy(ptr.get(), *iter);m_args.push_back(std::move(ptr));m_argv.get()[i] = m_args.back().get();++iter;++i;}}const char **argv() const { return m_argv.get(); }int argc() const { return m_argc; }private:std::vector<std::unique_ptr<char[]>> m_args{};std::unique_ptr<const char *[]> m_argv;int m_argc;
};void test_(cxxopts::Options &options) {options.add_options()("long", "a long option")("s,short", "a short option")("quick,brown", "An option with multiple long names and no short name")("f,ox,jumped", "An option with multiple long names and a short name")("over,z,lazy,dog", "An option with multiple long names and a short name, not listed first")("value", "an option with a value", cxxopts::value<std::string>())("a,av", "a short option with a value", cxxopts::value<std::string>())("6,six", "a short number option")("p, space", "an option with space between short and long")("period.delimited", "an option with a period in the long name")("nothing", "won't exist", cxxopts::value<std::string>());Argv argv({"tester","--long","-s","--value","value","-a","b","-6","-p","--space","--quick","--ox","-f","--brown","-z","--over","--dog","--lazy","--period.delimited",});auto **actual_argv = argv.argv();auto argc = argv.argc();auto result = options.parse(argc, actual_argv);assert(result.count("long") == 1);assert(result.count("s") == 1);assert(result.count("value") == 1);assert(result.count("a") == 1);assert(result["value"].as<std::string>() == "value");assert(result["a"].as<std::string>() == "b");assert(result.count("6") == 1);assert(result.count("p") == 2);assert(result.count("space") == 2);assert(result.count("quick") == 2);assert(result.count("f") == 2);assert(result.count("z") == 4);assert(result.count("period.delimited") == 1);auto& arguments = result.arguments();assert(arguments.size() == 16);assert(arguments[0].key() == "long");assert(arguments[0].value() == "true");assert(arguments[0].as<bool>() == true);assert(arguments[1].key() == "short");assert(arguments[2].key() == "value");assert(arguments[3].key() == "av");
}int main(int argc, char **argv) {cxxopts::Options options("命令解析的标题", "这里写一下介绍");test_(options); //具体实现请看该函数return 0;// 添加一组解析参数options.add_options()("b,bar", "Param bar", cxxopts::value<std::string>())("d,debug", "Enable debugging",cxxopts::value<bool>()->default_value("false"))("f,foo", "Param foo",cxxopts::value<int>()->default_value("10"))("h,help", "Print usage");// 参加第二组解析参数options.add_options()("c,cds", "cds test",cxxopts::value<std::string>()->default_value("cds test parameter"));// 是否准许未知参数// options.allow_unrecognised_options();// 解析参数auto result = options.parse(argc, argv);// 参数是否出现if (result.count("help")) {std::cout << options.help() << std::endl;exit(0);}// 获取参数值bool debug = result["debug"].as<bool>();std::string bar;if (result.count("bar")) {bar = result["bar"].as<std::string>();cout << "bar: " << bar << endl;}int foo = result["foo"].as<int>();cout << "foo: " << foo << endl;cout << result["c"].as<std::string>();return 0;
}

在这里插入图片描述


http://www.ppmy.cn/devtools/1994.html

相关文章

敢不敢挑战?看完这篇 Python 学习攻略不成大牛就请我退出 IT !

目录 0基础小白怎么学Python&#xff1f; Python基本概念最全图 1.Python 解释器&#xff1a; 2.Python数据结构&#xff1a; 3.变量与运算符&#xff1a; 4.Python 流程控制&#xff1a; 5.Python 文件处理&#xff1a; 6.Python 输入输出&#xff1a; 7.Python 异常…

每日学习笔记:C++ STL算法之容器赋值与替换元素

本文API 赋值 fill(beg, end, newValue) fill_n(beg, num, newValue) generate(beg, end, op) generate_n(beg, num, op) iota(beg, end, startValue) 替换元素 replace(beg, end, oldValue, newValue) replace_if(beg, end, op, newValue) replace_copy(sourceBeg, sourceEnd,…

深入剖析跨境电商平台风控机制,探索测评安全与稳定的秘诀

在跨境电商测评市场鱼龙混杂的当下&#xff0c;测评过程中可能隐藏的陷阱保持高度警觉。多年的测评经验告诉我们&#xff0c;选择一个适合的测评系统对于项目的成功至关重要。近年来&#xff0c;测评技术如雨后春笋般涌现&#xff0c;市场上涌现出众多测评系统&#xff0c;覆盖…

conda 创建、激活、退出、删除虚拟环境

一、conda 本地环境常用操作 #获取版本号 conda --version 或 conda -V #检查更新当前conda conda update conda #查看当前存在哪些虚拟环境 conda env list 或 conda info -e #查看--安装--更新--删除包 conda list&#xff1a; conda search package_name# 查询包 cond…

AI重构你的方方面面

看了最近相关AI的资料&#xff0c;大家也踊跃参与AI技术的讨论。 我们要拨开问题看本质&#xff0c; 其实AI技术本身来说就是人的智慧的结晶和一个替代或者说是一个更优的生产工具。 消费者的思维是以后能够买到通过AI设计生产售卖的更好更便宜的商品就好了&#xff1b; 劳动…

Docker部署gitlab忘记密码

docker ps查看gitlab容器id 进入gitlab容器docker exec -it 7a /bin/bash 输入 gitlab-rails console -e production启动Ruby on Rails控制台 输入user User.where(id: 1).first查找root用户 user.password 12345678’设置root密码 user.password_confirmation12345678’…

【玩转PGSQL】源码安装 pgsql

源码安装配置 centos7 源码安装 postgresql 基础环境优化 systemctl stop firewalld.service systemctl disable firewalld.service #查看selinux getenforce #关闭selinux setenforce 0 #永久关闭selinux sed -i s#SELINUXenforcing#SELINUXdisabled#g /etc/selinu…

ELK企业级日志分析系统(elasticsearch+logstash+kibana)

目录 一.ELK概述 1.定义 &#xff08;1&#xff09;ElasticSearch &#xff08;2&#xff09;Kiabana &#xff08;3&#xff09;Logstash &#xff08;4&#xff09;Filebeat 2.filebeat结合logstash带来好处 3.为什么要是用ELK&#xff1f; 4.完整日志系统基本特征 …