util_windows.go 3.03 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build windows

// Package terminal provides support functions for dealing with terminals, as
// commonly found on UNIX systems.
//
// Putting a terminal into raw mode is the most common requirement:
//
// 	oldState, err := terminal.MakeRaw(0)
// 	if err != nil {
// 	        panic(err)
// 	}
// 	defer terminal.Restore(0, oldState)
package terminal

import (
20 21
	"os"

22
	"golang.org/x/sys/windows"
23 24 25 26 27 28
)

type State struct {
	mode uint32
}

29
// IsTerminal returns whether the given file descriptor is a terminal.
30 31
func IsTerminal(fd int) bool {
	var st uint32
32 33
	err := windows.GetConsoleMode(windows.Handle(fd), &st)
	return err == nil
34 35 36 37 38 39 40
}

// MakeRaw put the terminal connected to the given file descriptor into raw
// mode and returns the previous state of the terminal so that it can be
// restored.
func MakeRaw(fd int) (*State, error) {
	var st uint32
41 42
	if err := windows.GetConsoleMode(windows.Handle(fd), &st); err != nil {
		return nil, err
43
	}
44 45 46
	raw := st &^ (windows.ENABLE_ECHO_INPUT | windows.ENABLE_PROCESSED_INPUT | windows.ENABLE_LINE_INPUT | windows.ENABLE_PROCESSED_OUTPUT)
	if err := windows.SetConsoleMode(windows.Handle(fd), raw); err != nil {
		return nil, err
47 48 49 50 51 52 53 54
	}
	return &State{st}, nil
}

// GetState returns the current state of a terminal which may be useful to
// restore the terminal after a signal.
func GetState(fd int) (*State, error) {
	var st uint32
55 56
	if err := windows.GetConsoleMode(windows.Handle(fd), &st); err != nil {
		return nil, err
57 58 59 60 61 62 63
	}
	return &State{st}, nil
}

// Restore restores the terminal connected to the given file descriptor to a
// previous state.
func Restore(fd int, state *State) error {
64
	return windows.SetConsoleMode(windows.Handle(fd), state.mode)
65 66 67 68
}

// GetSize returns the dimensions of the given terminal.
func GetSize(fd int) (width, height int, err error) {
69 70 71
	var info windows.ConsoleScreenBufferInfo
	if err := windows.GetConsoleScreenBufferInfo(windows.Handle(fd), &info); err != nil {
		return 0, 0, err
72
	}
73
	return int(info.Size.X), int(info.Size.Y), nil
74 75 76 77 78 79 80
}

// ReadPassword reads a line of input from a terminal without local echo.  This
// is commonly used for inputting passwords and other sensitive data. The slice
// returned does not include the \n.
func ReadPassword(fd int) ([]byte, error) {
	var st uint32
81 82
	if err := windows.GetConsoleMode(windows.Handle(fd), &st); err != nil {
		return nil, err
83 84 85
	}
	old := st

86 87 88 89
	st &^= (windows.ENABLE_ECHO_INPUT)
	st |= (windows.ENABLE_PROCESSED_INPUT | windows.ENABLE_LINE_INPUT | windows.ENABLE_PROCESSED_OUTPUT)
	if err := windows.SetConsoleMode(windows.Handle(fd), st); err != nil {
		return nil, err
90 91
	}

92 93 94 95 96 97 98
	defer windows.SetConsoleMode(windows.Handle(fd), old)

	var h windows.Handle
	p, _ := windows.GetCurrentProcess()
	if err := windows.DuplicateHandle(p, windows.Handle(fd), p, &h, 0, false, windows.DUPLICATE_SAME_ACCESS); err != nil {
		return nil, err
	}
99

100 101 102
	f := os.NewFile(uintptr(h), "stdin")
	defer f.Close()
	return readPasswordLine(f)
103
}