open-vault/vendor/google.golang.org/grpc/go17.go

73 lines
1.9 KiB
Go
Raw Normal View History

2017-05-24 13:34:59 +00:00
// +build go1.7
/*
*
2017-06-16 15:14:18 +00:00
* Copyright 2016 gRPC authors.
2017-05-24 13:34:59 +00:00
*
2017-06-16 15:14:18 +00:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2017-05-24 13:34:59 +00:00
*
2017-06-16 15:14:18 +00:00
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2017-05-24 13:34:59 +00:00
*
*/
package grpc
import (
2017-05-25 01:07:45 +00:00
"context"
2017-10-27 19:06:04 +00:00
"fmt"
2017-05-25 01:07:45 +00:00
"io"
2017-05-24 13:34:59 +00:00
"net"
"net/http"
2017-07-18 14:15:54 +00:00
netctx "golang.org/x/net/context"
2017-05-25 01:07:45 +00:00
"google.golang.org/grpc/codes"
2018-07-11 20:04:02 +00:00
"google.golang.org/grpc/internal/transport"
2017-05-25 01:07:45 +00:00
"google.golang.org/grpc/status"
2017-05-24 13:34:59 +00:00
)
// dialContext connects to the address on the named network.
func dialContext(ctx context.Context, network, address string) (net.Conn, error) {
return (&net.Dialer{}).DialContext(ctx, network, address)
}
func sendHTTPRequest(ctx context.Context, req *http.Request, conn net.Conn) error {
req = req.WithContext(ctx)
if err := req.Write(conn); err != nil {
2017-10-27 19:06:04 +00:00
return fmt.Errorf("failed to write the HTTP request: %v", err)
2017-05-24 13:34:59 +00:00
}
return nil
}
2017-05-25 01:07:45 +00:00
// toRPCErr converts an error into an error from the status package.
func toRPCErr(err error) error {
2018-02-11 00:29:52 +00:00
if err == nil || err == io.EOF {
return err
}
2018-10-03 16:55:26 +00:00
if err == io.ErrUnexpectedEOF {
return status.Error(codes.Internal, err.Error())
}
2017-05-25 01:07:45 +00:00
if _, ok := status.FromError(err); ok {
return err
}
switch e := err.(type) {
case transport.ConnectionError:
2017-06-16 15:14:18 +00:00
return status.Error(codes.Unavailable, e.Desc)
2017-05-25 01:07:45 +00:00
default:
switch err {
case context.DeadlineExceeded, netctx.DeadlineExceeded:
return status.Error(codes.DeadlineExceeded, err.Error())
case context.Canceled, netctx.Canceled:
return status.Error(codes.Canceled, err.Error())
}
}
return status.Error(codes.Unknown, err.Error())
}