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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
|
/* GIO - GLib Input, Output and Streaming Library
*
* Copyright (C) 2009 Red Hat, Inc.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
*
* Author: Alexander Larsson <alexl@redhat.com>
*/
#include "config.h"
#include "gzlibcompressor.h"
#include <errno.h>
#include <zlib.h>
#include <string.h>
#include "gfileinfo.h"
#include "gioerror.h"
#include "gioenums.h"
#include "gioenumtypes.h"
#include "glibintl.h"
enum {
PROP_0,
PROP_FORMAT,
PROP_LEVEL,
PROP_FILE_INFO,
PROP_OS
};
/**
* GZlibCompressor:
*
* `GZlibCompressor` is an implementation of [iface@Gio.Converter] that
* compresses data using zlib.
*/
static void g_zlib_compressor_iface_init (GConverterIface *iface);
struct _GZlibCompressor
{
GObject parent_instance;
GZlibCompressorFormat format;
int level;
z_stream zstream;
gz_header gzheader;
GFileInfo *file_info;
int os;
};
static void
g_zlib_compressor_set_gzheader (GZlibCompressor *compressor)
{
/* On win32, these functions were not exported before 1.2.4 */
#if !defined (G_OS_WIN32) || ZLIB_VERNUM >= 0x1240
const gchar *filename;
if (compressor->format != G_ZLIB_COMPRESSOR_FORMAT_GZIP ||
(compressor->file_info == NULL &&
compressor->os < 0))
return;
memset (&compressor->gzheader, 0, sizeof (gz_header));
if (compressor->os >= 0)
compressor->gzheader.os = compressor->os;
else
compressor->gzheader.os = 0x03; /* Unix */
if (compressor->file_info)
{
filename = g_file_info_get_name (compressor->file_info);
compressor->gzheader.name = (Bytef *) filename;
compressor->gzheader.name_max = filename ? strlen (filename) + 1 : 0;
compressor->gzheader.time =
(uLong) g_file_info_get_attribute_uint64 (compressor->file_info,
G_FILE_ATTRIBUTE_TIME_MODIFIED);
}
if (deflateSetHeader (&compressor->zstream, &compressor->gzheader) != Z_OK)
g_warning ("unexpected zlib error: %s", compressor->zstream.msg);
#endif /* !G_OS_WIN32 || ZLIB >= 1.2.4 */
}
G_DEFINE_TYPE_WITH_CODE (GZlibCompressor, g_zlib_compressor, G_TYPE_OBJECT,
G_IMPLEMENT_INTERFACE (G_TYPE_CONVERTER,
g_zlib_compressor_iface_init))
static void
g_zlib_compressor_finalize (GObject *object)
{
GZlibCompressor *compressor;
compressor = G_ZLIB_COMPRESSOR (object);
deflateEnd (&compressor->zstream);
if (compressor->file_info)
g_object_unref (compressor->file_info);
G_OBJECT_CLASS (g_zlib_compressor_parent_class)->finalize (object);
}
static void
g_zlib_compressor_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
GZlibCompressor *compressor;
compressor = G_ZLIB_COMPRESSOR (object);
switch (prop_id)
{
case PROP_FORMAT:
compressor->format = g_value_get_enum (value);
break;
case PROP_LEVEL:
compressor->level = g_value_get_int (value);
break;
case PROP_FILE_INFO:
g_zlib_compressor_set_file_info (compressor, g_value_get_object (value));
break;
case PROP_OS:
g_zlib_compressor_set_os (compressor, g_value_get_int (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
g_zlib_compressor_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
GZlibCompressor *compressor;
compressor = G_ZLIB_COMPRESSOR (object);
switch (prop_id)
{
case PROP_FORMAT:
g_value_set_enum (value, compressor->format);
break;
case PROP_LEVEL:
g_value_set_int (value, compressor->level);
break;
case PROP_FILE_INFO:
g_value_set_object (value, compressor->file_info);
break;
case PROP_OS:
g_value_set_int (value, compressor->os);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
g_zlib_compressor_init (GZlibCompressor *compressor)
{
compressor->os = -1;
}
static void
g_zlib_compressor_constructed (GObject *object)
{
GZlibCompressor *compressor;
int res;
compressor = G_ZLIB_COMPRESSOR (object);
if (compressor->format == G_ZLIB_COMPRESSOR_FORMAT_GZIP)
{
/* + 16 for gzip */
res = deflateInit2 (&compressor->zstream,
compressor->level, Z_DEFLATED,
MAX_WBITS + 16, 8,
Z_DEFAULT_STRATEGY);
}
else if (compressor->format == G_ZLIB_COMPRESSOR_FORMAT_RAW)
{
/* negative wbits for raw */
res = deflateInit2 (&compressor->zstream,
compressor->level, Z_DEFLATED,
-MAX_WBITS, 8,
Z_DEFAULT_STRATEGY);
}
else /* ZLIB */
res = deflateInit (&compressor->zstream, compressor->level);
if (res == Z_MEM_ERROR )
g_error ("GZlibCompressor: Not enough memory for zlib use");
if (res != Z_OK)
g_warning ("unexpected zlib error: %s", compressor->zstream.msg);
g_zlib_compressor_set_gzheader (compressor);
}
static void
g_zlib_compressor_class_init (GZlibCompressorClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
gobject_class->finalize = g_zlib_compressor_finalize;
gobject_class->constructed = g_zlib_compressor_constructed;
gobject_class->get_property = g_zlib_compressor_get_property;
gobject_class->set_property = g_zlib_compressor_set_property;
/**
* GZlibCompressor:format:
*
* The format of the compressed data.
*
* Since: 2.24
*/
g_object_class_install_property (gobject_class,
PROP_FORMAT,
g_param_spec_enum ("format", NULL, NULL,
G_TYPE_ZLIB_COMPRESSOR_FORMAT,
G_ZLIB_COMPRESSOR_FORMAT_ZLIB,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS));
/**
* GZlibCompressor:level:
*
* The level of compression from `0` (no compression) to `9` (most
* compression).
*
* `-1` for the default level.
*
* Since: 2.24
*/
g_object_class_install_property (gobject_class,
PROP_LEVEL,
g_param_spec_int ("level", NULL, NULL,
-1, 9,
-1,
G_PARAM_READWRITE |
G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS));
/**
* GZlibCompressor:file-info:
*
* A [class@Gio.FileInfo] containing file information to put into the gzip
* header.
*
* The file name and modification time from the file info will be used.
*
* This will only be used if non-`NULL` and
* [property@Gio.ZlibCompressor:format] is
* [enum@Gio.ZlibCompressorFormat.GZIP].
*
* Since: 2.26
*/
g_object_class_install_property (gobject_class,
PROP_FILE_INFO,
g_param_spec_object ("file-info", NULL, NULL,
G_TYPE_FILE_INFO,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS));
/**
* GZlibCompressor:os:
*
* The OS code of the gzip header.
*
* This will be used if set to a non-negative value, and if
* [property@Gio.ZlibCompressor:format] is
* [enum@Gio.ZlibCompressorFormat.GZIP], the compressor will set the OS code of
* the gzip header to this value.
*
* If the value is unset, zlib will set the OS code depending on the platform.
* This may be undesirable when reproducible output is desired. In that case setting
* the OS code to `3` (for Unix) is recommended.
*
* Since: 2.86
*/
g_object_class_install_property (gobject_class,
PROP_OS,
g_param_spec_int ("os", NULL, NULL,
-1, 255,
-1,
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS |
G_PARAM_EXPLICIT_NOTIFY));
}
/**
* g_zlib_compressor_new:
* @format: the format to use for the compressed data
* @level: compression level (`0`-`9`), `-1` for default
*
* Creates a compressor.
*
* Returns: a new [class@Gio.ZlibCompressor]
* Since: 2.24
**/
GZlibCompressor *
g_zlib_compressor_new (GZlibCompressorFormat format,
int level)
{
GZlibCompressor *compressor;
compressor = g_object_new (G_TYPE_ZLIB_COMPRESSOR,
"format", format,
"level", level,
NULL);
return compressor;
}
/**
* g_zlib_compressor_get_file_info:
* @compressor: a compressor
*
* Gets the [property@Gio.ZlibCompressor:file-info] property.
*
* Returns: (nullable) (transfer none): file info for the gzip header, if set
* Since: 2.26
*/
GFileInfo *
g_zlib_compressor_get_file_info (GZlibCompressor *compressor)
{
g_return_val_if_fail (G_IS_ZLIB_COMPRESSOR (compressor), NULL);
return compressor->file_info;
}
/**
* g_zlib_compressor_set_file_info:
* @compressor: a compressor
* @file_info: (nullable): file info for the gzip header
*
* Sets the [property@Gio.ZlibCompressor:file-info] property.
*
* Note: it is an error to call this function while a compression is in
* progress; it may only be called immediately after creation of @compressor,
* or after resetting it with [method@Gio.Converter.reset].
*
* Since: 2.26
*/
void
g_zlib_compressor_set_file_info (GZlibCompressor *compressor,
GFileInfo *file_info)
{
g_return_if_fail (G_IS_ZLIB_COMPRESSOR (compressor));
if (file_info == compressor->file_info)
return;
if (compressor->file_info)
g_object_unref (compressor->file_info);
if (file_info)
g_object_ref (file_info);
compressor->file_info = file_info;
g_object_notify (G_OBJECT (compressor), "file-info");
g_zlib_compressor_set_gzheader (compressor);
}
/**
* g_zlib_compressor_get_os:
* @compressor: a compressor
*
* Gets the [property@Gio.ZlibCompressor:os] property.
*
* Returns: the previously set OS value, or `-1` if unset
* Since: 2.86
*/
int
g_zlib_compressor_get_os (GZlibCompressor *compressor)
{
g_return_val_if_fail (G_IS_ZLIB_COMPRESSOR (compressor), -1);
return compressor->os;
}
/**
* g_zlib_compressor_set_os:
* @compressor: a compressor
* @os: the OS code to use, or `-1` to unset
*
* Sets the [property@Gio.ZlibCompressor:os] property.
*
* Note: it is an error to call this function while a compression is in
* progress; it may only be called immediately after creation of @compressor,
* or after resetting it with [method@Gio.Converter.reset].
*
* Since: 2.86
*/
void
g_zlib_compressor_set_os (GZlibCompressor *compressor,
int os)
{
g_return_if_fail (G_IS_ZLIB_COMPRESSOR (compressor));
g_return_if_fail (os >= -1 && os < 256);
if (os == compressor->os)
return;
compressor->os = os;
g_object_notify (G_OBJECT (compressor), "os");
g_zlib_compressor_set_gzheader (compressor);
}
static void
g_zlib_compressor_reset (GConverter *converter)
{
GZlibCompressor *compressor = G_ZLIB_COMPRESSOR (converter);
int res;
res = deflateReset (&compressor->zstream);
if (res != Z_OK)
g_warning ("unexpected zlib error: %s", compressor->zstream.msg);
/* deflateReset reset the header too, so re-set it */
g_zlib_compressor_set_gzheader (compressor);
}
static GConverterResult
g_zlib_compressor_convert (GConverter *converter,
const void *inbuf,
gsize inbuf_size,
void *outbuf,
gsize outbuf_size,
GConverterFlags flags,
gsize *bytes_read,
gsize *bytes_written,
GError **error)
{
GZlibCompressor *compressor;
int res;
int flush;
compressor = G_ZLIB_COMPRESSOR (converter);
compressor->zstream.next_in = (void *)inbuf;
compressor->zstream.avail_in = inbuf_size;
compressor->zstream.next_out = outbuf;
compressor->zstream.avail_out = outbuf_size;
flush = Z_NO_FLUSH;
if (flags & G_CONVERTER_INPUT_AT_END)
flush = Z_FINISH;
else if (flags & G_CONVERTER_FLUSH)
flush = Z_SYNC_FLUSH;
res = deflate (&compressor->zstream, flush);
if (res == Z_MEM_ERROR)
{
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
_("Not enough memory"));
return G_CONVERTER_ERROR;
}
if (res == Z_STREAM_ERROR)
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
_("Internal error: %s"), compressor->zstream.msg);
return G_CONVERTER_ERROR;
}
if (res == Z_BUF_ERROR)
{
if (flags & G_CONVERTER_FLUSH)
return G_CONVERTER_FLUSHED;
/* We do have output space, so this should only happen if we
have no input but need some */
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PARTIAL_INPUT,
_("Need more input"));
return G_CONVERTER_ERROR;
}
if (res == Z_OK || res == Z_STREAM_END)
{
*bytes_read = inbuf_size - compressor->zstream.avail_in;
*bytes_written = outbuf_size - compressor->zstream.avail_out;
if (res == Z_STREAM_END)
return G_CONVERTER_FINISHED;
return G_CONVERTER_CONVERTED;
}
g_assert_not_reached ();
}
static void
g_zlib_compressor_iface_init (GConverterIface *iface)
{
iface->convert = g_zlib_compressor_convert;
iface->reset = g_zlib_compressor_reset;
}
|