aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2007-12-18 02:02:21 -0600
committerRob Landley <rob@landley.net>2007-12-18 02:02:21 -0600
commit42ecbab08101d713f9bcd8a107b60338bebb7299 (patch)
tree8ab5bbc121f203c0b8723cf7ecda683c69bd99fd /lib
parentc49650d6914a3ddb151fe93b1bfed8136c0151d7 (diff)
downloadtoybox-42ecbab08101d713f9bcd8a107b60338bebb7299.tar.gz
Patch command.
Diffstat (limited to 'lib')
-rw-r--r--lib/lib.c51
-rw-r--r--lib/lib.h3
2 files changed, 51 insertions, 3 deletions
diff --git a/lib/lib.c b/lib/lib.c
index 547fe400..510b830b 100644
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -606,12 +606,57 @@ char *get_line(int fd)
void xsendfile(int in, int out)
{
long len;
+ char buf[4096];
if (in<0) return;
for (;;) {
- len = xread(in, toybuf, sizeof(toybuf));
+ len = xread(in, buf, 4096);
if (len<1) break;
- xwrite(out, toybuf, len);
+ xwrite(out, buf, len);
}
- xclose(in);
+}
+
+// Open a temporary file to copy an existing file into.
+int copy_tempfile(int fdin, char *name, char **tempname)
+{
+ struct stat statbuf;
+ int fd;
+
+ *tempname = xstrndup(name, strlen(name)+6);
+ strcat(*tempname,"XXXXXX");
+ if(-1 == (fd = mkstemp(*tempname))) error_exit("no temp file");
+
+ // Set permissions of output file
+
+ fstat(fdin, &statbuf);
+ fchmod(fd, statbuf.st_mode);
+
+ return fd;
+}
+
+// Abort the copy and delete the temporary file.
+void delete_tempfile(int fdin, int fdout, char **tempname)
+{
+ close(fdin);
+ close(fdout);
+ unlink(*tempname);
+ free(*tempname);
+ *tempname = NULL;
+}
+
+// Copy the rest of the data and replace the original with the copy.
+void replace_tempfile(int fdin, int fdout, char **tempname)
+{
+ char *temp = xstrdup(*tempname);
+
+ temp[strlen(temp)-6]=0;
+ if (fdin != -1) {
+ xsendfile(fdin, fdout);
+ xclose(fdin);
+ }
+ xclose(fdout);
+ rename(*tempname, temp);
+ free(*tempname);
+ free(temp);
+ *tempname = NULL;
}
diff --git a/lib/lib.h b/lib/lib.h
index 063c5d02..fdead960 100644
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -84,6 +84,9 @@ void loopfiles(char **argv, void (*function)(int fd, char *name));
char *get_rawline(int fd, long *plen);
char *get_line(int fd);
void xsendfile(int in, int out);
+int copy_tempfile(int fdin, char *name, char **tempname);
+void delete_tempfile(int fdin, int fdout, char **tempname);
+void replace_tempfile(int fdin, int fdout, char **tempname);
// getmountlist.c
struct mtab_list {