...

Source file src/k8s.io/component-base/term/term.go

Documentation: k8s.io/component-base/term

     1  /*
     2  Copyright 2019 The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  package term
    18  
    19  import (
    20  	"fmt"
    21  	"io"
    22  
    23  	"github.com/moby/term"
    24  )
    25  
    26  // TerminalSize returns the current width and height of the user's terminal. If it isn't a terminal,
    27  // nil is returned. On error, zero values are returned for width and height.
    28  // Usually w must be the stdout of the process. Stderr won't work.
    29  func TerminalSize(w io.Writer) (int, int, error) {
    30  	outFd, isTerminal := term.GetFdInfo(w)
    31  	if !isTerminal {
    32  		return 0, 0, fmt.Errorf("given writer is no terminal")
    33  	}
    34  	winsize, err := term.GetWinsize(outFd)
    35  	if err != nil {
    36  		return 0, 0, err
    37  	}
    38  	return int(winsize.Width), int(winsize.Height), nil
    39  }
    40  

View as plain text