-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathdp2ResStream.cs
340 lines (287 loc) · 9.17 KB
/
dp2ResStream.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Collections;
using System.Threading;
using DigitalPlatform.LibraryClient;
using DigitalPlatform.Text;
using DigitalPlatform.Core;
namespace DigitalPlatform.CirculationClient
{
/// <summary>
/// 把一个 dp2library 对象模拟为可以读的Stream
/// </summary>
public class dp2ResStream : Stream
{
static Semaphore _limit = new Semaphore(2, 2);
CancellationTokenSource _cancel = new CancellationTokenSource();
public IChannelManager Manager { get; set; }
// public LibraryChannel Channel { get; set; }
public string ResPath { get; set; }
long m_lLength = 0; // 长度
long m_lCurrent = 0; // 文件指针当前位置
//int _inSearch = 0;
ProgressChanged _progressChanged = null;
byte[] _timestamp = null;
public dp2ResStream(IChannelManager manager,
string strObjectPath,
ProgressChanged progressFunc)
{
this.Manager = manager;
this.ResPath = strObjectPath;
this._progressChanged = progressFunc;
// 获得元数据。最重要的是长度
string strError = "";
// return:
// -1 出错。具体出错原因在this.ErrorCode中。this.ErrorInfo中有出错信息。
// 0 成功
string strMetaData = "";
string strOutputPath;
byte[] baOutputTimeStamp = null;
byte[] content = null;
if (WaitHandle.WaitAny(new WaitHandle[] { _limit, _cancel.Token.WaitHandle }) == 1)
throw new Exception("canceled");
// Thread.Sleep(1000); // testing
//_limit.WaitOne();
LibraryChannel Channel = this.GetChannel();
//_inSearch++;
try
{
// 获得媒体类型
long lRet = Channel.GetRes(
null,
this.ResPath,
0,
0,
"metadata,timestamp",
out content,
out strMetaData,
out strOutputPath,
out baOutputTimeStamp,
out strError);
if (lRet == -1)
{
strError = "GetRes() (for metadata) Error : " + strError;
throw new Exception(strError);
}
_timestamp = baOutputTimeStamp;
}
finally
{
//_inSearch--;
this.ReturnChannel(Channel);
_limit.Release();
}
// 取metadata中的mime类型信息
Hashtable values = StringUtil.ParseMetaDataXml(strMetaData,
out strError);
if (values == null)
{
strError = "ParseMedaDataXml() Error :" + strError;
throw new Exception(strError);
}
string strMime = (string)values["mimetype"];
string strSize = (string)values["size"];
if (String.IsNullOrEmpty(strSize) == false)
{
this.m_lLength = Convert.ToInt64(strSize);
TriggerProgressChanged();
}
}
void TriggerProgressChanged()
{
if (this._progressChanged != null)
this._progressChanged(this.ResPath, this.m_lCurrent, this.m_lLength);
}
public override void Close()
{
_cancel.Cancel();
#if NO
if (this.Channel != null || this.Manager != null)
{
if (_inSearch > 0)
this.Channel.Abort();
this.Manager.ReturnChannel(this.Channel);
this.Channel = null;
}
#endif
StopChannels();
}
public LibraryChannel GetChannel()
{
LibraryChannel channel = this.Manager.GetChannel();
lock (syncRoot)
{
_channelList.Add(channel);
}
// TODO: 检查数组是否溢出
return channel;
}
public void ReturnChannel(LibraryChannel channel)
{
this.Manager.ReturnChannel(channel);
lock (syncRoot)
{
_channelList.Remove(channel);
}
}
List<LibraryChannel> _channelList = new List<LibraryChannel>();
private static readonly Object syncRoot = new Object();
public void StopChannels()
{
lock (syncRoot)
{
foreach (LibraryChannel channel in _channelList)
{
if (channel != null)
channel.Abort();
}
}
}
public override bool CanRead
{
get
{
return true;
}
}
public override bool CanSeek
{
get
{
return true;
}
}
public override bool CanWrite
{
get
{
return false;
}
}
public override bool CanTimeout
{
get
{
return false;
}
}
public override void Flush()
{
}
public override long Length
{
get
{
return Length; // TODO: ???
}
}
public override long Position
{
get
{
return m_lCurrent;
}
set
{
m_lCurrent = value;
}
}
public override int Read(byte[] buffer,
int offset,
int count)
{
if (m_lCurrent >= m_lLength)
return 0;
string strError = "";
// return:
// -1 出错。具体出错原因在this.ErrorCode中。this.ErrorInfo中有出错信息。
// 0 成功
string strMetaData = "";
string strOutputPath;
byte[] baOutputTimeStamp = null;
if (WaitHandle.WaitAny(new WaitHandle[] { _limit, _cancel.Token.WaitHandle }) == 1)
return 0;
// Thread.Sleep(1000); // testing
//_limit.WaitOne();
LibraryChannel Channel = this.GetChannel();
//_inSearch++;
try
{
int fechted = 0; // 已经获取的字节数
for (; ; )
{
byte[] content = null;
long lRet = Channel.GetRes(
null,
this.ResPath,
m_lCurrent,
count - fechted,
"data,timestamp", // TODO: 中途比对 timesamp,若发生变化则抛出异常
out content,
out strMetaData,
out strOutputPath,
out baOutputTimeStamp,
out strError);
if (lRet == -1)
{
strError = "GetRes() (for metadata) Error : " + strError;
throw new Exception(strError);
}
if (ByteArray.Compare(_timestamp, baOutputTimeStamp) != 0)
throw new Exception("下载中途对象的时间戳发生了变化"); // TODO: 或者尝试重新从头开始?
Array.Copy(content, 0, buffer, offset + fechted, content.Length);
fechted += content.Length;
m_lCurrent += content.Length;
TriggerProgressChanged();
if (fechted >= count || m_lCurrent >= lRet)
break;
}
return fechted;
}
finally
{
//_inSearch--;
this.ReturnChannel(Channel);
_limit.Release();
}
}
public override long Seek(
long offset,
SeekOrigin origin)
{
if (origin == SeekOrigin.Begin)
{
m_lCurrent = offset;
}
else if (origin == SeekOrigin.Current)
{
m_lCurrent += offset;
}
else if (origin == SeekOrigin.End)
{
m_lCurrent = m_lLength - offset;
}
else
{
throw (new Exception("不支持的origin参数"));
}
TriggerProgressChanged();
return m_lCurrent;
}
public override void Write(
byte[] buffer,
int offset,
int count
)
{
throw (new NotSupportedException("PartStream不支持Write()"));
}
public override void SetLength(long value)
{
throw (new NotSupportedException("PartStream不支持SetLength()"));
}
}
}