1
/* Copyright (C) 2000 MySQL AB
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
16
#include "mysys_priv.h"
17
#include <mystrings/m_string.h>
22
bool init_tmpdir(MY_TMPDIR *tmpdir, const char *pathlist)
28
pthread_mutex_init(&tmpdir->mutex, MY_MUTEX_INIT_FAST);
29
if (my_init_dynamic_array(&tmpdir->full_list, sizeof(char*), 1, 5))
31
if (!pathlist || !pathlist[0])
33
/* Get default temporary directory */
34
pathlist=getenv("TMPDIR"); /* Use this if possible */
35
if (!pathlist || !pathlist[0])
36
pathlist=(char*) P_tmpdir;
40
end= strrchr(pathlist, DELIM);
42
end= pathlist+strlen(pathlist);
43
strmake(buff, pathlist, (uint) (end-pathlist));
44
length= cleanup_dirname(buff, buff);
45
if (!(copy= my_strndup(buff, length, MYF(MY_WME))) ||
46
insert_dynamic(&tmpdir->full_list, (unsigned char*) ©))
49
} while (*end != '\0');
50
freeze_size(&tmpdir->full_list);
51
tmpdir->list=(char **)tmpdir->full_list.buffer;
52
tmpdir->max=tmpdir->full_list.elements-1;
57
delete_dynamic(&tmpdir->full_list); /* Safe to free */
58
pthread_mutex_destroy(&tmpdir->mutex);
63
char *my_tmpdir(MY_TMPDIR *tmpdir)
67
return tmpdir->list[0];
68
pthread_mutex_lock(&tmpdir->mutex);
69
dir=tmpdir->list[tmpdir->cur];
70
tmpdir->cur= (tmpdir->cur == tmpdir->max) ? 0 : tmpdir->cur+1;
71
pthread_mutex_unlock(&tmpdir->mutex);
75
void free_tmpdir(MY_TMPDIR *tmpdir)
78
for (i=0; i<=tmpdir->max; i++)
79
free(tmpdir->list[i]);
80
delete_dynamic(&tmpdir->full_list);
81
pthread_mutex_destroy(&tmpdir->mutex);