containerd: rename FifoSet to FIFOSet

Per Go's style guidelines, `Fifo` should be `FIFO` since it is an
initialism.

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day
2017-06-30 14:16:56 -07:00
parent 3332042ab6
commit d738d6d1e4
4 changed files with 8 additions and 8 deletions

10
io.go
View File

@@ -27,7 +27,7 @@ func (i *IO) Close() error {
type IOCreation func() (*IO, error)
type IOAttach func(*FifoSet) (*IO, error)
type IOAttach func(*FIFOSet) (*IO, error)
func NewIO(stdin io.Reader, stdout, stderr io.Writer) IOCreation {
return NewIOWithTerminal(stdin, stdout, stderr, false)
@@ -61,7 +61,7 @@ func NewIOWithTerminal(stdin io.Reader, stdout, stderr io.Writer, terminal bool)
}
func WithAttach(stdin io.Reader, stdout, stderr io.Writer) IOAttach {
return func(paths *FifoSet) (*IO, error) {
return func(paths *FIFOSet) (*IO, error) {
if paths == nil {
return nil, fmt.Errorf("cannot attach to existing fifos")
}
@@ -97,7 +97,7 @@ func StdioTerminal() (*IO, error) {
}
// NewFifos returns a new set of fifos for the task
func NewFifos() (*FifoSet, error) {
func NewFifos() (*FIFOSet, error) {
root := filepath.Join(os.TempDir(), "containerd")
if err := os.MkdirAll(root, 0700); err != nil {
return nil, err
@@ -106,7 +106,7 @@ func NewFifos() (*FifoSet, error) {
if err != nil {
return nil, err
}
return &FifoSet{
return &FIFOSet{
Dir: dir,
In: filepath.Join(dir, "stdin"),
Out: filepath.Join(dir, "stdout"),
@@ -114,7 +114,7 @@ func NewFifos() (*FifoSet, error) {
}, nil
}
type FifoSet struct {
type FIFOSet struct {
// Dir is the directory holding the task fifos
Dir string
In, Out, Err string