mirror of
https://github.com/moby/buildkit.git
synced 2026-08-04 06:40:22 +00:00
Remove gogoproto in favor of the standard protobuf compiler. This removes any nonstandard extensions that were part of gogoproto such as the custom types. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
42 lines
905 B
Go
42 lines
905 B
Go
package errdefs
|
|
|
|
import (
|
|
fmt "fmt"
|
|
|
|
"github.com/containerd/typeurl/v2"
|
|
"github.com/moby/buildkit/util/grpcerrors"
|
|
)
|
|
|
|
func init() {
|
|
typeurl.Register((*Subrequest)(nil), "github.com/moby/buildkit", "errdefs.Subrequest+json")
|
|
}
|
|
|
|
type UnsupportedSubrequestError struct {
|
|
*Subrequest
|
|
error
|
|
}
|
|
|
|
func (e *UnsupportedSubrequestError) Error() string {
|
|
msg := fmt.Sprintf("unsupported request %s", e.Subrequest.Name)
|
|
if e.error != nil {
|
|
msg += ": " + e.error.Error()
|
|
}
|
|
return msg
|
|
}
|
|
|
|
func (e *UnsupportedSubrequestError) Unwrap() error {
|
|
return e.error
|
|
}
|
|
|
|
func (e *UnsupportedSubrequestError) ToProto() grpcerrors.TypedErrorProto {
|
|
return e.Subrequest
|
|
}
|
|
|
|
func NewUnsupportedSubrequestError(name string) error {
|
|
return &UnsupportedSubrequestError{Subrequest: &Subrequest{Name: name}}
|
|
}
|
|
|
|
func (v *Subrequest) WrapError(err error) error {
|
|
return &UnsupportedSubrequestError{error: err, Subrequest: v}
|
|
}
|