blob: 2bde7df96adb68d1b396fc708045bebc2fc34015 [file] [log] [blame]
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00001/*
Patrick Georgib7b56dd82009-09-14 13:29:27 +00002 * compression handling for cbfstool
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00003 *
Patrick Georgib7b56dd82009-09-14 13:29:27 +00004 * Copyright (C) 2009 coresystems GmbH
5 * written by Patrick Georgi <patrick.georgi@coresystems.de>
6 *
7 * Adapted from code
8 * Copyright (C) 2008 Jordan Crouse <jordan@cosmicpenguin.net>, released
9 * under identical license terms
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; version 2 of the License.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010022 * Foundation, Inc.
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000023 */
24
25#include <string.h>
Patrick Georgib7b56dd82009-09-14 13:29:27 +000026#include <stdio.h>
27#include "common.h"
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000028
Gabe Blackdbd006b2014-02-20 23:38:49 -080029static int lzma_compress(char *in, int in_len, char *out, int *out_len)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000030{
Gabe Blackdbd006b2014-02-20 23:38:49 -080031 return do_lzma_compress(in, in_len, out, out_len);
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000032}
33
Patrick Georgi61c82292015-08-26 12:53:41 +020034static int lzma_decompress(char *in, int in_len, char *out, unused int out_len)
35{
36 return do_lzma_uncompress(out, out_len, in, in_len);
37}
Gabe Blackdbd006b2014-02-20 23:38:49 -080038static int none_compress(char *in, int in_len, char *out, int *out_len)
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000039{
40 memcpy(out, in, in_len);
41 *out_len = in_len;
Gabe Blackdbd006b2014-02-20 23:38:49 -080042 return 0;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000043}
Patrick Georgib7b56dd82009-09-14 13:29:27 +000044
Patrick Georgi61c82292015-08-26 12:53:41 +020045static int none_decompress(char *in, int in_len, char *out, unused int out_len)
46{
47 memcpy(out, in, in_len);
48 return 0;
49}
50
Sol Boucher6310ccc2015-05-07 21:12:28 -070051comp_func_ptr compression_function(enum comp_algo algo)
Patrick Georgib7b56dd82009-09-14 13:29:27 +000052{
53 comp_func_ptr compress;
54 switch (algo) {
55 case CBFS_COMPRESS_NONE:
56 compress = none_compress;
57 break;
58 case CBFS_COMPRESS_LZMA:
59 compress = lzma_compress;
60 break;
61 default:
Hung-Te Lin4d87d4e2013-01-28 14:39:43 +080062 ERROR("Unknown compression algorithm %d!\n", algo);
Patrick Georgib7b56dd82009-09-14 13:29:27 +000063 return NULL;
64 }
65 return compress;
66}
Patrick Georgi61c82292015-08-26 12:53:41 +020067
68decomp_func_ptr decompression_function(enum comp_algo algo)
69{
70 decomp_func_ptr decompress;
71 switch (algo) {
72 case CBFS_COMPRESS_NONE:
73 decompress = none_decompress;
74 break;
75 case CBFS_COMPRESS_LZMA:
76 decompress = lzma_decompress;
77 break;
78 default:
79 ERROR("Unknown compression algorithm %d!\n", algo);
80 return NULL;
81 }
82 return decompress;
83}