-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtftp12FormatConvert.c
119 lines (103 loc) · 2.27 KB
/
tftp12FormatConvert.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
#include <stdio.h>
#include "tftp12FormatConvert.h"
#define FALSE 0
#define TRUE 1
#define ERROR -1
#define OK 1
/*
CONVERSION REGULAR:
lf(\n)->cr,lf(\r\n)
cr(\r)->cr,nul(\r\0)
*/
INT32 tftp12FileToAscii(INT32 *fd, UINT8 *pBuffer, INT32 bufferLen, UINT8 *charConv)
{
UINT8 *ptr; /*point to buffer*/
UINT8 *currentChar; /*current char*/
INT32 index; /*count variable*/
INT32 numBytes; /*numbytes read*/
for (index = 0, ptr = pBuffer; index < bufferLen; ++index)
{
/*if previous char is \n or \r, convert it*/
if ((*charConv == '\n') || (*charConv == '\r'))
{
currentChar = ((*charConv == '\n')? '\n':'\0');
*charConv = '\0';
}
else
{
if ((numBytes = fread( ¤tChar, sizeof(char), 1,fd)) == EOF)
{
break;
}
if (numBytes == 0) /*end of file*/
{
break;
}
if ((currentChar == '\n') || (currentChar == '\r'))
{
*charConv = currentChar;
currentChar = '\r'; /*put in \r first*/
}
}
*ptr++ = currentChar;
}
return ((int)(ptr - pBuffer));
}
/*
CONVERT REGULAR:
cr,nul(\r\0)->cr(\r)
cr,lf(\r\n)->lf(\n)
*/
INT32 tftp12AsciiToFile(INT32 *fd, UINT8 *pBuffer, INT32 bufferLen, UINT8 *charConv, INT32 isLastBuff)
{
INT32 count = bufferLen; /*counter*/
UINT8 *ptr = pBuffer; /*point to buffer*/
UINT8 currentChar; /*current character*/
INT32 skipWrite; /*skip writing*/
INT32 validBytes; /*count number which was writen to file*/
validBytes = 0;
while (count--)
{
currentChar = *ptr++;
skipWrite = FALSE;
if (*charConv == '\r')
{
/*write out previous (\r) for anything but (\n).*/
if (currentChar != '\n')
{
if (fwrite(&charConv, sizeof(char), 1, fd) <= 0)
{
return (ERROR);
}
validBytes++;
}
if (currentChar == '\0') /*skip writing \0 for \r\0*/
{
skipWrite = TRUE;
}
}
if ((!skipWrite) && (currentChar != '\r'))
{
if (fwrite(¤tChar, sizeof(char), 1, fd) <= 0)
{
return (ERROR);
}
validBytes++;
}
*charConv = currentChar;
}/*end while*/
/*
since we wait to write the \r, if this is the last buffer and the last character
is a \r, flush it now.
*/
if (isLastBuff && (*charConv == '\r'))
{
if (fwrite(charConv, sizeof(char), 1, fd) <= 0)
{
return (ERROR);
}
*charConv = '\0';
validBytes++;
}
return validBytes;
}