]> wimlib.net Git - wimlib/blobdiff - src/compress.c
ntfs-3g_apply.c: note bugs fixed in NTFS-3G version 2017.3.23
[wimlib] / src / compress.c
index 039836af5c8f19d62b954c5e79ea537762bca109..1b0d2c9f9aff5d0f04b1537bda5f264b3c9efd89 100644 (file)
@@ -6,22 +6,20 @@
  */
 
 /*
- * Copyright (C) 2013 Eric Biggers
+ * Copyright (C) 2013, 2014 Eric Biggers
  *
- * This file is part of wimlib, a library for working with WIM files.
+ * This file 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 3 of the License, or (at your option) any
+ * later version.
  *
- * wimlib is free software; you can redistribute it and/or modify it under the
- * terms of the GNU General Public License as published by the Free
- * Software Foundation; either version 3 of the License, or (at your option)
- * any later version.
- *
- * wimlib 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 General Public License for more
+ * This file 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 General Public License
- * along with wimlib; if not, see http://www.gnu.org/licenses/.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this file; if not, see http://www.gnu.org/licenses/.
  */
 
 #ifdef HAVE_CONFIG_H
 #endif
 
 #include "wimlib.h"
+#include "wimlib/error.h"
 #include "wimlib/compressor_ops.h"
 #include "wimlib/util.h"
 
 struct wimlib_compressor {
        const struct compressor_ops *ops;
        void *private;
+       enum wimlib_compression_type ctype;
+       size_t max_block_size;
 };
 
-static const struct compressor_ops *compressor_ops[] = {
+static const struct compressor_ops * const compressor_ops[] = {
        [WIMLIB_COMPRESSION_TYPE_XPRESS] = &xpress_compressor_ops,
        [WIMLIB_COMPRESSION_TYPE_LZX]    = &lzx_compressor_ops,
        [WIMLIB_COMPRESSION_TYPE_LZMS]   = &lzms_compressor_ops,
 };
 
-static struct wimlib_compressor_params_header *
-compressor_default_params[ARRAY_LEN(compressor_ops)] = {
-};
+/* Scale: 10 = low, 50 = medium, 100 = high */
+
+#define DEFAULT_COMPRESSION_LEVEL 50
+
+static unsigned int default_compression_levels[ARRAY_LEN(compressor_ops)];
 
 static bool
 compressor_ctype_valid(int ctype)
@@ -56,103 +59,104 @@ compressor_ctype_valid(int ctype)
 }
 
 WIMLIBAPI int
-wimlib_set_default_compressor_params(enum wimlib_compression_type ctype,
-                                    const struct wimlib_compressor_params_header *params)
+wimlib_set_default_compression_level(int ctype, unsigned int compression_level)
 {
-       struct wimlib_compressor_params_header *dup;
-
-       if (!compressor_ctype_valid(ctype))
-               return WIMLIB_ERR_INVALID_COMPRESSION_TYPE;
-
-       if (params != NULL &&
-           compressor_ops[ctype]->params_valid != NULL &&
-           !compressor_ops[ctype]->params_valid(params))
-               return WIMLIB_ERR_INVALID_PARAM;
+       if (ctype == -1) {
+               for (int i = 0; i < ARRAY_LEN(default_compression_levels); i++)
+                       default_compression_levels[i] = compression_level;
+       } else {
+               if (!compressor_ctype_valid(ctype))
+                       return WIMLIB_ERR_INVALID_COMPRESSION_TYPE;
 
-       dup = NULL;
-       if (params) {
-               dup = memdup(params, params->size);
-               if (dup == NULL)
-                       return WIMLIB_ERR_NOMEM;
+               default_compression_levels[ctype] = compression_level;
        }
-
-       FREE(compressor_default_params[ctype]);
-       compressor_default_params[ctype] = dup;
        return 0;
 }
 
-void
-cleanup_compressor_params(void)
-{
-       for (size_t i = 0; i < ARRAY_LEN(compressor_default_params); i++) {
-               FREE(compressor_default_params[i]);
-               compressor_default_params[i] = NULL;
-       }
-}
-
 WIMLIBAPI u64
 wimlib_get_compressor_needed_memory(enum wimlib_compression_type ctype,
                                    size_t max_block_size,
-                                   const struct wimlib_compressor_params_header *extra_params)
+                                   unsigned int compression_level)
 {
+       bool destructive;
        const struct compressor_ops *ops;
-       const struct wimlib_compressor_params_header *params;
        u64 size;
 
+       destructive = (compression_level & WIMLIB_COMPRESSOR_FLAG_DESTRUCTIVE);
+       compression_level &= ~WIMLIB_COMPRESSOR_FLAG_DESTRUCTIVE;
+
        if (!compressor_ctype_valid(ctype))
                return 0;
 
+       if (compression_level > 0xFFFFFF)
+               return 0;
+
+       if (max_block_size == 0)
+               return 0;
+
        ops = compressor_ops[ctype];
 
-       if (extra_params) {
-               params = extra_params;
-               if (ops->params_valid && !ops->params_valid(params))
+       if (compression_level == 0)
+               compression_level = default_compression_levels[ctype];
+       if (compression_level == 0)
+               compression_level = DEFAULT_COMPRESSION_LEVEL;
+
+       if (ops->get_needed_memory) {
+               size = ops->get_needed_memory(max_block_size, compression_level,
+                                             destructive);
+
+               /* 0 is never valid and indicates an invalid max_block_size.  */
+               if (size == 0)
                        return 0;
        } else {
-               params = compressor_default_params[ctype];
+               size = 0;
        }
-
-       size = sizeof(struct wimlib_compressor);
-       if (ops->get_needed_memory)
-               size += ops->get_needed_memory(max_block_size, params);
-       return size;
+       return size + sizeof(struct wimlib_compressor);
 }
 
-
 WIMLIBAPI int
 wimlib_create_compressor(enum wimlib_compression_type ctype,
                         size_t max_block_size,
-                        const struct wimlib_compressor_params_header *extra_params,
+                        unsigned int compression_level,
                         struct wimlib_compressor **c_ret)
 {
+       bool destructive;
        struct wimlib_compressor *c;
 
-       if (c_ret == NULL)
-               return WIMLIB_ERR_INVALID_PARAM;
+       destructive = (compression_level & WIMLIB_COMPRESSOR_FLAG_DESTRUCTIVE);
+       compression_level &= ~WIMLIB_COMPRESSOR_FLAG_DESTRUCTIVE;
 
        if (!compressor_ctype_valid(ctype))
                return WIMLIB_ERR_INVALID_COMPRESSION_TYPE;
 
+       if (compression_level > 0xFFFFFF)
+               return WIMLIB_ERR_INVALID_PARAM;
+
+       if (c_ret == NULL)
+               return WIMLIB_ERR_INVALID_PARAM;
+
+       if (max_block_size == 0)
+               return WIMLIB_ERR_INVALID_PARAM;
+
        c = MALLOC(sizeof(*c));
        if (c == NULL)
                return WIMLIB_ERR_NOMEM;
        c->ops = compressor_ops[ctype];
        c->private = NULL;
+       c->ctype = ctype;
+       c->max_block_size = max_block_size;
        if (c->ops->create_compressor) {
-               const struct wimlib_compressor_params_header *params;
                int ret;
 
-               if (extra_params) {
-                       params = extra_params;
-                       if (c->ops->params_valid && !c->ops->params_valid(params)) {
-                               FREE(c);
-                               return WIMLIB_ERR_INVALID_PARAM;
-                       }
-               } else {
-                       params = compressor_default_params[ctype];
-               }
+               if (compression_level == 0)
+                       compression_level = default_compression_levels[ctype];
+               if (compression_level == 0)
+                       compression_level = DEFAULT_COMPRESSION_LEVEL;
+
                ret = c->ops->create_compressor(max_block_size,
-                                               params, &c->private);
+                                               compression_level,
+                                               destructive,
+                                               &c->private);
                if (ret) {
                        FREE(c);
                        return ret;
@@ -167,6 +171,9 @@ wimlib_compress(const void *uncompressed_data, size_t uncompressed_size,
                void *compressed_data, size_t compressed_size_avail,
                struct wimlib_compressor *c)
 {
+       if (unlikely(uncompressed_size == 0 || uncompressed_size > c->max_block_size))
+               return 0;
+
        return c->ops->compress(uncompressed_data, uncompressed_size,
                                compressed_data, compressed_size_avail,
                                c->private);