2018-08-01 13:16:49 -07:00
|
|
|
|
// Copyright 2018 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.
|
|
|
|
|
|
|
|
|
|
// Package errors implements functions to manipulate errors.
|
|
|
|
|
package errors
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
2019-09-06 16:57:46 -07:00
|
|
|
|
|
|
|
|
|
"google.golang.org/protobuf/internal/detrand"
|
2018-08-01 13:16:49 -07:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// New formats a string according to the format specifier and arguments and
|
|
|
|
|
// returns an error that has a "proto" prefix.
|
|
|
|
|
func New(f string, x ...interface{}) error {
|
|
|
|
|
for i := 0; i < len(x); i++ {
|
2019-02-27 13:37:06 -08:00
|
|
|
|
if e, ok := x[i].(*prefixError); ok {
|
2018-08-01 13:16:49 -07:00
|
|
|
|
x[i] = e.s // avoid "proto: " prefix when chaining
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return &prefixError{s: fmt.Sprintf(f, x...)}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type prefixError struct{ s string }
|
|
|
|
|
|
2019-09-06 16:57:46 -07:00
|
|
|
|
var prefix = func() string {
|
2019-09-07 12:06:05 -07:00
|
|
|
|
// Deliberately introduce instability into the error message string to
|
|
|
|
|
// discourage users from performing error string comparisons.
|
2019-09-06 16:57:46 -07:00
|
|
|
|
if detrand.Bool() {
|
2019-09-07 12:06:05 -07:00
|
|
|
|
return "proto: " // use non-breaking spaces (U+00a0)
|
|
|
|
|
} else {
|
|
|
|
|
return "proto: " // use regular spaces (U+0020)
|
2019-09-06 16:57:46 -07:00
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
func (e *prefixError) Error() string {
|
|
|
|
|
return prefix + e.s
|
|
|
|
|
}
|
2019-06-19 09:28:29 -07:00
|
|
|
|
|
|
|
|
|
func InvalidUTF8(name string) error {
|
|
|
|
|
return New("field %v contains invalid UTF-8", name)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func RequiredNotSet(name string) error {
|
|
|
|
|
return New("required field %v not set", name)
|
|
|
|
|
}
|