-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbzip-table-lines-threaded-block.c
85 lines (75 loc) · 2.32 KB
/
bzip-table-lines-threaded-block.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
int process_block(const char * buf)
{
int linecount =0;
int remainder =0;
char buffer2[(BUF_SIZE * 2)+1]={0};
char buffer3[(BUF_SIZE * 2)+1]={0};
char buffer_last[(BUF_SIZE * 2)+1]={0};
const char * pc;
const char * lc;
lc=pc=buf;
while (
(*pc)
&& (pc < (buf + BUF_SIZE))
)
{
if ((*pc=='\r') ||(*pc=='\n'))
{
strncpy(buffer3,lc,(pc-lc));
if (remainder) {
strcpy(buffer2 +(remainder ),buffer3);
remainder=0;
} else {
strcpy(buffer2,buffer3);
}
int ok =0;
// TODO ://int ok = process_line(buffer2);
if(ok==0) {
}else {
printf("error last buffer \"%s\"\n",buffer_last); // debug */
printf("current buffer \"%s\"\n",buffer2); // debug */
return (233);
}
strcpy(buffer_last, buffer2);
memset(buffer2,0,sizeof(buffer2));
memset(buffer3,0,sizeof(buffer3));
lc=pc;
linecount ++;
} // end of line
pc++;
while (
(*pc)
&& (pc < (buf + BUF_SIZE))
)
{
if ((*pc=='\r') ||(*pc=='\n'))
{
strncpy(buffer3,lc,(pc-lc));
if (remainder) {
strcpy(buffer2 +(remainder ),buffer3);
remainder=0;
} else {
strcpy(buffer2,buffer3);
}
int ok =0;
// TODO ://int ok = process_line(buffer2);
if(ok==0) {
}else {
printf("error last buffer \"%s\"\n",buffer_last); // debug */
printf("current buffer \"%s\"\n",buffer2); // debug */
return (233);
}
strcpy(buffer_last, buffer2);
memset(buffer2,0,sizeof(buffer2));
memset(buffer3,0,sizeof(buffer3));
lc=pc;
linecount ++;
} // end of line
pc++;
}// end of block
if ((pc-lc) > 0) {
strncpy(buffer2,lc,pc-lc );
remainder=strlen(buffer2); // leftover
}
}
}