-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathQvxDataClient.cs
238 lines (205 loc) · 7.43 KB
/
QvxDataClient.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
/*
This Library is to have an easy access to Qvx Files and the Qlikview
Connector Interface.
Copyright (C) 2011 Konrad Mattheis ([email protected])
This Software is available under the GPL and a comercial licence.
For further information to the comercial licence please contact
Konrad Mattheis.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
namespace QvxLib
{
#region Usings
using System.Text;
using System.Threading;
using System.IO.Pipes;
using System;
using System.Collections.Generic;
using System.Linq;
using NLog;
using System.IO;
#endregion
#region QvsDataClient
public class QvxDataClient : Stream
{
#region Variables
Thread thread;
bool close = false;
object lockQueue = new object();
List<byte[]> SendQueue = new List<byte[]>();
private string pipeName;
public Action<QvxDataClient> DataClientDeliverData;
private static Logger logger = LogManager.GetCurrentClassLogger();
#endregion
#region Construtor
public QvxDataClient(string PipeName)
{
this.pipeName = PipeName.Replace(@"\\.\pipe\", "");
}
#endregion
#region ThreadStart
public void StartThread()
{
thread = new Thread(new ThreadStart(QvxDataWorker));
thread.IsBackground = false;
thread.Name = "QvxDataWorker";
thread.Start();
}
#endregion
#region Close
public new void Close()
{
close = true;
}
#endregion
#region Methods to Implement Writeable Stream
public override bool CanRead
{
get { return false; }
}
public override bool CanSeek
{
get { return false; }
}
public override bool CanWrite
{
get { return true; }
}
public override void Flush()
{
throw new NotImplementedException();
}
public override long Length
{
get { throw new NotImplementedException(); }
}
public override long Position
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
public override int Read(byte[] buffer, int offset, int count)
{
throw new NotImplementedException();
}
public override long Seek(long offset, SeekOrigin origin)
{
throw new NotImplementedException();
}
public override void SetLength(long value)
{
throw new NotImplementedException();
}
public override void Write(byte[] buffer, int offset, int count)
{
byte[] newBuf = new byte[count];
Array.Copy(buffer, offset, newBuf, 0, count);
lock (lockQueue)
{
SendQueue.Add(newBuf);
}
}
#endregion
#region QvxDataWorker
private void QvxDataWorker()
{
Console.WriteLine("Start QvxDataWorker");
try
{
if (pipeName == null) return;
logger.Info("Start :" + pipeName);
using (NamedPipeClientStream pipeClient = new NamedPipeClientStream(".", pipeName, PipeDirection.Out))
{
pipeClient.Connect(1000);
Console.WriteLine("Connected QvxDataWorker");
if (pipeClient.IsConnected)
{
if (DataClientDeliverData != null)
{
var thread = new Thread(
new ThreadStart(() => {
DataClientDeliverData(this);
this.Close();
}));
thread.IsBackground = false;
thread.Name = "DataClientDeliverDataThread";
thread.Start();
}
}
while (pipeClient.IsConnected)
{
byte[] buffer = null;
List<byte[]> sendList = null;
lock (lockQueue)
{
if (SendQueue.Count > 0)
{
sendList = SendQueue;
SendQueue = new List<byte[]>();
}
}
if (sendList != null)
{
int reqSize = 0;
for (int i = 0; i < sendList.Count; i++)
reqSize += sendList[i].Length;
if (reqSize > 0)
{
buffer = new byte[reqSize];
reqSize = 0;
for (int i = 0; i < sendList.Count; i++)
{
sendList[i].CopyTo(buffer, reqSize);
reqSize += sendList[i].Length;
}
}
}
if (buffer != null)
{
int index = 0;
int tosend = buffer.Length;
int sendnow = 0;
while (tosend > 0)
{
sendnow = tosend;
if ((sendnow > pipeClient.OutBufferSize) && (pipeClient.OutBufferSize > 0))
sendnow = pipeClient.OutBufferSize;
pipeClient.Write(buffer, index, sendnow);
index += sendnow;
tosend -= sendnow;
pipeClient.WaitForPipeDrain();
}
}
if (close & (buffer == null))
{
logger.Info("Close :" + pipeName);
pipeClient.Close();
close = false;
}
Thread.Sleep(5);
}
}
}
catch (Exception ex)
{
logger.Error(ex);
}
Console.WriteLine("Stoped QvxDataWorker");
}
#endregion
}
#endregion
}