2020-02-25 18:03:21 +01:00
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CutoffMode describes the possible delete modes in the config
|
|
|
|
type CutoffMode byte
|
|
|
|
|
|
|
|
// MaxTransferMode constants
|
|
|
|
const (
|
|
|
|
CutoffModeHard CutoffMode = iota
|
|
|
|
CutoffModeSoft
|
|
|
|
CutoffModeCautious
|
|
|
|
CutoffModeDefault = CutoffModeHard
|
|
|
|
)
|
|
|
|
|
|
|
|
var cutoffModeToString = []string{
|
|
|
|
CutoffModeHard: "HARD",
|
|
|
|
CutoffModeSoft: "SOFT",
|
|
|
|
CutoffModeCautious: "CAUTIOUS",
|
|
|
|
}
|
|
|
|
|
|
|
|
// String turns a LogLevel into a string
|
|
|
|
func (m CutoffMode) String() string {
|
|
|
|
if m >= CutoffMode(len(cutoffModeToString)) {
|
|
|
|
return fmt.Sprintf("CutoffMode(%d)", m)
|
|
|
|
}
|
|
|
|
return cutoffModeToString[m]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set a LogLevel
|
|
|
|
func (m *CutoffMode) Set(s string) error {
|
|
|
|
for n, name := range cutoffModeToString {
|
|
|
|
if s != "" && name == strings.ToUpper(s) {
|
|
|
|
*m = CutoffMode(n)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2022-06-08 22:54:39 +02:00
|
|
|
return fmt.Errorf("unknown cutoff mode %q", s)
|
2020-02-25 18:03:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Type of the value
|
|
|
|
func (m *CutoffMode) Type() string {
|
|
|
|
return "string"
|
|
|
|
}
|
2020-12-11 18:48:09 +01:00
|
|
|
|
|
|
|
// UnmarshalJSON makes sure the value can be parsed as a string or integer in JSON
|
|
|
|
func (m *CutoffMode) UnmarshalJSON(in []byte) error {
|
|
|
|
return UnmarshalJSONFlag(in, m, func(i int64) error {
|
|
|
|
if i < 0 || i >= int64(len(cutoffModeToString)) {
|
2022-06-08 22:54:39 +02:00
|
|
|
return fmt.Errorf("out of range cutoff mode %d", i)
|
2020-12-11 18:48:09 +01:00
|
|
|
}
|
|
|
|
*m = (CutoffMode)(i)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|