forked from LaconicNetwork/kompose
Something within golang.org/x/sys messed up and it doesn't help that we
have three different projects using different versions.
This vendor update specifies a golang.org/x/sys as well as fixes the
previous compiling issues with Windows/Linux/macOS builds.
See issue:
```sh
gox -osarch="darwin/amd64 linux/amd64 linux/arm windows/amd64"
-output="bin/kompose-{{.OS}}-{{.Arch}}" -ldflags="-w -X
github.com/kubernetes/kompose/pkg/version.GITCOMMIT=42e7f0e"
Number of parallel builds: 1
--> windows/amd64: github.com/kubernetes/kompose
--> linux/amd64: github.com/kubernetes/kompose
--> darwin/amd64: github.com/kubernetes/kompose
--> linux/arm: github.com/kubernetes/kompose
1 errors occurred:
--> windows/amd64 error: exit status 2
Stderr: #
github.com/kubernetes/kompose/vendor/golang.org/x/crypto/ssh/terminal
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:42: undefined:
windows.ENABLE_ECHO_INPUT
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:42: undefined:
windows.ENABLE_PROCESSED_INPUT
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:42: undefined:
windows.ENABLE_LINE_INPUT
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:42: undefined:
windows.ENABLE_PROCESSED_OUTPUT
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:43: undefined:
windows.SetConsoleMode
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:62: undefined:
windows.SetConsoleMode
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:67: undefined:
windows.ConsoleScreenBufferInfo
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:68: undefined:
windows.GetConsoleScreenBufferInfo
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:91: undefined:
windows.ENABLE_ECHO_INPUT
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:92: undefined:
windows.ENABLE_PROCESSED_INPUT
vendor/golang.org/x/crypto/ssh/terminal/util_windows.go:92: too many
errors
```
67 lines
1.5 KiB
Go
67 lines
1.5 KiB
Go
// Copyright 2012 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 !plan9
|
|
|
|
// Package fsnotify provides a platform-independent interface for file system notifications.
|
|
package fsnotify
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
// Event represents a single file system notification.
|
|
type Event struct {
|
|
Name string // Relative path to the file or directory.
|
|
Op Op // File operation that triggered the event.
|
|
}
|
|
|
|
// Op describes a set of file operations.
|
|
type Op uint32
|
|
|
|
// These are the generalized file operations that can trigger a notification.
|
|
const (
|
|
Create Op = 1 << iota
|
|
Write
|
|
Remove
|
|
Rename
|
|
Chmod
|
|
)
|
|
|
|
func (op Op) String() string {
|
|
// Use a buffer for efficient string concatenation
|
|
var buffer bytes.Buffer
|
|
|
|
if op&Create == Create {
|
|
buffer.WriteString("|CREATE")
|
|
}
|
|
if op&Remove == Remove {
|
|
buffer.WriteString("|REMOVE")
|
|
}
|
|
if op&Write == Write {
|
|
buffer.WriteString("|WRITE")
|
|
}
|
|
if op&Rename == Rename {
|
|
buffer.WriteString("|RENAME")
|
|
}
|
|
if op&Chmod == Chmod {
|
|
buffer.WriteString("|CHMOD")
|
|
}
|
|
if buffer.Len() == 0 {
|
|
return ""
|
|
}
|
|
return buffer.String()[1:] // Strip leading pipe
|
|
}
|
|
|
|
// String returns a string representation of the event in the form
|
|
// "file: REMOVE|WRITE|..."
|
|
func (e Event) String() string {
|
|
return fmt.Sprintf("%q: %s", e.Name, e.Op.String())
|
|
}
|
|
|
|
// Common errors that can be reported by a watcher
|
|
var ErrEventOverflow = errors.New("fsnotify queue overflow")
|