1 /* This file is part of GNU tar.
2 Copyright 2007, 2009, 2013-2014, 2016-2017 Free Software Foundation,
5 Written by Sergey Poznyakoff.
7 GNU tar is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3, or (at your option) any later
12 GNU tar is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
15 Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with GNU tar. If not, see <http://www.gnu.org/licenses/>. */
23 struct compression_suffix
30 static struct compression_suffix compression_suffixes
[] = {
31 #define __CAT2__(a,b) a ## b
32 #define S(s,p) #s, sizeof (#s) - 1, __CAT2__(p,_PROGRAM)
48 { S(txz
, XZ
) }, /* Slackware */
56 static struct compression_suffix
const *
57 find_compression_suffix (const char *name
, size_t *ret_len
)
59 char *suf
= strrchr (name
, '.');
64 struct compression_suffix
*p
;
69 for (p
= compression_suffixes
; p
->suffix
; p
++)
71 if (p
->length
== len
&& memcmp (p
->suffix
, suf
, len
) == 0)
74 *ret_len
= strlen (name
) - len
- 1;
83 find_compression_program (const char *name
, const char *defprog
)
85 struct compression_suffix
const *p
= find_compression_suffix (name
, NULL
);
92 set_compression_program_by_suffix (const char *name
, const char *defprog
)
94 const char *program
= find_compression_program (name
, defprog
);
96 use_compress_program_option
= program
;
100 strip_compression_suffix (const char *name
)
104 struct compression_suffix
const *p
= find_compression_suffix (name
, &len
);
108 /* Strip an additional ".tar" suffix, but only if the just-stripped
109 "outer" suffix did not begin with "t". */
110 if (len
> 4 && strncmp (name
+ len
- 4, ".tar", 4) == 0
111 && p
->suffix
[0] != 't')
115 s
= xmalloc (len
+ 1);
116 memcpy (s
, name
, len
);