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
|
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include "log.h"
int copyFileFd(int infd, char * dest) {
int outfd;
char buf[4096];
int i;
int rc = 0;
outfd = open(dest, O_CREAT | O_RDWR, 0666);
if (outfd < 0) {
logMessage("failed to open %s: %s", dest, strerror(errno));
return 1;
}
while ((i = read(infd, buf, sizeof(buf))) > 0) {
if (write(outfd, buf, i) != i) {
rc = 1;
break;
}
}
close(outfd);
return rc;
}
int copyFile(char * source, char * dest) {
int infd = -1;
int rc;
infd = open(source, O_RDONLY);
if (infd < 0) {
logMessage("failed to open %s: %s", source, strerror(errno));
return 1;
}
rc = copyFileFd(infd, dest);
close(infd);
return rc;
}
char * readLine(FILE * f) {
char buf[1024];
fgets(buf, sizeof(buf), f);
/* chop */
buf[strlen(buf) - 1] = '\0';
return strdup(buf);
}
|