mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-24 20:52:22 +00:00
58 lines
1.7 KiB
Go
Executable File
58 lines
1.7 KiB
Go
Executable File
package gateway
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/grpc-ecosystem/grpc-gateway/examples/proto/examplepb"
|
|
gwruntime "github.com/grpc-ecosystem/grpc-gateway/runtime"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
// newGateway returns a new gateway server which translates HTTP into gRPC.
|
|
func newGateway(ctx context.Context, conn *grpc.ClientConn, opts []gwruntime.ServeMuxOption) (http.Handler, error) {
|
|
|
|
mux := gwruntime.NewServeMux(opts...)
|
|
|
|
for _, f := range []func(context.Context, *gwruntime.ServeMux, *grpc.ClientConn) error{
|
|
examplepb.RegisterEchoServiceHandler,
|
|
examplepb.RegisterStreamServiceHandler,
|
|
examplepb.RegisterABitOfEverythingServiceHandler,
|
|
examplepb.RegisterFlowCombinationHandler,
|
|
} {
|
|
if err := f(ctx, mux, conn); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return mux, nil
|
|
}
|
|
|
|
func dial(ctx context.Context, network, addr string) (*grpc.ClientConn, error) {
|
|
switch network {
|
|
case "tcp":
|
|
return dialTCP(ctx, addr)
|
|
case "unix":
|
|
return dialUnix(ctx, addr)
|
|
default:
|
|
return nil, fmt.Errorf("unsupported network type %q", network)
|
|
}
|
|
}
|
|
|
|
// dialTCP creates a client connection via TCP.
|
|
// "addr" must be a valid TCP address with a port number.
|
|
func dialTCP(ctx context.Context, addr string) (*grpc.ClientConn, error) {
|
|
return grpc.DialContext(ctx, addr, grpc.WithInsecure())
|
|
}
|
|
|
|
// dialUnix creates a client connection via a unix domain socket.
|
|
// "addr" must be a valid path to the socket.
|
|
func dialUnix(ctx context.Context, addr string) (*grpc.ClientConn, error) {
|
|
d := func(addr string, timeout time.Duration) (net.Conn, error) {
|
|
return net.DialTimeout("unix", addr, timeout)
|
|
}
|
|
return grpc.DialContext(ctx, addr, grpc.WithInsecure(), grpc.WithDialer(d))
|
|
}
|