-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterm_open_posix.go
More file actions
33 lines (27 loc) · 845 Bytes
/
term_open_posix.go
File metadata and controls
33 lines (27 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// +build !windows,!solaris
package term
import (
"os"
"syscall"
"github.com/pkg/term/termios"
)
// Open opens an asynchronous communications port.
func Open(name string, options ...func(*Term) error) (*Term, error) {
fd, e := syscall.Open(name, syscall.O_NOCTTY|syscall.O_CLOEXEC|syscall.O_NDELAY|syscall.O_RDWR, 0666)
if e != nil {
return nil, &os.PathError{"open", name, e}
}
t := Term{name: name, fd: fd}
if err := termios.Tcgetattr(uintptr(t.fd), &t.orig); err != nil {
return nil, err
}
if err := t.SetOption(options...); err != nil {
return nil, err
}
return &t, syscall.SetNonblock(t.fd, false)
}
// Restore restores the state of the terminal captured at the point that
// the terminal was originally opened.
func (t *Term) Restore() error {
return termios.Tcsetattr(uintptr(t.fd), termios.TCIOFLUSH, &t.orig)
}