5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 14:52:30 +00:00
matterbridge/vendor/golang.org/x/term/term.go

59 lines
1.7 KiB
Go
Raw Normal View History

2021-05-29 22:25:30 +00:00
// Copyright 2019 The Go Authors. All rights reserved.
2017-12-03 00:24:05 +00:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2021-05-29 22:25:30 +00:00
// Package term provides support functions for dealing with terminals, as
2017-12-03 00:24:05 +00:00
// 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)
2021-05-29 22:25:30 +00:00
package term
2017-12-03 00:24:05 +00:00
2021-05-29 22:25:30 +00:00
// State contains the state of a terminal.
type State struct {
state
}
2017-12-03 00:24:05 +00:00
// IsTerminal returns whether the given file descriptor is a terminal.
2017-12-03 00:24:05 +00:00
func IsTerminal(fd int) bool {
2021-05-29 22:25:30 +00:00
return isTerminal(fd)
2017-12-03 00:24:05 +00:00
}
2021-05-29 22:25:30 +00:00
// MakeRaw puts the terminal connected to the given file descriptor into raw
2017-12-03 00:24:05 +00:00
// mode and returns the previous state of the terminal so that it can be
// restored.
func MakeRaw(fd int) (*State, error) {
2021-05-29 22:25:30 +00:00
return makeRaw(fd)
2017-12-03 00:24:05 +00:00
}
// 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) {
2021-05-29 22:25:30 +00:00
return getState(fd)
2017-12-03 00:24:05 +00:00
}
// Restore restores the terminal connected to the given file descriptor to a
// previous state.
2021-05-29 22:25:30 +00:00
func Restore(fd int, oldState *State) error {
return restore(fd, oldState)
2017-12-03 00:24:05 +00:00
}
2021-05-29 22:25:30 +00:00
// GetSize returns the visible dimensions of the given terminal.
//
// These dimensions don't include any scrollback buffer height.
2017-12-03 00:24:05 +00:00
func GetSize(fd int) (width, height int, err error) {
2021-05-29 22:25:30 +00:00
return getSize(fd)
2017-12-03 00:24:05 +00:00
}
// 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) {
2021-05-29 22:25:30 +00:00
return readPassword(fd)
2017-12-03 00:24:05 +00:00
}