if (real_fd < 0)
throw IOException("Error opening output file");
- filter_fd = spawn_filter(real_fd);
+ filter_fd = spawn_filter(real_fd, filter_program, &filter_pid);
}
Tarfile::~Tarfile()
* on the TAR output. The file descriptor to which output should be written
* must be specified; the return value is the file descriptor which will be
* attached to the standard input of the filter program. */
-int Tarfile::spawn_filter(int fd_out)
+int spawn_filter(int fd_out, const char *program, pid_t *filter_pid)
{
int fds[2];
+ pid_t pid;
/* Create a pipe for communicating with the filter process. */
if (pipe(fds) < 0) {
}
/* Create a child process which can exec() the filter program. */
- filter_pid = fork();
+ pid = fork();
if (filter_pid < 0)
throw IOException("Unable to fork filter process");
/* Parent process */
close(fds[0]);
cloexec(fds[1]);
+ if (filter_pid != NULL)
+ *filter_pid = pid;
} else {
/* Child process. Rearrange file descriptors. stdin is fds[0], stdout
* is fd_out, stderr is unchanged. */
close(fd_out);
/* Exec the filter program. */
- execlp("/bin/sh", "/bin/sh", "-c", filter_program, NULL);
+ execlp("/bin/sh", "/bin/sh", "-c", program, NULL);
/* Should not reach here except for error cases. */
fprintf(stderr, "Could not exec filter: %m\n");
void Tarfile::write_object(int id, const char *data, size_t len)
{
+ struct tar_header header;
+ memset(&header, 0, sizeof(header));
+
char buf[64];
sprintf(buf, "%08x", id);
string path = segment_name + "/" + buf;
- internal_write_object(path, data, len);
-}
-
-void Tarfile::internal_write_object(const string &path,
- const char *data, size_t len)
-{
- struct tar_header header;
- memset(&header, 0, sizeof(header));
-
assert(path.size() < 100);
memcpy(header.name, path.data(), path.size());
sprintf(header.mode, "%07o", 0600);
Tarfile(const std::string &path, const std::string &segment);
~Tarfile();
- int spawn_filter(int fd_out);
void write_object(int id, const char *data, size_t len);
// Return an estimate of the size of the file.
size_t size_estimate();
- void internal_write_object(const std::string &path,
- const char *data, size_t len);
-
private:
size_t size;
std::string segment_name;
* included; this adds to it) */
extern const char *filter_extension;
+/* Launch a process to filter data written to a file descriptor. fd_out is the
+ * file descriptor where the filtered data should be written. program is the
+ * filter program to execute (a single string which will be interpreted by
+ * /bin/sh). The return value is a file descriptor to which the data to be
+ * filtered should be written. The process ID of the filter process is stored
+ * at address filter_pid if non-NULL. */
+int spawn_filter(int fd_out, const char *program, pid_t *filter_pid);
+
#endif // _LBS_STORE_H