-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtftp12IObuffer1.c
400 lines (355 loc) · 8.25 KB
/
tftp12IObuffer1.c
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
#include "stdio.h"
#include "stdlib.h"
#include "tftp12header.h"
#include "windows.h"
typedef struct _iobuffnode
{
INT32 id;
INT32 blockSize;
INT32 endOfFile;
INT32 fileSize;
FILE *targetFile;
enum TFTP12_ReadOrWrite rwFlag;
INT32 firstRun;
INT32 IOtaskIsRunning;
INT32 bufferSize;
char *nextPosition;
char *currentReadBuffer;
char *currentWriteBuffer;
char *fileEndPosition;/*在缓冲区中,指向文件结束的位置*/
char *pFree;/*Free的时候使用这个指针*/
struct _iobuffnode *next;
}TFTP12IOBufferNode_t;
TFTP12IOBufferNode_t *head = NULL;
static void tftp12IOBufferRequest(INT32 id);
static void tftp12IOListInsert(TFTP12IOBufferNode_t *node)
{
if (head == NULL)
{
head = node;
return;
}
TFTP12IOBufferNode_t *pWalk = head;
while (pWalk->next != NULL)
{
pWalk = pWalk->next;
}
pWalk->next = node;
}
static INT32 tftp12IOListDelete(TFTP12IOBufferNode_t *node)
{
TFTP12IOBufferNode_t *pWalk = head;
if (head == node)
{
head = head->next;
return TRUE;
}
while (pWalk->next != NULL)
{
if (pWalk->next == node)
{
pWalk->next = pWalk->next->next;
return TRUE;
}
pWalk = pWalk->next;
}
return FALSE;
}
static TFTP12IOBufferNode_t *tftp12FindNodeByid(INT32 id)
{
TFTP12IOBufferNode_t *pWalk = head;
while (pWalk != NULL)
{
if (pWalk->id == id)
{
return pWalk;
}
pWalk = pWalk->next;
}
return NULL;
}
static void tftp12WaitIOFinish(TFTP12IOBufferNode_t *node)
{ /*sleep太弱智,需要换*/
if (node->IOtaskIsRunning == TRUE)
{
Sleep(5);
}
}
char *tftp12ReadNextBlock(INT32 id, INT32 *size)
{
static INT32 times111 = 0;
times111++;
if (times111==82)
{
times111++;
}
TFTP12IOBufferNode_t *node = tftp12FindNodeByid(id);
char *ret = NULL;
if (node == NULL)
{
*size = 0;
return NULL;
}
if (node->firstRun==TRUE)
{
tftp12IOBufferRequest(node->id);
}
INT32 diff = node->fileEndPosition - node->currentReadBuffer;
if (node->nextPosition == node->fileEndPosition)
{
/*说明到文件末尾了*/
*size = 0;
return node->nextPosition;
}
else if ((node->endOfFile == TRUE) && (diff > 0) && (diff < node->bufferSize) && \
((node->fileEndPosition - node->nextPosition) <= node->blockSize))
{
/*说明文件结束在本缓冲区内,且小于等于一个blocksize*/
*size = node->fileEndPosition - node->nextPosition;
ret = node->nextPosition;
node->nextPosition += *size;
return ret;
}
else
{
/*只要不是在文件末尾的地方,size都是这么大*/
*size = node->blockSize;
/*如果指针加了以后等于了buff结束*/
if (node->nextPosition == (node->currentReadBuffer + node->bufferSize))
{
tftp12WaitIOFinish(node);
node->IOtaskIsRunning = TRUE;
/*交换缓冲区*/
char *tem = node->currentReadBuffer;
node->currentReadBuffer = node->currentWriteBuffer;
node->currentWriteBuffer = tem;
node->nextPosition = node->currentReadBuffer;
tftp12IOBufferRequest(node->id);
}
ret = node->nextPosition;
node->nextPosition += *size;
}
for (INT32 i = 0; i < *size; i++)
{
if (*(ret + i) != '1')
{
printf("%c", *(node->currentWriteBuffer + i));
}
}
return ret;
}
INT32 tftp12WriteNextBlock(INT32 id, char *buf, INT32 writeSize)
{
TFTP12IOBufferNode_t *node = tftp12FindNodeByid(id);
if (node == NULL)
{
return FALSE;
}
if (writeSize > node->blockSize)
{
/*正常情况下不可能出现这个*/
system("pause");
return FALSE;
}
/*如果小于块大小,说明包括了文件结尾*/
if (writeSize < node->blockSize)
{
node->endOfFile = TRUE;
node->fileEndPosition = node->nextPosition + writeSize;
}
memcpy(node->nextPosition, buf, writeSize);
node->nextPosition += writeSize;
/*
if (node->endOfFile == TRUE)
{
tftp12IOBufferRequest(id);
}
else*/ if ((node->nextPosition == (node->currentWriteBuffer + node->bufferSize)) || (node->endOfFile == TRUE))
{
/*写到buff末尾的时候,切换缓冲区*/
if (node->firstRun == FALSE)
{
tftp12WaitIOFinish(node);
node->IOtaskIsRunning = TRUE;
}
for (INT32 i = 0; i < node->bufferSize; i++)
{
if (*(node->currentWriteBuffer+i)!='1')
{
printf("%c", *(node->currentWriteBuffer + i));
}
}
char *tem = node->currentReadBuffer;
node->currentReadBuffer = node->currentWriteBuffer;
node->currentWriteBuffer = tem;
node->nextPosition = node->currentWriteBuffer;
if (node->firstRun == TRUE)
{
node->firstRun = FALSE;
}
else
{
tftp12IOBufferRequest(id);
}
}
else if (node->nextPosition > (node->currentWriteBuffer + node->bufferSize))
{
/*下个位置大于了buffer的末尾,正常情况下不可能出现这种情况*/
system("pause");
return FALSE;
}
return TRUE;
}
INT32 testNum = 0, testNum2 = 0;;
static void * WINAPI tftp12IObufferHandleTask(void *arg)
{
static INT32 timess = 0;
timess++;
TFTP12IOBufferNode_t *node = (TFTP12IOBufferNode_t*)arg;
if (node == NULL)
{
return NULL;
}
if (node->endOfFile == TRUE&&node->rwFlag == TFTP12_READ)
{
return NULL;
}
if (node->rwFlag == TFTP12_READ)
{
INT32 realRead = fread(node->currentWriteBuffer, 1, node->bufferSize, node->targetFile);
if (realRead < node->bufferSize)
{
node->endOfFile = TRUE;
node->fileEndPosition = node->currentWriteBuffer + realRead;
}
for (INT32 i = 0; i < realRead; i++)
{
if (*(node->currentWriteBuffer + i) != '1')
{
printf("%c", *(node->currentWriteBuffer + i));
}
}
printf("\nread:%d,%d", realRead, testNum);
//testNum++;
//ReleaseMutex(node->IOMutex);
}
else if (node->rwFlag == TFTP12_WRITE)
{
INT32 writeSize = 0;
INT32 diff = node->fileEndPosition - node->currentReadBuffer;
/*如果文件到了末尾,且在本次写的缓冲内*/
if (node->endOfFile == TRUE)
{
node->endOfFile = TRUE;
}
if ((node->endOfFile == TRUE) && (diff > 0) && (diff < node->bufferSize))
{
writeSize = diff;
}
else
{
writeSize = node->bufferSize;
}
INT32 realWrite = fwrite(node->currentReadBuffer, 1, writeSize, node->targetFile);
printf("\nwrite:%d,%d", realWrite, testNum);
if (realWrite < writeSize)
{
printf("\n写入错误");
}
}
else
{
return NULL;
}
node->IOtaskIsRunning = FALSE;
return NULL;
}
static void tftp12IOBufferRequest(INT32 id)
{
TFTP12IOBufferNode_t *node = tftp12FindNodeByid(id);
/*在已经读取到文件末尾的时候禁止再次读取*/
if (node->endOfFile == TRUE&&node->rwFlag == TFTP12_READ)
{
return;
}
if (node->rwFlag == TFTP12_READ)
{
}
//printf("\nrequest id=%d:%d", id, testNum);
//testNum++;
/* printf("%d", WaitForSingleObject(node->IOMutex, INFINITE));*/
/*可能会失败,Windows下不管*/
HANDLE useless = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)tftp12IObufferHandleTask, node, 0, NULL);
if (useless == NULL)
{
node->IOtaskIsRunning = FALSE;
}
CloseHandle(useless);
}
INT32 tftp12IOBufferInit(INT32 id, INT32 blocksize, FILE *file, INT32 fileSize, enum TFTP12_ReadOrWrite rwFlag)
{
/*应根据剩余内存大小和文件大小分配内存空间*/
//测试时用1M
/*两块缓冲区*/
INT32 bufSize = ((2500) / blocksize)*blocksize + 4;
char *buf = (char *)malloc(bufSize * 2);
if (buf == NULL)
{
return FALSE;
}
TFTP12IOBufferNode_t *node = (TFTP12IOBufferNode_t*)malloc(sizeof(TFTP12IOBufferNode_t));
if (node == NULL)
{
return FALSE;
}
memset(node, 0, sizeof(TFTP12IOBufferNode_t));
node->blockSize = blocksize;
node->fileSize = fileSize;
node->id = id;
node->bufferSize = bufSize - 4;
node->rwFlag = rwFlag;
node->pFree = buf;
node->targetFile = file;
node->currentReadBuffer = buf + 4;
node->currentWriteBuffer = buf + bufSize + 4;
// node->rwStart = node->pBuf + 4;
// node->currentRead = node->rwStart;
// node->currentWrite = node->rwStart;
/* node->IOMutex = CreateMutex(NULL, FALSE, "");*/
tftp12IOListInsert(node);
if (rwFlag == TFTP12_READ)
{
node->IOtaskIsRunning = TRUE;
tftp12IOBufferRequest(id);
while (node->IOtaskIsRunning == TRUE)
{
Sleep(5);
}
/*交换缓冲区,因为第一次读取的数据是放在writeBuffer里面*/
char *tem = node->currentReadBuffer;
node->currentReadBuffer = node->currentWriteBuffer;
node->currentWriteBuffer = tem;
node->nextPosition = node->currentReadBuffer;
}
else
{
node->nextPosition = node->currentWriteBuffer;
}
node->firstRun = TRUE;
/*
WaitForSingleObject(node->IOMutex, INFINITE);
ReleaseMutex(node->IOMutex);*/
return 1;
}
INT32 tftp12IOBufferFree(INT32 id)
{
TFTP12IOBufferNode_t *node = tftp12FindNodeByid(id);
if (node == NULL)
{
return FALSE;
}
free(node->pFree);
tftp12IOListDelete(node);
free(node);
return TRUE;
}