2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2014-07-30 22:26:24 +02:00
|
|
|
|
2021-12-03 14:02:07 +01:00
|
|
|
#include "lib/zlib/GzipOutputStream.hxx"
|
|
|
|
#include "io/StdioOutputStream.hxx"
|
2016-11-10 12:58:03 +01:00
|
|
|
#include "system/Error.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2014-07-30 22:26:24 +02:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-11-10 12:58:03 +01:00
|
|
|
static void
|
|
|
|
Copy(OutputStream &dest, int src)
|
2014-07-30 22:26:24 +02:00
|
|
|
{
|
|
|
|
while (true) {
|
|
|
|
char buffer[4096];
|
|
|
|
ssize_t nbytes = read(src, buffer, sizeof(buffer));
|
|
|
|
if (nbytes <= 0) {
|
2016-11-10 12:58:03 +01:00
|
|
|
if (nbytes < 0)
|
|
|
|
throw MakeErrno("read() failed");
|
|
|
|
|
|
|
|
return;
|
2014-07-30 22:26:24 +02:00
|
|
|
}
|
|
|
|
|
2015-12-16 10:24:43 +01:00
|
|
|
dest.Write(buffer, nbytes);
|
2014-07-30 22:26:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-10 12:58:03 +01:00
|
|
|
static void
|
|
|
|
CopyGzip(OutputStream &_dest, int src)
|
2014-07-30 22:26:24 +02:00
|
|
|
{
|
2015-12-16 10:14:56 +01:00
|
|
|
GzipOutputStream dest(_dest);
|
2016-11-10 12:58:03 +01:00
|
|
|
Copy(dest, src);
|
2022-07-04 10:04:23 +02:00
|
|
|
dest.Finish();
|
2014-07-30 22:26:24 +02:00
|
|
|
}
|
|
|
|
|
2016-11-10 12:58:03 +01:00
|
|
|
static void
|
|
|
|
CopyGzip(FILE *_dest, int src)
|
2014-07-30 22:26:24 +02:00
|
|
|
{
|
|
|
|
StdioOutputStream dest(_dest);
|
2016-11-10 12:58:03 +01:00
|
|
|
CopyGzip(dest, src);
|
2014-07-30 22:26:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2020-03-12 20:56:11 +01:00
|
|
|
main(int argc, [[maybe_unused]] char **argv)
|
2018-07-17 21:56:43 +02:00
|
|
|
try {
|
2014-07-30 22:26:24 +02:00
|
|
|
if (argc != 1) {
|
|
|
|
fprintf(stderr, "Usage: run_gzip\n");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2018-07-17 21:56:43 +02:00
|
|
|
CopyGzip(stdout, STDIN_FILENO);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
|
|
|
return EXIT_FAILURE;
|
2014-07-30 22:26:24 +02:00
|
|
|
}
|