2000-04-26 04:54:55 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini mktemp implementation for busybox
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Daniel Jacobowitz
|
|
|
|
* Written by Daniel Jacobowitz <dan@debian.org>
|
|
|
|
*
|
2006-01-25 05:38:53 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2000-04-26 04:54:55 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2000-04-26 04:54:55 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int mktemp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-03-17 14:30:54 +05:30
|
|
|
int mktemp_main(int argc ATTRIBUTE_UNUSED, char **argv)
|
2000-04-26 04:54:55 +05:30
|
|
|
{
|
2008-02-09 11:56:53 +05:30
|
|
|
// -d Make a directory instead of a file
|
|
|
|
// -q Fail silently if an error occurs [bbox: ignored]
|
|
|
|
// -t Generate a path rooted in temporary directory
|
|
|
|
// -p DIR Use DIR as a temporary directory (implies -t)
|
|
|
|
const char *path;
|
2006-10-10 20:58:41 +05:30
|
|
|
char *chp;
|
2008-02-09 11:56:53 +05:30
|
|
|
unsigned flags;
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2008-02-09 11:56:53 +05:30
|
|
|
opt_complementary = "=1"; /* exactly one arg */
|
|
|
|
flags = getopt32(argv, "dqtp:", &path);
|
2006-10-10 20:58:41 +05:30
|
|
|
chp = argv[optind];
|
|
|
|
|
2008-02-09 11:56:53 +05:30
|
|
|
if (flags & (4|8)) { /* -t and/or -p */
|
|
|
|
const char *dir = getenv("TMPDIR");
|
2006-10-10 20:58:41 +05:30
|
|
|
if (dir && *dir != '\0')
|
2008-02-09 11:56:53 +05:30
|
|
|
path = dir;
|
|
|
|
else if (!(flags & 8)) /* No -p */
|
|
|
|
path = "/tmp/";
|
|
|
|
/* else path comes from -p DIR */
|
|
|
|
chp = concat_path_file(path, chp);
|
2006-10-10 20:58:41 +05:30
|
|
|
}
|
|
|
|
|
2008-02-09 11:56:53 +05:30
|
|
|
if (flags & 1) { /* -d */
|
2006-10-10 20:58:41 +05:30
|
|
|
if (mkdtemp(chp) == NULL)
|
2003-04-26 10:26:17 +05:30
|
|
|
return EXIT_FAILURE;
|
2006-10-10 20:58:41 +05:30
|
|
|
} else {
|
|
|
|
if (mkstemp(chp) < 0)
|
2003-04-26 10:26:17 +05:30
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2006-10-10 20:58:41 +05:30
|
|
|
puts(chp);
|
2003-04-26 10:26:17 +05:30
|
|
|
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
2000-04-26 04:54:55 +05:30
|
|
|
}
|