2 * Copyright 1997 Victor Schneider
3 * Copyright 2002 Alexandre Julliard
4 * Copyright 2007 Hans Leidekker
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #define WIN32_LEAN_AND_MEAN
29 static UINT CALLBACK
set_outfile( PVOID context
, UINT notification
, UINT_PTR param1
, UINT_PTR param2
)
31 FILE_IN_CABINET_INFO_A
*info
= (FILE_IN_CABINET_INFO_A
*)param1
;
32 char buffer
[MAX_PATH
];
37 case SPFILENOTIFY_FILEINCABINET
:
39 LPSTR outfile
= context
;
42 SetLastError( ERROR_NOT_SUPPORTED
);
45 GetFullPathNameA( info
->NameInCabinet
, sizeof(buffer
), buffer
, &basename
);
46 strcpy( outfile
, basename
);
49 default: return NO_ERROR
;
53 static UINT CALLBACK
extract_callback( PVOID context
, UINT notification
, UINT_PTR param1
, UINT_PTR param2
)
55 FILE_IN_CABINET_INFO_A
*info
= (FILE_IN_CABINET_INFO_A
*)param1
;
59 case SPFILENOTIFY_FILEINCABINET
:
61 LPCSTR targetname
= context
;
63 strcpy( info
->FullTargetName
, targetname
);
66 default: return NO_ERROR
;
70 static BOOL
option_equal(LPCSTR str1
, LPCSTR str2
)
72 if (str1
[0] != '/' && str1
[0] != '-')
74 return !lstrcmpA( str1
+ 1, str2
);
77 int main(int argc
, char *argv
[])
80 char infile
[MAX_PATH
], outfile
[MAX_PATH
], actual_name
[MAX_PATH
];
81 char outfile_basename
[MAX_PATH
], *basename_index
;
86 fprintf( stderr
, "Usage:\n" );
87 fprintf( stderr
, "\t%s infile outfile\n", argv
[0] );
88 fprintf( stderr
, "\t%s /r infile \n", argv
[0] );
92 if (argc
== 3 && (option_equal(argv
[1], "R") || option_equal(argv
[1], "r")))
93 GetFullPathNameA( argv
[2], sizeof(infile
), infile
, NULL
);
95 GetFullPathNameA( argv
[1], sizeof(infile
), infile
, NULL
);
97 if (!SetupGetFileCompressionInfoExA( infile
, actual_name
, sizeof(actual_name
), NULL
, NULL
, NULL
, &comp
))
99 fprintf( stderr
, "%s: can't open input file %s\n", argv
[0], infile
);
103 if (argc
== 3 && (option_equal(argv
[1], "R") || option_equal(argv
[1], "r")))
107 case FILE_COMPRESSION_MSZIP
:
109 outfile_basename
[0] = 0;
110 if (!SetupIterateCabinetA( infile
, 0, set_outfile
, (PVOID
)outfile_basename
))
112 fprintf( stderr
, "%s: can't determine original name\n", argv
[0] );
115 GetFullPathNameA( infile
, sizeof(outfile
), outfile
, &basename_index
);
117 strcat( outfile
, outfile_basename
);
120 case FILE_COMPRESSION_WINLZA
:
122 GetExpandedNameA( infile
, outfile_basename
);
127 fprintf( stderr
, "%s: can't determine original\n", argv
[0] );
133 GetFullPathNameA( argv
[2], sizeof(outfile
), outfile
, NULL
);
135 if (!lstrcmpiA( infile
, outfile
))
137 fprintf( stderr
, "%s: can't expand file to itself\n", argv
[0] );
143 case FILE_COMPRESSION_MSZIP
:
145 if (!SetupIterateCabinetA( infile
, 0, extract_callback
, (PVOID
)outfile
))
147 fprintf( stderr
, "%s: cabinet extraction failed\n", argv
[0] );
152 case FILE_COMPRESSION_WINLZA
:
155 OFSTRUCT ofin
, ofout
;
158 if ((hin
= LZOpenFileA( infile
, &ofin
, OF_READ
)) < 0)
160 fprintf( stderr
, "%s: can't open input file %s\n", argv
[0], infile
);
163 if ((hout
= LZOpenFileA( outfile
, &ofout
, OF_CREATE
| OF_WRITE
)) < 0)
166 fprintf( stderr
, "%s: can't open output file %s\n", argv
[0], outfile
);
169 error
= LZCopy( hin
, hout
);
176 fprintf( stderr
, "%s: LZCopy failed, error is %d\n", argv
[0], error
);
183 if (!CopyFileA( infile
, outfile
, FALSE
))
185 fprintf( stderr
, "%s: CopyFileA failed\n", argv
[0] );