~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_tempdir.cc

  • Committer: Daniel Nichter
  • Date: 2011-10-23 16:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2448.
  • Revision ID: daniel@percona.com-20111023160137-7ac3blgz8z4tf8za
Add Administration Getting Started and Logging.  Capitalize SQL clause keywords.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2000 MySQL AB
2
 
 
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.
6
 
 
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.
11
 
 
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 */
15
 
 
16
 
#include "mysys_priv.h"
17
 
#include <mystrings/m_string.h>
18
 
#include <stdio.h>
19
 
 
20
 
#define DELIM ':'
21
 
 
22
 
bool init_tmpdir(MY_TMPDIR *tmpdir, const char *pathlist)
23
 
{
24
 
  const char *end;
25
 
  char *copy;
26
 
  char buff[FN_REFLEN];
27
 
 
28
 
  pthread_mutex_init(&tmpdir->mutex, MY_MUTEX_INIT_FAST);
29
 
  if (my_init_dynamic_array(&tmpdir->full_list, sizeof(char*), 1, 5))
30
 
    goto err;
31
 
  if (!pathlist || !pathlist[0])
32
 
  {
33
 
    /* Get default temporary directory */
34
 
    pathlist=getenv("TMPDIR");  /* Use this if possible */
35
 
    if (!pathlist || !pathlist[0])
36
 
      pathlist=(char*) P_tmpdir;
37
 
  }
38
 
  do {
39
 
    uint32_t length;
40
 
    end= strrchr(pathlist, DELIM);
41
 
    if (end == NULL)
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*) &copy))
47
 
      return(true);
48
 
    pathlist=end+1;
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;
53
 
  tmpdir->cur=0;
54
 
  return(false);
55
 
 
56
 
err:
57
 
  delete_dynamic(&tmpdir->full_list);           /* Safe to free */
58
 
  pthread_mutex_destroy(&tmpdir->mutex);
59
 
  return(true);
60
 
}
61
 
 
62
 
 
63
 
char *my_tmpdir(MY_TMPDIR *tmpdir)
64
 
{
65
 
  char *dir;
66
 
  if (!tmpdir->max)
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);
72
 
  return dir;
73
 
}
74
 
 
75
 
void free_tmpdir(MY_TMPDIR *tmpdir)
76
 
{
77
 
  uint32_t i;
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);
82
 
}
83