dotnet 命令行工具解决方案 PomeloCli

目录
  • PomeloCli 是什么
  • 为什么实现
    • 太多的工具太少的规范
    • 基于二进制拷贝分发难以为继
  • 快速开始
    • 1. 引用 PomeloCli 开发命令行应用
    • 2. 引用 PomeloCli 开发命令行插件
      • 开发命令行插件
      • 搭建私有 nuget 服务
      • 发布命令行插件
    • 3. 使用 PomeloCli 集成已发布插件
      • 安装命令行宿主
      • 集成命令行插件
      • 卸载命令行插件
      • 卸载命令行宿主
    • 4. 引用 PomeloCli 开发命令行宿主
    • 其他:异常 NU1102 的处理
  • 其他事项
    • 已知问题
    • 路线图

PomeloCli 是什么

  • 中文版
  • English version

我们已经有相当多的命令行工具实现或解析类库,PomeloCli 并不是替代版本,它基于 Nate McMaster 的杰出工作 CommandLineUtils、DotNetCorePlugins 实现了一整套的命令行开发、管理、维护方案,在此特别鸣谢 Nate。

为什么实现

作者述职于 devOps 部门,编写、维护 CLI 工具并将其部署到各个服务器节点上是很常规的需求,但是又常常面临一系列问题。

太多的工具太少的规范

命令行工具开发自由度过高,随之而来的是迥异的开发和使用体验:

  • 依赖和配置管理混乱;
  • 没有一致的参数、选项标准,缺失帮助命令;
  • 永远找不到版本对号的说明文档;

基于二进制拷贝分发难以为继

工具开发完了还需要部署到计算节点上,但是对运维人员极其不友好:

  • 永远不知道哪些机器有没有安装,安装了什么版本;
  • 需要进入工具目录配置运行参数;

快速开始

你可以直接开始,但是在此之前理解命令、参数和选项仍然有很大的帮助。相关内容可以参考 Introduction.

1. 引用 PomeloCli 开发命令行应用

引用 PomeloCli 来快速创建自己的命令行应用

$ dotnet new console -n SampleApp
$ cd SampleApp
$ dotnet add package PomeloCli -v 1.3.0

在入口程序添加必要的处理逻辑,文件内容见于 docs/sample/3-sample-app/Program.cs。这里使用了依赖注入管理命令,相关参考见 .NET 依赖项注入。

using System;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using PomeloCli;class Program
{static async Task<int> Main(string[] avg){var services = new ServiceCollection().AddTransient<ICommand, EchoCommand>().AddTransient<ICommand, HeadCommand>().BuildServiceProvider();var application = ApplicationFactory.ConstructFrom(services);return await application.ExecuteAsync(args);}
}

这里有两个命令:EchoCommand,是对 echo 命令的模拟,文件内容见于 docs/sample/3-sample-app/EchoCommand.cs

#nullable disable
using System;
using System.Threading;
using System.Threading.Tasks;
using McMaster.Extensions.CommandLineUtils;
using PomeloCli;[Command("echo", Description = "display a line of text")]
class EchoCommand : Command
{[Argument(0, "input")]public String Input { get; set; }[Option("-n|--newline", CommandOptionType.NoValue, Description = "do not output the trailing newline")]public Boolean? Newline { get; set; }protected override Task<int> OnExecuteAsync(CancellationToken cancellationToken){if (Newline.HasValue){Console.WriteLine(Input);}else{Console.Write(Input);}return Task.FromResult(0);}
}

HeadCommand是对 head 命令的模拟,文件内容见于 docs/sample/3-sample-app/HeadCommand.cs。

#nullable disable
using System;
using System.ComponentModel.DataAnnotations;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using McMaster.Extensions.CommandLineUtils;
using PomeloCli;[Command("head", Description = "Print the first 10 lines of each FILE to standard output")]
class HeadCommand : Command
{[Required][Argument(0)]public String Path { get; set; }[Option("-n|--line", CommandOptionType.SingleValue, Description = "print the first NUM lines instead of the first 10")]public Int32 Line { get; set; } = 10;protected override Task<int> OnExecuteAsync(CancellationToken cancellationToken){if (!File.Exists(Path)){throw new FileNotFoundException($"file '{Path}' not found");}var lines = File.ReadLines(Path).Take(Line);foreach (var line in lines){Console.WriteLine(line);}return Task.FromResult(0);}
}

进入目录 SampleApp 后,既可以通过 dotnet run -- --help 查看包含的 echohead 命令及使用说明。

$ dotnet run -- --help
Usage: SampleApp [command] [options]Options:-?|-h|--help  Show help information.Commands:echo          display a line of texthead          Print the first 10 lines of each FILE to standard outputRun 'SampleApp [command] -?|-h|--help' for more information about a command.$ dotnet run -- echo --help
display a line of textUsage: SampleApp echo [options] <input>Arguments:inputOptions:-n|--newline  do not output the trailing newline-?|-h|--help  Show help information.

也可以编译使用可执行的 SampleApp.exe 。

$ ./bin/Debug/net8.0/SampleApp.exe --help
Usage: SampleApp [command] [options]Options:-?|-h|--help  Show help information.Commands:echo          display a line of texthead          Print the first 10 lines of each FILE to standard outputRun 'SampleApp [command] -?|-h|--help' for more information about a command.$ ./bin/Debug/net8.0/SampleApp.exe echo --help
display a line of textUsage: SampleApp echo [options] <input>Arguments:inputOptions:-n|--newline  do not output the trailing newline-?|-h|--help  Show help information.

BRAVO 很简单对吧。

2. 引用 PomeloCli 开发命令行插件

如果只是提供命令行应用的创建能力,作者大可不必发布这样一个项目,因为 McMaster.Extensions.CommandLineUtils 本身已经做得足够好了。如上文"为什么实现章节"所说,作者还希望解决命令行工具的分发维护问题。

为了实现这一目标,PomeloCli 继续基于 McMaster.NETCore.Plugins 实现了一套插件系统或者说架构:

  • 将命令行工具拆分成宿主插件两部分功能;
  • 宿主负责安装、卸载、加载插件,作为命令行入口将参数转交给对应的插件
  • 插件负责具体的业务功能的实现;
  • 宿主插件均打包成标准的 nuget 制品;

插件加载示意

image-20240519212639103

命令行参数传递示意

image-20240519212733969

通过将宿主的维护交由 dotnet tool 处理、将插件的维护交由宿主处理,我们希望解决命令行工具的分发维护问题:

  • 开发人员
    • 开发插件
    • 使用 dotnet nuget push 发布插件
  • 运维/使用人员
    • 使用 dotnet tool安装、更新、卸载宿主
    • 使用 pomelo-cli install/uninstall 安装、更新、卸载插件

现在现在我们来开发一个插件应用。

开发命令行插件

引用 PomeloCli 来创建自己的命令行插件

$ dotnet new classlib -n SamplePlugin
$ cd SamplePlugin
$ dotnet add package PomeloCli -v 1.3.0

我们把上文提到的 EchoCommand 和 HeadCommand 复制到该项目,再添加依赖注入文件 ServiceCollectionExtensions.cs,文件内容见于 docs/sample/4-sample-plugin/ServiceCollectionExtensions.cs

using System;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using PomeloCli;public static class ServiceCollectionExtensions
{/// <summary>/// pomelo-cli load plugin by this method, see/// <see cref="PomeloCli.Plugins.Runtime.PluginResolver.Loading()" />/// </summary>/// <param name="services"></param>/// <returns></returns>public static IServiceCollection AddCommands(this IServiceCollection services){return services.AddTransient<ICommand, EchoCommand>().AddTransient<ICommand, HeadCommand>();}
}

为了能够使得插件运行起来,我们还需要在打包时将依赖添加到 nupkg 文件中。为此需要修改 csproj 添加打包配置,参考 docs/sample/4-sample-plugin/SamplePlugin.csproj,相关原理见出处 How to include package reference files in your nuget

搭建私有 nuget 服务

为了托管我们的工具与插件,我们这里使用 BaGet 搭建轻量的 nuget 服务,docker-compose.yaml 已经提供见 baget。docker 等工具使用请自行查阅。

version: "3.3"
services:baget:image: loicsharma/bagetcontainer_name: bagetports:- "8000:80"volumes:- $PWD/data:/var/baget

我们使用 docker-compose up -d 将其运行起来,baget 将在地址 http://localhost:8000/ 上提供服务。

发布命令行插件

现我们在有了插件和 nuget 服务,可以发布插件了。

$ cd SamplePlugin
$ dotnet pack -o nupkgs -c Debug
$ dotnet nuget push -s http://localhost:8000/v3/index.json nupkgs/SamplePlugin.1.0.0.nupkg

3. 使用 PomeloCli 集成已发布插件

pomelo-cli 是一个 dotnet tool 应用,可以看作命令行宿主,它包含了一组 plugin 命令用来管理我们的命令行插件。

安装命令行宿主

我们使用标准的 dotnet tool CLI 命令安装 PomeloCli,相关参考见 How to manage .NET tools

$ dotnet tool install PomeloCli.Host --version 1.3.0 -g
$ pomelo-cli --help
Usage: PomeloCli.Host [command] [options]Options:-?|-h|--help  Show help information.Commands:configpluginversionRun 'PomeloCli.Host [command] -?|-h|--help' for more information about a command.

可以看到 pomelo-cli 内置了部分命令。

集成命令行插件

pomelo-cli 内置了一组插件,包含了其他插件的管理命令

$ pomelo-cli plugin --help
Usage: PomeloCli.Host plugin [command] [options]Options:-?|-h|--help  Show help information.Commands:installlistuninstallRun 'plugging [command] -?|-h|--help' for more information about a command.

我们用 plugin install 命令安装刚刚发布的插件 SamplePlugin

$ pomelo-cli plugin install SamplePlugin -v 1.0.0 -s http://localhost:8000/v3/index.json
$ pomelo-cli --help
Usage: PomeloCli.Host [command] [options]Options:-?|-h|--help  Show help information.Commands:configecho          display a line of texthead          Print the first 10 lines of each FILE to standard outputpluginversionRun 'PomeloCli.Host [command] -?|-h|--help' for more information about a command.$ pomelo-cli echo --help
display a line of textUsage: PomeloCli.Host echo [options] <input>Arguments:inputOptions:-n|--newline  do not output the trailing newline-?|-h|--help  Show help information.

可以看到 SamplePlugin 包含的 echo 和 head 命令已经被显示在子命令列表中。

卸载命令行插件

pomelo-cli 当然也可以卸载其他插件

$ pomelo-cli plugin uninstall SamplePlugin

卸载命令行宿主

我们使用标准的 dotnet tool CLI 命令卸载 PomeloCli

$ dotnet tool uninstall PomeloCli.Host -g

4. 引用 PomeloCli 开发命令行宿主

你可能需要自己的命令行宿主,这也很容易。

$ dotnet new console -n SampleHost
$ cd SampleHost/
$ dotnet add package PomeloCli
$ dotnet add package PomeloCli.Plugins
$ dotnet build

现在你得到了一个命令宿主,你可以运行它,甚至用它安装插件

$ ./bin/Debug/net8.0/SampleHost.exe --help
Usage: SampleHost [command] [options]Options:-?|-h|--help  Show help information.Commands:pluginRun 'SampleHost [command] -?|-h|--help' for more information about a command.$ ./bin/Debug/net8.0/SampleHost.exe plugin install SamplePlugin -v 1.0.0 -s http://localhost:8000/v3/index.json
...$ ./bin/Debug/net8.0/SampleHost.exe --help
Usage: SampleHost [command] [options]Options:-?|-h|--help  Show help information.Commands:echo          display a line of texthead          Print the first 10 lines of each FILE to standard outputpluginRun 'SampleHost [command] -?|-h|--help' for more information about a command.

其他:异常 NU1102 的处理

当安装插件失败且错误码是NU1102 时,表示未找到对应版本,可以执行命令 $ dotnet nuget locals http-cache --clear 以清理 HTTP 缓存。

info : Restoring packages for C:\Users\leon\.PomeloCli.Host\Plugin.csproj...
info :   GET http://localhost:8000/v3/package/sampleplugin/index.json
info :   OK http://localhost:8000/v3/package/sampleplugin/index.json 2ms
error: NU1102: Unable to find package Sample Plugin with version (>= 1.1.0)
error:   - Found 7 version(s) in http://localhost:8000/v3/index.json [ Nearest version: 1.0.0 ]
error: Package 'SamplePlugin' is incompatible with 'user specified' frameworks in project 'C:\Users\leon\.PomeloCli.Host\Plugin.csproj'.

其他事项

已知问题

  • refit 支持存在问题

路线图

  • 业务插件配置

项目仍然在开发中,欢迎与我交流想法

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/709878.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

华为云CodeArts 12大安全防护机制,端到端全面保障软件供应链安全!

华为云CodeArts推出软件供应链安全解决方案,对软件作业流12个安全威胁点加对应防护机制。全球网络安全事件频发不断,企业纷纷损失惨重。2021年11月,知名logo4j漏洞波及全球多达6万款开源软件,70%以上企业受影响。2022年3月,大型加油站服务商遭到勒索软件攻击,要求其支付2…

MLOps 学习之旅「GitHub 热点速览」

又是 AI 神仙打架的一周,上周 OpenAI 发布了最新的 GPT-4o 模型,而谷歌也紧跟着开源了 Gemma 2 模型。随着 AI 大模型不断地变强,各大科技巨头正利用它们重塑自家的产品,这也让大模型算法工程师变得炙手可热,相关岗位需求正旺。 对于普通程序员来说,想要转型成为大模型算…

【博客园发文技巧】不离开编辑页面,批量添加图片链接和设置图片大小

参考文档:https://www.cnblogs.com/sanshi/p/3794796.html 起因 在博客园写文章,有时需要上传好多大图片,如果这些图片过大,则会导致页面变形。 因此有一个实际的需求,能够在博客园的编辑页面,直接批量修改所有图片的大小,然后给这些图片添加链接,以便点击时转到大图。…

video2blog 视频转图文AI小工具正式开源啦

前言 最近对一些小细节做了很多处理,但是其实还是有非常多的问题,没办法时间毕竟时间有限。为什么在这个时候开源,因为主要功能可以全部跑通了,分支暂时没开发的功能也可以通过其他的工具来替代。 这个工具开发初衷(想法来源),我之前有一篇文章有详细的说明,有兴趣的可…

组策略和bginfo

简介 很多的IT管理员都希望终端操作用户达到一个计算机脱盲的水平,但是理想很丰满,现实很骨感。人生不如事十之八九。 终端用户真的一言难尽。 简单的帮我们看一下CPU,内存,IP地址,这些基础信息,他们做不到。 好在微软发布了bginfo这个软件,BgInfo - Sysinternals | Mic…

css小三角文字平移加旋转

<view class="sanjiao"><view class="slanted-text">饿了么</view></view> /* 三角 */ .sanjiao {width: 0;height: 0;border-left: 40px solid transparent;border-right: 40px solid red;border-bottom: 40px solid transparent…

20240520刷题总结

T1(状态置换,搜索与dp, dp存值结构体) T376。 还是从搜索角度去考虑:时间,前i物品,最多拿多少。 这样我们去设计状态,我一开始设置:时间,前i,值是拿多少。会发现这样会爆。 其实换一下,优化效果更好。前i物品,最多拿j,用的最少时间。 实际转移就是背包。存值就存结构…

SAP:CX_SY_READ_SRC_LINE_TOO_LONG解决

在ABAP程序编辑器中,确保每行的字符数小于72个,将光标放到行结尾,就能在右下角能看到字符总数。 只要行字符都小于72个,dump就不会再出现了。。。。 还有一种方法就是调整一下abap editor的配置,勾上Downwards-Compatible Line Length(72)。在ABAP编辑器菜单点击“实用程序…

error The system will suspend now!

解决 rambo@test2:~$ sudo mkdir /etc/systemd/sleep.conf.d rambo@test2:~$ sudo vim /etc/systemd/sleep.conf.d/nosuspend.conf [Sleep] AllowSuspend=no AllowHibernation=no AllowSuspendThenHibernate=no AllowHybridSleep=no

Hello-FPGA Camera link Full Receiver FMC Card User Manual

Hello-FPGA info@hello-fpga.cOM Hello-FPGA Camera link Full Receiver FMC Card User Manual目录 Hello-FPGA Camera link Full Receiver FMC Card User Manual 1 Hello-FPGA Camera link Full Receiver FMC Card User Manual 3 1 Camera link 简介 3 2 Camera link FPGA FUL…

[转帖]Redis系列:深刻理解高性能Redis的本质

https://heapdump.cn/monographic/detail/49/5461379 1 背景 分布式系统绕不开的核心之一的就是数据缓存,有了缓存的支撑,系统的整体吞吐量会有很大的提升。通过使用缓存,我们把频繁查询的数据由磁盘调度到缓存中,保证数据的高效率读写。当然,除了在内存内运行还远远不够,…