1 | /* $Id: RTDirCreateTemp-generic.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - RTDirCreateTemp, generic implementation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009 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/dir.h>
|
---|
32 | #include "internal/iprt.h"
|
---|
33 |
|
---|
34 | #include <iprt/assert.h>
|
---|
35 | #include <iprt/err.h>
|
---|
36 | #include <iprt/path.h>
|
---|
37 | #include <iprt/rand.h>
|
---|
38 | #include <iprt/string.h>
|
---|
39 |
|
---|
40 |
|
---|
41 | RTDECL(int) RTDirCreateTemp(char *pszTemplate)
|
---|
42 | {
|
---|
43 | /*
|
---|
44 | * Validate input and count X'es.
|
---|
45 | *
|
---|
46 | * The X'es may be trailing, or they may be a cluster of 3 or more inside
|
---|
47 | * the file name.
|
---|
48 | */
|
---|
49 | AssertPtr(pszTemplate);
|
---|
50 | unsigned cXes = 0;
|
---|
51 | char *pszX = strchr(pszTemplate, '\0');
|
---|
52 | if ( pszX != pszTemplate
|
---|
53 | && pszX[-1] != 'X')
|
---|
54 | {
|
---|
55 | /* look inside the file name. */
|
---|
56 | char *pszFilename = RTPathFilename(pszTemplate);
|
---|
57 | if ( pszFilename
|
---|
58 | && (size_t)(pszX - pszFilename) > 3)
|
---|
59 | {
|
---|
60 | char *pszXEnd = pszX - 1;
|
---|
61 | pszFilename += 3;
|
---|
62 | do
|
---|
63 | {
|
---|
64 | if ( pszXEnd[-1] == 'X'
|
---|
65 | && pszXEnd[-2] == 'X'
|
---|
66 | && pszXEnd[-3] == 'X')
|
---|
67 | {
|
---|
68 | pszX = pszXEnd - 3;
|
---|
69 | cXes = 3;
|
---|
70 | break;
|
---|
71 | }
|
---|
72 | } while (pszXEnd-- != pszFilename);
|
---|
73 | }
|
---|
74 | }
|
---|
75 |
|
---|
76 | /* count them */
|
---|
77 | while ( pszX != pszTemplate
|
---|
78 | && pszX[-1] == 'X')
|
---|
79 | {
|
---|
80 | pszX--;
|
---|
81 | cXes++;
|
---|
82 | }
|
---|
83 |
|
---|
84 | /* fail if none found. */
|
---|
85 | if (!cXes)
|
---|
86 | {
|
---|
87 | AssertFailed();
|
---|
88 | *pszTemplate = '\0';
|
---|
89 | return VERR_INVALID_PARAMETER;
|
---|
90 | }
|
---|
91 |
|
---|
92 | /*
|
---|
93 | * Try ten thousand times.
|
---|
94 | */
|
---|
95 | int i = 10000;
|
---|
96 | while (i-- > 0)
|
---|
97 | {
|
---|
98 | static char const s_sz[] = "0123456789abcdefghijklmnopqrstuvwxyz";
|
---|
99 | unsigned j = cXes;
|
---|
100 | while (j-- > 0)
|
---|
101 | pszX[j] = s_sz[RTRandU32Ex(0, RT_ELEMENTS(s_sz) - 2)];
|
---|
102 | int rc = RTDirCreate(pszTemplate, 0700);
|
---|
103 | if (RT_SUCCESS(rc))
|
---|
104 | return rc;
|
---|
105 | if (rc != VERR_ALREADY_EXISTS)
|
---|
106 | {
|
---|
107 | *pszTemplate = '\0';
|
---|
108 | return rc;
|
---|
109 | }
|
---|
110 | }
|
---|
111 |
|
---|
112 | /* we've given up. */
|
---|
113 | *pszTemplate = '\0';
|
---|
114 | return VERR_ALREADY_EXISTS;
|
---|
115 | }
|
---|
116 | RT_EXPORT_SYMBOL(RTDirCreateTemp);
|
---|
117 |
|
---|