2000-04-25 23:24:55 +00:00
|
|
|
/* 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 00:08:53 +00:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2000-04-25 23:24:55 +00:00
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2000-04-25 23:24:55 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int mktemp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-03-17 09:00:54 +00:00
|
|
|
int mktemp_main(int argc ATTRIBUTE_UNUSED, char **argv)
|
2000-04-25 23:24:55 +00:00
|
|
|
{
|
2008-02-09 06:26:53 +00:00
|
|
|
// -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 15:28:41 +00:00
|
|
|
char *chp;
|
2008-02-09 06:26:53 +00:00
|
|
|
unsigned flags;
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2008-02-09 06:26:53 +00:00
|
|
|
opt_complementary = "=1"; /* exactly one arg */
|
|
|
|
flags = getopt32(argv, "dqtp:", &path);
|
2006-10-10 15:28:41 +00:00
|
|
|
chp = argv[optind];
|
|
|
|
|
2008-02-09 06:26:53 +00:00
|
|
|
if (flags & (4|8)) { /* -t and/or -p */
|
|
|
|
const char *dir = getenv("TMPDIR");
|
2006-10-10 15:28:41 +00:00
|
|
|
if (dir && *dir != '\0')
|
2008-02-09 06:26:53 +00:00
|
|
|
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 15:28:41 +00:00
|
|
|
}
|
|
|
|
|
2008-02-09 06:26:53 +00:00
|
|
|
if (flags & 1) { /* -d */
|
2006-10-10 15:28:41 +00:00
|
|
|
if (mkdtemp(chp) == NULL)
|
2003-04-26 04:56:17 +00:00
|
|
|
return EXIT_FAILURE;
|
2006-10-10 15:28:41 +00:00
|
|
|
} else {
|
|
|
|
if (mkstemp(chp) < 0)
|
2003-04-26 04:56:17 +00:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2006-10-10 15:28:41 +00:00
|
|
|
puts(chp);
|
2003-04-26 04:56:17 +00:00
|
|
|
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_SUCCESS;
|
2000-04-25 23:24:55 +00:00
|
|
|
}
|