forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAsyncState.cs
More file actions
177 lines (139 loc) · 4.45 KB
/
AsyncState.cs
File metadata and controls
177 lines (139 loc) · 4.45 KB
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
// Copyright (c) Service Stack LLC. All Rights Reserved.
// License: https://raw.github.com/ServiceStack/ServiceStack/master/license.txt
using System;
using System.IO;
using System.Net;
using System.Text;
using System.Threading;
using ServiceStack.Text;
namespace ServiceStack
{
public class AsyncState<TResponse> : IDisposable
{
private bool timedOut; // Pass the correct error back even on Async Calls
public AsyncState(int bufferSize)
{
BufferRead = new byte[bufferSize];
TextData = StringBuilderCache.Allocate();
BytesData = MemoryStreamFactory.GetStream(bufferSize);
WebRequest = null;
ResponseStream = null;
}
public string HttpMethod;
public string Url;
public StringBuilder TextData;
public MemoryStream BytesData;
public byte[] BufferRead;
public object Request;
public HttpWebRequest WebRequest;
public HttpWebResponse WebResponse;
public Stream ResponseStream;
public int Completed;
public int RequestCount;
#if !NETSTANDARD1_1
public ITimer Timer;
#endif
public CancellationToken Token;
public Action<WebResponse> OnResponseInit;
public Action<TResponse> OnSuccess;
public Action<object, Exception> OnError;
public SynchronizationContext UseSynchronizationContext;
public bool HandleCallbackOnUIThread;
public long ResponseBytesRead;
public long ResponseContentLength;
public void HandleSuccess(TResponse response)
{
StopTimer();
if (this.OnSuccess == null)
return;
if (UseSynchronizationContext != null)
UseSynchronizationContext.Post(asyncState => this.OnSuccess(response), this);
else if (this.HandleCallbackOnUIThread)
PclExportClient.Instance.RunOnUiThread(() => this.OnSuccess(response));
else
this.OnSuccess(response);
}
public void HandleError(object response, Exception ex)
{
StopTimer();
if (this.OnError == null)
return;
var toReturn = ex;
if (timedOut)
{
toReturn = PclExportClient.Instance.CreateTimeoutException(ex, "The request timed out");
}
if (UseSynchronizationContext != null)
UseSynchronizationContext.Post(asyncState => this.OnError(response, toReturn), this);
else if (this.HandleCallbackOnUIThread)
PclExportClient.Instance.RunOnUiThread(() => this.OnError(response, toReturn));
else
this.OnError(response, toReturn);
}
public void StartTimer(TimeSpan timeOut)
{
#if !NETSTANDARD1_1
this.Timer = PclExportClient.Instance.CreateTimer(this.TimedOut, timeOut, this);
#endif
}
public void StopTimer()
{
#if !NETSTANDARD1_1
if (this.Timer != null)
{
this.Timer.Cancel();
this.Timer = null;
}
#endif
}
#if NETFX_CORE
public void TimedOut(ThreadPoolTimer timer)
{
if (Interlocked.Increment(ref Completed) == 1)
{
if (this.WebRequest != null)
{
timedOut = true;
this.WebRequest.Abort();
}
}
StopTimer();
this.Dispose();
}
#else
public void TimedOut(object state)
{
if (Interlocked.Increment(ref Completed) == 1)
{
if (this.WebRequest != null)
{
timedOut = true;
this.WebRequest.Abort();
}
}
StopTimer();
this.Dispose();
}
#endif
public void Dispose()
{
if (TextData != null)
{
StringBuilderCache.Free(TextData);
TextData = null;
}
if (this.BytesData != null)
{
this.BytesData.Dispose();
this.BytesData = null;
}
#if !NETSTANDARD1_1
if (this.Timer != null)
{
this.Timer.Dispose();
this.Timer = null;
}
#endif
}
}
}