首页 > 其他分享 >golang封装命令做pipe管道

golang封装命令做pipe管道

时间:2023-12-16 16:45:28浏览次数:318  
标签:pipe 封装 err nil process fmt golang read io

package main

import (
	"fmt"
	"io"
	"os/exec"
)

func main() {
	fmt.Println("vim-go")
	// pipeReader, pipeWriter := io.Pipe()

	binPath := "../03-ncpk-nvm/nvm"
	binArgs := []string{
		"-debug",
		"true",
		//"--file",
		//"./resource/script000-debug.nsmb",
		//"--contrl",
		//"./resource/000-uc-control.json",
		//"--param",
		//"./resource/000-uc-param.json",
	}

	// 进程绑定输入和输出到管道
	process := exec.Command(binPath, binArgs...)

	//process.Stdout = pipeWriter
	//process.Stdin = pipeReader
	stdin, err := process.StdinPipe()
	if err != nil {
		panic(err)
	}
	stdout, err := process.StdoutPipe()
	if err != nil {
		panic(err)
	}
	stderr, err := process.StderrPipe()
	if err != nil {
		panic(err)
	}

	chQuit := make(chan int)
	go func(ch chan int) {
		for {
			bytBuf := make([]byte, 1024)
			n, err_read := stderr.Read(bytBuf)
			if err_read != nil {
				if err_read == io.EOF {
					fmt.Printf("[stderr] eof, n=%v\n", n)
					ch <- 1
					return
				} else {
					panic(err_read)
				}
			}
			fmt.Printf("[stderr] n=%v, recv:\n%v\n", n, string(bytBuf))
		}
	}(chQuit)

	go func() {
		for {
			bytBuf := make([]byte, 1024)
			fmt.Println("[stdout] wait")
			n, err_read := stdout.Read(bytBuf)
			if err_read != nil {
				panic(err_read)
			}
			fmt.Printf("[stdout] n=%v, recv:\n%v\n", n, string(bytBuf))
		}
	}()
	err = process.Start()
	if err != nil {
		panic(err)
	}

	for {
		var input string
		fmt.Scan(&input)

		sw := input + "\n"
		bytWrite := []byte(sw)
		nw, err_write := stdin.Write(bytWrite)
		if err_write != nil {
			panic(err_write)
		}
		fmt.Printf("[stdin] n=%v, send: %v\n", nw, sw)
		//	time.Sleep(10 * time.Millisecond)
	}

	<-chQuit

	select {}
}

标签:pipe,封装,err,nil,process,fmt,golang,read,io
From: https://www.cnblogs.com/jiftle/p/17904999.html

相关文章

  • Golang 配置文件动态更变(viper)
    一.下载包gogetgithub.com/spf13/viper二.源码1funcLoadConf(fpnamestring){2ini:=viper.New()3ini.SetConfigFile(fpname)45ini.SetDefault("database.dbname","esaletest")6ini.SetDefault("database.dbhos......
  • Golang的闭包和匿名函数
    Golang语言支持匿名函数,这些匿名函数也被称为闭包。匿名函数是一种特殊类型的函数,它没有名称,而闭包可以看作是一种特殊类型的匿名函数,尽管在实践中有微小的区别。 Golang中的匿名函数匿名函数也可以称为字面函数、lambda函数或闭包。闭包的概念源于lambda计算中表达式的数......
  • Golang io.Pipe()函数及示例
    https://geek-docs.com/go-tutorials/go-examples/g_io-pipe-function-in-golang-with-examples.html 在Go语言中,io包提供了基本的I/O原语接口,其主要工作是封装这些原语的正在进行的实现。Go语言中的Pipe()函数用于创建并发的内存管道,在将期望io.Reader的代码与期望io.Writer......
  • 进程间通信-信号-pipe-fifo
    进程间通信-信号-pipe-fifo编译fifo文件夹的程序运行fifo文件夹的程序代码说明1.consumer.c文件包含一个用来从FIFO(命名管道)读取数据的C程序。以下是它的主要组件和系统调用的分解:main()函数:初始化文件描述符(pipe_fd)、返回状态(res)、读取数据的缓冲区以及字节数计......
  • golang http post 执行函数效率最高,速度最快实现
    在Go语言中,使用标准库的net/http包可以进行HTTPPOST请求。为了获得最高的执行效率和最快的速度,可以使用http.Client结构体来管理和复用HTTP连接,并使用http.NewRequest创建请求对象,然后使用http.Client的Do方法发送请求。以下是一个示例代码,展示如何使用Go语言的net/http包执行高效......
  • 封装单选框
    <template><divclass="radioButtons"><labelv-for="optioninoptions":class="{'is-selected':selectedValue===option.value}":key="option.valu......
  • Footprint Expert创建Allegro封装没有焊盘的解决办法
    在创建Allegro封装之前,需要将padpath和psmpath设置为指向当前工作目录。1.配置“padpath”和“psmpath” Setup > UserPreferences在padpath, psmpath列表的顶部选择新建(插入)并放置一个“.”(英文句点)作为目录名称,移动“.”到表格顶部。指示PCB编辑器在当前工作目......
  • Tekton pipelineruns 基础
    pipelineruns概述PipelineRun允许你在集群上实例化和执行Pipeline。一个Pipeline指定一个或多个Tasks,按照期望的执行顺序执行。PipelineRun按照指定的顺序执行Pipeline中的Tasks,直到所有Tasks都成功执行或失败。PipelineRun会自动为Pipeline中的每个Task创建相应的taskrun。pipeli......
  • Tekton Pipelines 基础
    Pipelines概述Pipeline是Tasks的集合,作为持续集成流的一部分,您可以定义并按照特定的执行顺序排列这些Tasks。Pipeline中的每个Tasks在Kubernetes集群上作为Pod执行。您可以配置各种执行条件来满足您的业务需求。Pipeline使用When表达式when表达式input:被评估的内容,支持使用静态......
  • Sb9-关于使用别人封装的C#控件出现异常如何处理
    偶然间我在网上看到一个封装了DataGridView控件的第三方控件,里面有很多是我需要的效果。所以就直接拿来使用了,但是今天突然发现,这个控件里面的“TreeGridView”表格控件在没有绑定数据的时候,如果点击回车键的话会抛出一个空指针的异常。在AdvancedDataGridView.TreeGridView.O......