TIP 431: Add 'tempdir' Subcommand to 'file'

Login
Author:		Kevin Pasko <[email protected]>
State:		Draft
Type:		Project
Tcl-Version:	8.7
Vote:		Pending
Created:	10-Sep-2014
Keywords:	Tcl, directory, file
Post-History:

Abstract

This TIP proposes adding a new tempdir subcommand to the file command, simplifying the effort required in creating uniquely named temporary directories at the scripting level.

Rationale

Due to the non-atomic nature of the file mkdir command it is currently impossible to create uniquely named temporary directories at the script level without the possibility of race conditions.

Specification

The file tempdir command shall implement the functionality of the POSIX standard mkdtemp() function. With no arguments file tempdir shall create a uniquely named temporary directory in the native operating system's temporary directory, with naming convention "tcl_XXXXXX" where each X is a randomly selected character (following the file tempfile naming convention). Successful completion of file tempdir shall return the absolute path of the created directory, otherwise an error shall be thrown.

file tempdir shall have an optional argument, template, to modify the created directory's path and name. The template shall be decomposed into (up to) two parts: the directory's path and rootname. If either part is absent, relevant defaults (e.g., according to the native operating system) shall be used. The entire temporary name shall then be formed from the path, the root, and a generated unique string of (typically) six characters. If the directory part of the template is supplied, it should refer to a directory on the native filesystem.

The command syntax should be defined as:

file tempdir ?template?

Considerations

Reference Implementation

An example of temporary directory creation has already been developed in the Tcl core, at the C level, within the Windows-specific layers of the load command. The principal work remaining is to expose this via a Tcl command and building equivalent functionality on other platforms.

Copyright

This document has been placed in the public domain.