view toys/lsb/mktemp.c @ 1682:abe691083cfe draft

Shameless meddling.
author Rob Landley <rob@landley.net>
date Sat, 07 Feb 2015 19:45:23 -0600
parents 4bcfe4cf3e50
children 9b1cbc13dfdc
line wrap: on
line source

/* mktemp.c - Create a temporary file or directory.
 *
 * Copyright 2012 Elie De Brauwer <eliedebrauwer@gmail.com>
 *
 * http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/mktemp.html

USE_MKTEMP(NEWTOY(mktemp, ">1q(directory)d(tmpdir)p:", TOYFLAG_BIN))

config MKTEMP
  bool "mktemp"
  default y
  help
    usage: mktemp [-dq] [-p DIR] [TEMPLATE]

    Safely create a new file "DIR/TEMPLATE" and print its name.

    -d	Create directory instead of file (--directory)
    -p	Put new file in DIR (--tmpdir)
    -q	Quiet, no error messages

    Each X in TEMPLATE is replaced with a random printable character. The
    default TEMPLATE is tmp.XXXXXX, and the default DIR is $TMPDIR if set,
    else "/tmp".
*/

#define FOR_mktemp
#include "toys.h"

GLOBALS(
  char *tmpdir;
)

void mktemp_main(void)
{
  int d_flag = toys.optflags & FLAG_d;
  char *template = *toys.optargs;

  if (!template) template = "tmp.XXXXXX";

  if (!TT.tmpdir) TT.tmpdir = getenv("TMPDIR");
  if (!TT.tmpdir) TT.tmpdir = "/tmp";

  snprintf(toybuf, sizeof(toybuf), "%s/%s", TT.tmpdir, template);

  if (d_flag ? !mkdtemp(toybuf) : mkstemp(toybuf) == -1) {
    if (toys.optflags & FLAG_q) toys.exitval = 1;
    else perror_exit("Failed to create %s %s/%s",
                     d_flag ? "directory" : "file", TT.tmpdir, template);
  } else xputs(toybuf);
}