-
Notifications
You must be signed in to change notification settings - Fork 794
/
Copy pathServerCallContext.cs
162 lines (139 loc) · 6.23 KB
/
ServerCallContext.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#region Copyright notice and license
// Copyright 2015 gRPC authors.
//
// 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
//
// 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.
#endregion
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace Grpc.Core;
/// <summary>
/// Context for a server-side call.
/// </summary>
public abstract class ServerCallContext
{
private Dictionary<object, object>? userState;
/// <summary>
/// Creates a new instance of <c>ServerCallContext</c>.
/// </summary>
protected ServerCallContext()
{
}
/// <summary>
/// Asynchronously sends response headers for the current call to the client. This method may only be invoked once for each call and needs to be invoked
/// before any response messages are written. Writing the first response message implicitly sends empty response headers if <c>WriteResponseHeadersAsync</c> haven't
/// been called yet.
/// </summary>
/// <param name="responseHeaders">The response headers to send.</param>
/// <returns>The task that finished once response headers have been written.</returns>
public Task WriteResponseHeadersAsync(Metadata responseHeaders)
{
return WriteResponseHeadersAsyncCore(responseHeaders);
}
/// <summary>
/// Creates a propagation token to be used to propagate call context to a child call.
/// </summary>
public ContextPropagationToken CreatePropagationToken(ContextPropagationOptions? options = null)
{
return CreatePropagationTokenCore(options);
}
/// <summary>Name of method called in this RPC.</summary>
public string Method => MethodCore;
/// <summary>Name of host called in this RPC.</summary>
public string Host => HostCore;
/// <summary>Address of the remote endpoint in URI format.</summary>
public string Peer => PeerCore;
/// <summary>Deadline for this RPC. The call will be automatically cancelled once the deadline is exceeded.</summary>
public DateTime Deadline => DeadlineCore;
/// <summary>Initial metadata sent by client.</summary>
public Metadata RequestHeaders => RequestHeadersCore;
/// <summary>Cancellation token signals when call is cancelled. It is also triggered when the deadline is exceeeded or there was some other error (e.g. network problem).</summary>
public CancellationToken CancellationToken => CancellationTokenCore;
/// <summary>Trailers to send back to client after RPC finishes.</summary>
public Metadata ResponseTrailers => ResponseTrailersCore;
/// <summary> Status to send back to client after RPC finishes.</summary>
public Status Status
{
get
{
return StatusCore;
}
set
{
StatusCore = value;
}
}
/// <summary>
/// Allows setting write options for the following write.
/// For streaming response calls, this property is also exposed as on IServerStreamWriter for convenience.
/// Both properties are backed by the same underlying value.
/// </summary>
public WriteOptions? WriteOptions
{
get
{
return WriteOptionsCore;
}
set
{
WriteOptionsCore = value;
}
}
/// <summary>
/// Gets the <c>AuthContext</c> associated with this call.
/// Note: Access to AuthContext is an experimental API that can change without any prior notice.
/// </summary>
public AuthContext AuthContext => AuthContextCore;
/// <summary>
/// Gets a dictionary that can be used by the various interceptors and handlers of this
/// call to store arbitrary state.
/// </summary>
public IDictionary<object, object> UserState => UserStateCore;
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract Task WriteResponseHeadersAsyncCore(Metadata responseHeaders);
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract ContextPropagationToken CreatePropagationTokenCore(ContextPropagationOptions? options);
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract string MethodCore { get; }
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract string HostCore { get; }
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract string PeerCore { get; }
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract DateTime DeadlineCore { get; }
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract Metadata RequestHeadersCore { get; }
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract CancellationToken CancellationTokenCore { get; }
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract Metadata ResponseTrailersCore { get; }
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract Status StatusCore { get; set; }
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract WriteOptions? WriteOptionsCore { get; set; }
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected abstract AuthContext AuthContextCore { get; }
/// <summary>Provides implementation of a non-virtual public member.</summary>
protected virtual IDictionary<object, object> UserStateCore
{
get
{
if (userState == null)
{
userState = new Dictionary<object, object>();
}
return userState;
}
}
}