blob: 716895036423b23494ac8b83d25b2c72c6d62736 [file] [log] [blame]
Girish Kumar2ed051b2020-07-28 16:35:25 +00001// Copyright 2016 Michal Witkowski. All Rights Reserved.
2// See LICENSE for licensing terms.
3
4/*
5`grpc_middleware` is a collection of gRPC middleware packages: interceptors, helpers and tools.
6
7Middleware
8
9gRPC is a fantastic RPC middleware, which sees a lot of adoption in the Golang world. However, the
10upstream gRPC codebase is relatively bare bones.
11
12This package, and most of its child packages provides commonly needed middleware for gRPC:
13client-side interceptors for retires, server-side interceptors for input validation and auth,
14functions for chaining said interceptors, metadata convenience methods and more.
15
16Chaining
17
18By default, gRPC doesn't allow one to have more than one interceptor either on the client nor on
19the server side. `grpc_middleware` provides convenient chaining methods
20
21Simple way of turning a multiple interceptors into a single interceptor. Here's an example for
22server chaining:
23
24 myServer := grpc.NewServer(
25 grpc.StreamInterceptor(grpc_middleware.ChainStreamServer(loggingStream, monitoringStream, authStream)),
26 grpc.UnaryInterceptor(grpc_middleware.ChainUnaryServer(loggingUnary, monitoringUnary, authUnary),
27 )
28
29These interceptors will be executed from left to right: logging, monitoring and auth.
30
31Here's an example for client side chaining:
32
33 clientConn, err = grpc.Dial(
34 address,
35 grpc.WithUnaryInterceptor(grpc_middleware.ChainUnaryClient(monitoringClientUnary, retryUnary)),
36 grpc.WithStreamInterceptor(grpc_middleware.ChainStreamClient(monitoringClientStream, retryStream)),
37 )
38 client = pb_testproto.NewTestServiceClient(clientConn)
39 resp, err := client.PingEmpty(s.ctx, &myservice.Request{Msg: "hello"})
40
41These interceptors will be executed from left to right: monitoring and then retry logic.
42
43The retry interceptor will call every interceptor that follows it whenever when a retry happens.
44
45Writing Your Own
46
47Implementing your own interceptor is pretty trivial: there are interfaces for that. But the interesting
48bit exposing common data to handlers (and other middleware), similarly to HTTP Middleware design.
49For example, you may want to pass the identity of the caller from the auth interceptor all the way
50to the handling function.
51
52For example, a client side interceptor example for auth looks like:
53
54 func FakeAuthUnaryInterceptor(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
55 newCtx := context.WithValue(ctx, "user_id", "john@example.com")
56 return handler(newCtx, req)
57 }
58
59Unfortunately, it's not as easy for streaming RPCs. These have the `context.Context` embedded within
60the `grpc.ServerStream` object. To pass values through context, a wrapper (`WrappedServerStream`) is
61needed. For example:
62
63 func FakeAuthStreamingInterceptor(srv interface{}, stream grpc.ServerStream, info *grpc.StreamServerInfo, handler grpc.StreamHandler) error {
64 newStream := grpc_middleware.WrapServerStream(stream)
65 newStream.WrappedContext = context.WithValue(ctx, "user_id", "john@example.com")
66 return handler(srv, stream)
67 }
68*/
69package grpc_middleware