blob: 05ccfb3f24a794abfcd7305c06a318ba1245d17d [file] [log] [blame]
khenaidooab1f7bd2019-11-14 14:00:27 -05001// Copyright 2016 Michal Witkowski. All Rights Reserved.
2// See LICENSE for licensing terms.
3
4package grpc_middleware
5
6import (
khenaidood948f772021-08-11 17:49:24 -04007 "context"
8
khenaidooab1f7bd2019-11-14 14:00:27 -05009 "google.golang.org/grpc"
10)
11
12// WrappedServerStream is a thin wrapper around grpc.ServerStream that allows modifying context.
13type WrappedServerStream struct {
14 grpc.ServerStream
15 // WrappedContext is the wrapper's own Context. You can assign it.
16 WrappedContext context.Context
17}
18
19// Context returns the wrapper's WrappedContext, overwriting the nested grpc.ServerStream.Context()
20func (w *WrappedServerStream) Context() context.Context {
21 return w.WrappedContext
22}
23
24// WrapServerStream returns a ServerStream that has the ability to overwrite context.
25func WrapServerStream(stream grpc.ServerStream) *WrappedServerStream {
26 if existing, ok := stream.(*WrappedServerStream); ok {
27 return existing
28 }
29 return &WrappedServerStream{ServerStream: stream, WrappedContext: stream.Context()}
30}