etcd/vendor/github.com/creack/pty
Piotr Tabor b151a47d1b tests/e2e: Update github.com/creack/pty v1.1.7 -> v1.1.11
The fix is needed to mitigate consequences of
https://github.com/golang/go/issues/29458 "golang breaking change" that
causes following test failures on etcd end:

--- FAIL: TestCtlV2Set (0.00s)
    ctl_v2_test.go:552: could not start etcd process cluster (fork/exec ../../bin/etcd: Setctty set but Ctty not valid in child)
--- FAIL: TestCtlV2SetQuorum (0.00s)
    ctl_v2_test.go:552: could not start etcd process cluster (fork/exec ../../bin/etcd: Setctty set but Ctty not valid in child)
--- FAIL: TestCtlV2SetClientTLS (0.00s)
    ctl_v2_test.go:552: could not start etcd process cluster (fork/exec ../../bin/etcd: Setctty set but Ctty not valid in child)
2020-08-04 16:12:12 +02:00
..
.gitignore vendor: regenerate 2020-05-30 14:36:18 -07:00
Dockerfile.riscv tests/e2e: Update github.com/creack/pty v1.1.7 -> v1.1.11 2020-08-04 16:12:12 +02:00
LICENSE vendor: update 2019-07-24 14:09:50 -07:00
README.md vendor: regenerate 2020-05-30 14:36:18 -07:00
doc.go vendor: update 2019-07-24 14:09:50 -07:00
go.mod tests/e2e: Update github.com/creack/pty v1.1.7 -> v1.1.11 2020-08-04 16:12:12 +02:00
ioctl.go vendor: update 2019-07-24 14:09:50 -07:00
ioctl_bsd.go vendor: update 2019-07-24 14:09:50 -07:00
ioctl_solaris.go vendor: update 2019-07-24 14:09:50 -07:00
mktypes.bash vendor: regenerate 2020-05-30 14:36:18 -07:00
pty_darwin.go vendor: update 2019-07-24 14:09:50 -07:00
pty_dragonfly.go vendor: update 2019-07-24 14:09:50 -07:00
pty_freebsd.go vendor: update 2019-07-24 14:09:50 -07:00
pty_linux.go vendor: update 2019-07-24 14:09:50 -07:00
pty_openbsd.go vendor: update 2019-07-24 14:09:50 -07:00
pty_solaris.go vendor: update 2019-07-24 14:09:50 -07:00
pty_unsupported.go vendor: update 2019-07-24 14:09:50 -07:00
run.go tests/e2e: Update github.com/creack/pty v1.1.7 -> v1.1.11 2020-08-04 16:12:12 +02:00
test_crosscompile.sh tests/e2e: Update github.com/creack/pty v1.1.7 -> v1.1.11 2020-08-04 16:12:12 +02:00
util.go vendor: update 2019-07-24 14:09:50 -07:00
util_solaris.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_386.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_amd64.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_arm.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_arm64.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_dragonfly_amd64.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_freebsd_386.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_freebsd_amd64.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_freebsd_arm.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_freebsd_arm64.go tests/e2e: Update github.com/creack/pty v1.1.7 -> v1.1.11 2020-08-04 16:12:12 +02:00
ztypes_mipsx.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_openbsd_32bit_int.go tests/e2e: Update github.com/creack/pty v1.1.7 -> v1.1.11 2020-08-04 16:12:12 +02:00
ztypes_ppc64.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_ppc64le.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_riscvx.go vendor: update 2019-07-24 14:09:50 -07:00
ztypes_s390x.go vendor: update 2019-07-24 14:09:50 -07:00

README.md

pty

Pty is a Go package for using unix pseudo-terminals.

Install

go get github.com/creack/pty

Example

Command

package main

import (
	"github.com/creack/pty"
	"io"
	"os"
	"os/exec"
)

func main() {
	c := exec.Command("grep", "--color=auto", "bar")
	f, err := pty.Start(c)
	if err != nil {
		panic(err)
	}

	go func() {
		f.Write([]byte("foo\n"))
		f.Write([]byte("bar\n"))
		f.Write([]byte("baz\n"))
		f.Write([]byte{4}) // EOT
	}()
	io.Copy(os.Stdout, f)
}

Shell

package main

import (
        "io"
        "log"
        "os"
        "os/exec"
        "os/signal"
        "syscall"

        "github.com/creack/pty"
        "golang.org/x/crypto/ssh/terminal"
)

func test() error {
        // Create arbitrary command.
        c := exec.Command("bash")

        // Start the command with a pty.
        ptmx, err := pty.Start(c)
        if err != nil {
                return err
        }
        // Make sure to close the pty at the end.
        defer func() { _ = ptmx.Close() }() // Best effort.

        // Handle pty size.
        ch := make(chan os.Signal, 1)
        signal.Notify(ch, syscall.SIGWINCH)
        go func() {
                for range ch {
                        if err := pty.InheritSize(os.Stdin, ptmx); err != nil {
                                log.Printf("error resizing pty: %s", err)
                        }
                }
        }()
        ch <- syscall.SIGWINCH // Initial resize.

        // Set stdin in raw mode.
        oldState, err := terminal.MakeRaw(int(os.Stdin.Fd()))
        if err != nil {
                panic(err)
        }
        defer func() { _ = terminal.Restore(int(os.Stdin.Fd()), oldState) }() // Best effort.

        // Copy stdin to the pty and the pty to stdout.
        go func() { _, _ = io.Copy(ptmx, os.Stdin) }()
        _, _ = io.Copy(os.Stdout, ptmx)

        return nil
}

func main() {
        if err := test(); err != nil {
                log.Fatal(err)
        }
}