VirtualBox

source: vbox/trunk/src/VBox/Runtime/tools/RTGzip.cpp@ 60066

Last change on this file since 60066 was 59755, checked in by vboxsync, 9 years ago

RTGzip: Just leave it here, disabled, for future debugging.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 21.5 KB
Line 
1/* $Id: RTGzip.cpp 59755 2016-02-20 02:42:45Z vboxsync $ */
2/** @file
3 * IPRT - GZIP Utility.
4 */
5
6/*
7 * Copyright (C) 2010-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#include <iprt/zip.h>
32
33#include <iprt/buildconfig.h>
34#include <iprt/file.h>
35#include <iprt/getopt.h>
36#include <iprt/initterm.h>
37#include <iprt/message.h>
38#include <iprt/param.h>
39#include <iprt/path.h>
40#include <iprt/stream.h>
41#include <iprt/string.h>
42#include <iprt/vfs.h>
43#include <iprt/zip.h>
44
45
46/*******************************************************************************
47* Structures and Typedefs *
48*******************************************************************************/
49/**
50 * Gzip command options.
51 */
52typedef struct RTGZIPCMDOPTS
53{
54 bool fAscii;
55 bool fStdOut;
56 bool fDecompress;
57 bool fForce;
58 bool fKeep;
59 bool fList;
60 bool fName;
61 bool fQuiet;
62 bool fRecursive;
63 const char *pszSuff;
64 bool fTest;
65 unsigned uLevel;
66 /** The current output filename (for deletion). */
67 char szOutput[RTPATH_MAX];
68 /** The current input filename (for deletion and messages). */
69 const char *pszInput;
70} RTGZIPCMDOPTS;
71/** Pointer to GZIP options. */
72typedef RTGZIPCMDOPTS *PRTGZIPCMDOPTS;
73/** Pointer to const GZIP options. */
74typedef RTGZIPCMDOPTS const *PCRTGZIPCMDOPTS;
75
76
77
78/**
79 * Checks if the given standard handle is a TTY.
80 *
81 * @returns true / false
82 * @param enmStdHandle The standard handle.
83 */
84static bool gzipIsStdHandleATty(RTHANDLESTD enmStdHandle)
85{
86 /** @todo Add isatty() to IPRT. */
87 return false;
88}
89
90
91/**
92 * Pushes data from the input to the output I/O streams.
93 *
94 * @returns RTEXITCODE_SUCCESS or RTEXITCODE_FAILURE.
95 * @param hVfsSrc The source I/O stream.
96 * @param hVfsDst The destination I/O stream.
97 */
98static RTEXITCODE gzipPush(RTVFSIOSTREAM hVfsSrc, RTVFSIOSTREAM hVfsDst)
99{
100 for (;;)
101 {
102 uint8_t abBuf[_64K];
103 size_t cbRead;
104 int rc = RTVfsIoStrmRead(hVfsSrc, abBuf, sizeof(abBuf), true /*fBlocking*/, &cbRead);
105 if (RT_FAILURE(rc))
106 return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTVfsIoStrmRead failed: %Rrc", rc);
107 if (rc == VINF_EOF && cbRead == 0)
108 return RTEXITCODE_SUCCESS;
109
110 rc = RTVfsIoStrmWrite(hVfsDst, abBuf, cbRead, true /*fBlocking*/, NULL /*cbWritten*/);
111 if (RT_FAILURE(rc))
112 return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTVfsIoStrmWrite failed: %Rrc", rc);
113 }
114}
115
116
117/**
118 * Pushes the bytes from the input to the output stream, flushes the output
119 * stream and closes both of them.
120 *
121 * On failure, we will delete the output file, if it's a file. The input file
122 * may be deleted, if we're not told to keep it (--keep, --to-stdout).
123 *
124 * @returns RTEXITCODE_SUCCESS or RTEXITCODE_FAILURE.
125 * @param phVfsSrc The input stream. Set to NIL if closed.
126 * @param pOpts The options.
127 * @param phVfsDst The output stream. Set to NIL if closed.
128 */
129static RTEXITCODE gzipPushFlushAndClose(PRTVFSIOSTREAM phVfsSrc, PCRTGZIPCMDOPTS pOpts, PRTVFSIOSTREAM phVfsDst)
130{
131 /*
132 * Push bytes, flush and close the streams.
133 */
134 RTEXITCODE rcExit = gzipPush(*phVfsSrc, *phVfsDst);
135
136 RTVfsIoStrmRelease(*phVfsSrc);
137 *phVfsSrc = NIL_RTVFSIOSTREAM;
138
139 int rc = RTVfsIoStrmFlush(*phVfsDst);
140 if (RT_FAILURE(rc) && rc != VERR_INVALID_PARAMETER)
141 rcExit = RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to flush the output file: %Rrc", rc);
142 RTVfsIoStrmRelease(*phVfsDst);
143 *phVfsDst = NIL_RTVFSIOSTREAM;
144
145 /*
146 * Do the cleaning up, if needed. Remove the input file, if that's the
147 * desire of the user, or remove the output file on failure.
148 */
149 if (!pOpts->fStdOut)
150 {
151 if (rcExit == RTEXITCODE_SUCCESS)
152 {
153 if (!pOpts->fKeep)
154 {
155 rc = RTFileDelete(pOpts->pszInput);
156 if (RT_FAILURE(rc))
157 rcExit = RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to delete '%s': %Rrc", pOpts->pszInput, rc);
158 }
159 }
160 else
161 {
162 rc = RTFileDelete(pOpts->szOutput);
163 if (RT_FAILURE(rc))
164 RTMsgError("Failed to delete '%s': %Rrc", pOpts->szOutput, rc);
165 }
166 }
167
168 return rcExit;
169}
170
171
172/**
173 * Compresses one stream to another.
174 *
175 * @returns Exit code.
176 * @param phVfsSrc The input stream. Set to NIL if closed.
177 * @param pOpts The options.
178 * @param phVfsDst The output stream. Set to NIL if closed.
179 */
180static RTEXITCODE gzipCompressFile(PRTVFSIOSTREAM phVfsSrc, PCRTGZIPCMDOPTS pOpts, PRTVFSIOSTREAM phVfsDst)
181{
182 /*
183 * Attach the ompressor to the output stream.
184 */
185 RTVFSIOSTREAM hVfsGzip;
186 int rc = RTZipGzipCompressIoStream(*phVfsDst, 0 /*fFlags*/, pOpts->uLevel, &hVfsGzip);
187 if (RT_FAILURE(rc))
188 return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTZipGzipCompressIoStream failed: %Rrc", rc);
189
190 uint32_t cRefs = RTVfsIoStrmRelease(*phVfsDst);
191 Assert(cRefs > 0);
192 *phVfsDst = hVfsGzip;
193
194 return gzipPushFlushAndClose(phVfsSrc, pOpts, phVfsDst);
195}
196
197
198/**
199 * Attach a decompressor to the given source stream, replacing and releasing the
200 * input handle with the decompressor.
201 *
202 * @returns Exit code.
203 * @param phVfsSrc The input stream. Replaced on success.
204 */
205static RTEXITCODE gzipSetupDecompressor(PRTVFSIOSTREAM phVfsSrc)
206{
207 /*
208 * Attach the decompressor to the input stream.
209 */
210 uint32_t fFlags = 0;
211 fFlags |= RTZIPGZIPDECOMP_F_ALLOW_ZLIB_HDR;
212 RTVFSIOSTREAM hVfsGunzip;
213 int rc = RTZipGzipDecompressIoStream(*phVfsSrc, fFlags, &hVfsGunzip);
214 if (RT_FAILURE(rc))
215 return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTZipGzipDecompressIoStream failed: %Rrc", rc);
216
217 uint32_t cRefs = RTVfsIoStrmRelease(*phVfsSrc);
218 Assert(cRefs > 0);
219 *phVfsSrc = hVfsGunzip;
220
221#if 0
222 /* This is a good place for testing stuff. */
223 rc = RTVfsCreateReadAheadForIoStream(*phVfsSrc, 0, 16, _4K+1, &hVfsGunzip);
224 AssertRC(rc);
225 if (RT_SUCCESS(rc))
226 {
227 uint32_t cRefs = RTVfsIoStrmRelease(*phVfsSrc);
228 Assert(cRefs > 0);
229 *phVfsSrc = hVfsGunzip;
230 }
231#endif
232
233 return RTEXITCODE_SUCCESS;
234}
235
236
237/**
238 * Decompresses one stream to another.
239 *
240 * @returns Exit code.
241 * @param phVfsSrc The input stream. Set to NIL if closed.
242 * @param pOpts The options.
243 * @param phVfsDst The output stream. Set to NIL if closed.
244 */
245static RTEXITCODE gzipDecompressFile(PRTVFSIOSTREAM phVfsSrc, PCRTGZIPCMDOPTS pOpts, PRTVFSIOSTREAM phVfsDst)
246{
247 RTEXITCODE rcExit = gzipSetupDecompressor(phVfsSrc);
248 if (rcExit == RTEXITCODE_SUCCESS)
249 rcExit = gzipPushFlushAndClose(phVfsSrc, pOpts, phVfsDst);
250 return rcExit;
251}
252
253
254/**
255 * For testing the archive (todo).
256 *
257 * @returns Exit code.
258 * @param phVfsSrc The input stream. Set to NIL if closed.
259 * @param pOpts The options.
260 */
261static RTEXITCODE gzipTestFile(PRTVFSIOSTREAM phVfsSrc, PCRTGZIPCMDOPTS pOpts)
262{
263 /*
264 * Read the whole stream.
265 */
266 RTEXITCODE rcExit = gzipSetupDecompressor(phVfsSrc);
267 if (rcExit == RTEXITCODE_SUCCESS)
268 {
269 for (;;)
270 {
271 uint8_t abBuf[_64K];
272 size_t cbRead;
273 int rc = RTVfsIoStrmRead(*phVfsSrc, abBuf, sizeof(abBuf), true /*fBlocking*/, &cbRead);
274 if (RT_FAILURE(rc))
275 return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTVfsIoStrmRead failed: %Rrc", rc);
276 if (rc == VINF_EOF && cbRead == 0)
277 return RTEXITCODE_SUCCESS;
278 }
279 }
280 return rcExit;
281}
282
283
284static RTEXITCODE gzipListFile(PRTVFSIOSTREAM phVfsSrc, PCRTGZIPCMDOPTS pOpts)
285{
286 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Listing has not been implemented");
287}
288
289
290/**
291 * Opens the output file.
292 *
293 * @returns Command exit, error messages written using RTMsg*.
294 *
295 * @param pszFile The input filename.
296 * @param pOpts The options, szOutput will be filled in by this
297 * function on success.
298 * @param phVfsIos Where to return the output stream handle.
299 *
300 * @remarks This is actually not quite the way we need to do things.
301 *
302 * First of all, we need a GZIP file system stream for a real GZIP
303 * implementation, since there may be more than one file in the gzipped
304 * file.
305 *
306 * Second, we need to open the output files as we encounter files in the input
307 * file system stream. The gzip format contains timestamp and usually a
308 * filename, the default is to use this name (see the --no-name
309 * option).
310 */
311static RTEXITCODE gzipOpenOutput(const char *pszFile, PRTGZIPCMDOPTS pOpts, PRTVFSIOSTREAM phVfsIos)
312{
313 int rc;
314 if (!strcmp(pszFile, "-") || pOpts->fStdOut)
315 {
316 strcpy(pOpts->szOutput, "-");
317
318 if ( !pOpts->fForce
319 && !pOpts->fDecompress
320 && gzipIsStdHandleATty(RTHANDLESTD_OUTPUT))
321 return RTMsgErrorExit(RTEXITCODE_SYNTAX,
322 "Yeah, right. I'm not writing any compressed data to the terminal without --force.\n");
323
324 rc = RTVfsIoStrmFromStdHandle(RTHANDLESTD_OUTPUT,
325 RTFILE_O_WRITE | RTFILE_O_OPEN | RTFILE_O_DENY_NONE,
326 true /*fLeaveOpen*/,
327 phVfsIos);
328 if (RT_FAILURE(rc))
329 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error opening standard output: %Rrc", rc);
330 }
331 else
332 {
333 Assert(!RTVfsChainIsSpec(pszFile));
334
335 /* Construct an output filename. */
336 rc = RTStrCopy(pOpts->szOutput, sizeof(pOpts->szOutput), pszFile);
337 if (RT_FAILURE(rc))
338 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error constructing output filename: %Rrc", rc);
339 if (pOpts->fDecompress)
340 {
341 /** @todo take filename from archive? */
342 size_t cchSuff = strlen(pOpts->pszSuff); Assert(cchSuff > 0);
343 size_t cch = strlen(pOpts->szOutput);
344 if ( cch <= cchSuff
345 || strcmp(&pOpts->szOutput[cch - cchSuff], pOpts->pszSuff))
346 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Input file does not end with: '%s'", pOpts->pszSuff);
347 pOpts->szOutput[cch - cchSuff] = '\0';
348 if (!RTPathFilename(pOpts->szOutput))
349 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error constructing output filename: Input file name is all suffix.");
350 }
351 else
352 {
353 rc = RTStrCat(pOpts->szOutput, sizeof(pOpts->szOutput), pOpts->pszSuff);
354 if (RT_FAILURE(rc))
355 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error constructing output filename: %Rrc", rc);
356 }
357
358 /* Open the output file. */
359 uint32_t fOpen = RTFILE_O_WRITE | RTFILE_O_DENY_WRITE;
360 if (pOpts->fForce)
361 fOpen |= RTFILE_O_CREATE_REPLACE;
362 else
363 fOpen |= RTFILE_O_CREATE;
364 rc = RTVfsIoStrmOpenNormal(pOpts->szOutput, fOpen, phVfsIos);
365 if (RT_FAILURE(rc))
366 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error opening output file '%s': %Rrc", pOpts->szOutput, rc);
367 }
368
369 return RTEXITCODE_SUCCESS;
370}
371
372
373/**
374 * Opens the input file.
375 *
376 * @returns Command exit, error messages written using RTMsg*.
377 *
378 * @param pszFile The input filename.
379 * @param pOpts The options, szOutput will be filled in by this
380 * function on success.
381 * @param phVfsIos Where to return the input stream handle.
382 */
383static RTEXITCODE gzipOpenInput(const char *pszFile, PRTGZIPCMDOPTS pOpts, PRTVFSIOSTREAM phVfsIos)
384{
385 int rc;
386
387 pOpts->pszInput = pszFile;
388 if (!strcmp(pszFile, "-"))
389 {
390 if ( !pOpts->fForce
391 && pOpts->fDecompress
392 && gzipIsStdHandleATty(RTHANDLESTD_OUTPUT))
393 return RTMsgErrorExit(RTEXITCODE_SYNTAX,
394 "Yeah, right. I'm not reading any compressed data from the terminal without --force.\n");
395
396 rc = RTVfsIoStrmFromStdHandle(RTHANDLESTD_INPUT,
397 RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_NONE,
398 true /*fLeaveOpen*/,
399 phVfsIos);
400 if (RT_FAILURE(rc))
401 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error opening standard input: %Rrc", rc);
402 }
403 else
404 {
405 const char *pszError;
406 rc = RTVfsChainOpenIoStream(pszFile, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE, phVfsIos, &pszError);
407 if (RT_FAILURE(rc))
408 {
409 if (pszError && *pszError)
410 return RTMsgErrorExit(RTEXITCODE_FAILURE,
411 "RTVfsChainOpenIoStream failed with rc=%Rrc:\n"
412 " '%s'\n"
413 " %*s^\n",
414 rc, pszFile, pszError - pszFile, "");
415 return RTMsgErrorExit(RTEXITCODE_FAILURE,
416 "RTVfsChainOpenIoStream failed with rc=%Rrc: '%s'",
417 rc, pszFile);
418 }
419 }
420
421 return RTEXITCODE_SUCCESS;
422
423}
424
425
426/**
427 * A mini GZIP program.
428 *
429 * @returns Program exit code.
430 *
431 * @param cArgs The number of arguments.
432 * @param papszArgs The argument vector. (Note that this may be
433 * reordered, so the memory must be writable.)
434 */
435RTEXITCODE RTZipGzipCmd(unsigned cArgs, char **papszArgs)
436{
437
438 /*
439 * Parse the command line.
440 */
441 static const RTGETOPTDEF s_aOptions[] =
442 {
443 { "--ascii", 'a', RTGETOPT_REQ_NOTHING },
444 { "--stdout", 'c', RTGETOPT_REQ_NOTHING },
445 { "--to-stdout", 'c', RTGETOPT_REQ_NOTHING },
446 { "--decompress", 'd', RTGETOPT_REQ_NOTHING },
447 { "--uncompress", 'd', RTGETOPT_REQ_NOTHING },
448 { "--force", 'f', RTGETOPT_REQ_NOTHING },
449 { "--keep", 'k', RTGETOPT_REQ_NOTHING },
450 { "--list", 'l', RTGETOPT_REQ_NOTHING },
451 { "--no-name", 'n', RTGETOPT_REQ_NOTHING },
452 { "--name", 'N', RTGETOPT_REQ_NOTHING },
453 { "--quiet", 'q', RTGETOPT_REQ_NOTHING },
454 { "--recursive", 'r', RTGETOPT_REQ_NOTHING },
455 { "--suffix", 'S', RTGETOPT_REQ_STRING },
456 { "--test", 't', RTGETOPT_REQ_NOTHING },
457 { "--verbose", 'v', RTGETOPT_REQ_NOTHING },
458 { "--fast", '1', RTGETOPT_REQ_NOTHING },
459 { "-1", '1', RTGETOPT_REQ_NOTHING },
460 { "-2", '2', RTGETOPT_REQ_NOTHING },
461 { "-3", '3', RTGETOPT_REQ_NOTHING },
462 { "-4", '4', RTGETOPT_REQ_NOTHING },
463 { "-5", '5', RTGETOPT_REQ_NOTHING },
464 { "-6", '6', RTGETOPT_REQ_NOTHING },
465 { "-7", '7', RTGETOPT_REQ_NOTHING },
466 { "-8", '8', RTGETOPT_REQ_NOTHING },
467 { "-9", '9', RTGETOPT_REQ_NOTHING },
468 { "--best", '9', RTGETOPT_REQ_NOTHING }
469 };
470
471 RTGZIPCMDOPTS Opts;
472 Opts.fAscii = false;
473 Opts.fStdOut = false;
474 Opts.fDecompress = false;
475 Opts.fForce = false;
476 Opts.fKeep = false;
477 Opts.fList = false;
478 Opts.fName = true;
479 Opts.fQuiet = false;
480 Opts.fRecursive = false;
481 Opts.pszSuff = ".gz";
482 Opts.fTest = false;
483 Opts.uLevel = 6;
484
485 RTEXITCODE rcExit = RTEXITCODE_SUCCESS;
486 unsigned cProcessed = 0;
487 RTVFSIOSTREAM hVfsStdOut= NIL_RTVFSIOSTREAM;
488
489 RTGETOPTSTATE GetState;
490 int rc = RTGetOptInit(&GetState, cArgs, papszArgs, s_aOptions, RT_ELEMENTS(s_aOptions), 1,
491 RTGETOPTINIT_FLAGS_OPTS_FIRST);
492 if (RT_FAILURE(rc))
493 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "RTGetOptInit: %Rrc", rc);
494
495 for (;;)
496 {
497 RTGETOPTUNION ValueUnion;
498 int chOpt = RTGetOpt(&GetState, &ValueUnion);
499 switch (chOpt)
500 {
501 case 0:
502 /*
503 * If we've processed any files we're done. Otherwise take
504 * input from stdin and write the output to stdout.
505 */
506 if (cProcessed > 0)
507 return rcExit;
508 ValueUnion.psz = "-";
509 Opts.fStdOut = true;
510 /* Fall thru. */
511 case VINF_GETOPT_NOT_OPTION:
512 {
513 if (!*Opts.pszSuff && !Opts.fStdOut)
514 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "The --suffix option specified an empty string");
515 if (!Opts.fStdOut && RTVfsChainIsSpec(ValueUnion.psz))
516 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Must use standard out with VFS chain specifications");
517 if (Opts.fName)
518 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "The --name option has not yet been implemented. Use --no-name.");
519 if (Opts.fAscii)
520 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "The --ascii option has not yet been implemented.");
521 if (Opts.fRecursive)
522 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "The --recursive option has not yet been implemented.");
523
524 /* Open the input file. */
525 RTVFSIOSTREAM hVfsSrc;
526 RTEXITCODE rcExit2 = gzipOpenInput(ValueUnion.psz, &Opts, &hVfsSrc);
527 if (rcExit2 == RTEXITCODE_SUCCESS)
528 {
529 if (Opts.fList)
530 rcExit2 = gzipListFile(&hVfsSrc, &Opts);
531 else if (Opts.fTest)
532 rcExit2 = gzipTestFile(&hVfsSrc, &Opts);
533 else
534 {
535 RTVFSIOSTREAM hVfsDst;
536 rcExit2 = gzipOpenOutput(ValueUnion.psz, &Opts, &hVfsDst);
537 if (rcExit2 == RTEXITCODE_SUCCESS)
538 {
539 if (Opts.fDecompress)
540 rcExit2 = gzipDecompressFile(&hVfsSrc, &Opts, &hVfsDst);
541 else
542 rcExit2 = gzipCompressFile(&hVfsSrc, &Opts, &hVfsDst);
543 RTVfsIoStrmRelease(hVfsDst);
544 }
545 }
546 RTVfsIoStrmRelease(hVfsSrc);
547 }
548 if (rcExit2 != RTEXITCODE_SUCCESS)
549 rcExit = rcExit2;
550
551 cProcessed++;
552 break;
553 }
554
555 case 'a': Opts.fAscii = true; break;
556 case 'c':
557 Opts.fStdOut = true;
558 Opts.fKeep = true;
559 break;
560 case 'd': Opts.fDecompress = true; break;
561 case 'f': Opts.fForce = true; break;
562 case 'k': Opts.fKeep = true; break;
563 case 'l': Opts.fList = true; break;
564 case 'n': Opts.fName = false; break;
565 case 'N': Opts.fName = true; break;
566 case 'q': Opts.fQuiet = true; break;
567 case 'r': Opts.fRecursive = true; break;
568 case 'S': Opts.pszSuff = ValueUnion.psz; break;
569 case 't': Opts.fTest = true; break;
570 case 'v': Opts.fQuiet = false; break;
571 case '1': Opts.uLevel = 1; break;
572 case '2': Opts.uLevel = 2; break;
573 case '3': Opts.uLevel = 3; break;
574 case '4': Opts.uLevel = 4; break;
575 case '5': Opts.uLevel = 5; break;
576 case '6': Opts.uLevel = 6; break;
577 case '7': Opts.uLevel = 7; break;
578 case '8': Opts.uLevel = 8; break;
579 case '9': Opts.uLevel = 9; break;
580
581 case 'h':
582 RTPrintf("Usage: to be written\nOption dump:\n");
583 for (unsigned i = 0; i < RT_ELEMENTS(s_aOptions); i++)
584 RTPrintf(" -%c,%s\n", s_aOptions[i].iShort, s_aOptions[i].pszLong);
585 return RTEXITCODE_SUCCESS;
586
587 case 'V':
588 RTPrintf("%sr%d\n", RTBldCfgVersion(), RTBldCfgRevision());
589 return RTEXITCODE_SUCCESS;
590
591 default:
592 return RTGetOptPrintError(chOpt, &ValueUnion);
593 }
594 }
595}
596
597
598int main(int argc, char **argv)
599{
600 int rc = RTR3InitExe(argc, &argv, 0);
601 if (RT_FAILURE(rc))
602 return RTMsgInitFailure(rc);
603 return RTZipGzipCmd(argc, argv);
604}
605
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette