home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / my_tempnam.c < prev    next >
C/C++ Source or Header  |  2000-10-03  |  4KB  |  143 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.  
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.  
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.  
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18. #include "mysys_priv.h"
  19. #include <m_string.h>
  20. #include "my_static.h"
  21. #include "mysys_err.h"
  22.  
  23. #define TMP_EXT ".tmp"                /* Extension of tempfile  */
  24. #if ! defined(P_tmpdir)
  25. #define P_tmpdir ""
  26. #endif
  27.  
  28. #ifdef HAVE_TEMPNAM
  29. #ifndef MSDOS
  30. extern char **environ;
  31. #endif
  32. #endif
  33.  
  34. /* Make a uniq temp file name by using dir and adding something after
  35.    pfx to make name uniq. Name is made by adding a uniq 8 length-string and
  36.    TMP_EXT after pfx.
  37.    Returns pointer to malloced area for filename. Should be freed by
  38.    free().
  39.    The name should be uniq, but it isn't checked if it file allready exists.
  40.    Uses tempnam() if function exist on system.
  41.    This function fixes that if dir is given it's used. For example
  42.    MSDOS tempnam() uses always TMP environment-variable if it exists.
  43. */
  44.     /* ARGSUSED */
  45.  
  46. my_string my_tempnam(const char *dir, const char *pfx,
  47.              myf MyFlags  __attribute__((unused)))
  48. {
  49. #ifdef _MSC_VER
  50.   char temp[FN_REFLEN],*end,*res,**old_env,*temp_env[1];
  51.   old_env=environ;
  52.   if (dir)
  53.   {
  54.     end=strend(dir)-1;
  55.     if (!dir[0])
  56.     {                /* Change empty string to current dir */
  57.       temp[0]= FN_CURLIB;
  58.       temp[1]= 0;
  59.       dir=temp;
  60.     }
  61.     else if (*end == FN_DEVCHAR)
  62.     {                /* Get current dir for drive */
  63.       _fullpath(temp,dir,FN_REFLEN);
  64.       dir=temp;
  65.     }
  66.     else if (*end == FN_LIBCHAR && dir < end && end[-1] != FN_DEVCHAR)
  67.     {
  68.       strmake(temp,dir,(uint) (end-dir));    /* Copy and remove last '\' */
  69.       dir=temp;
  70.     }
  71.     environ=temp_env;        /* Force use of dir (dir not checked) */
  72.     temp_env[0]=0;
  73.   }
  74.   res=tempnam((char*) dir,(my_string) pfx);
  75.   environ=old_env;
  76.   return res;
  77. #else
  78. #ifdef __ZTC__
  79.   if (!dir)
  80.   {                /* If empty test first if TMP can be used */
  81.     dir=getenv("TMP");
  82.   }
  83.   return tempnam((char*) dir,(my_string) pfx); /* Use stand. dir with prefix */
  84. #else
  85. #ifdef HAVE_TEMPNAM
  86.   char temp[2],*res,**old_env,*temp_env[1];
  87.  
  88.   if (dir && !dir[0])
  89.   {                /* Change empty string to current dir */
  90.     temp[0]= FN_CURLIB;
  91.     temp[1]= 0;
  92.     dir=temp;
  93.   }
  94.   old_env=environ;
  95.   if (dir)
  96.   {                /* Don't use TMPDIR if dir is given */
  97.     environ=temp_env;
  98.     temp_env[0]=0;
  99.   }
  100.   res=tempnam((char*) dir,(my_string) pfx); /* Use stand. dir with prefix */
  101.   environ=old_env;
  102.   if (!res)
  103.     DBUG_PRINT("error",("Got error: %d from tempnam",errno));
  104.   return res;
  105. #else
  106.   register long uniq;
  107.   register int length;
  108.   my_string pos,end_pos;
  109.   DBUG_ENTER("my_tempnam");
  110.                     /* Make a uniq nummber */
  111.   pthread_mutex_lock(&THR_LOCK_open);
  112.   uniq= ((long) getpid() << 20) + (long) _my_tempnam_used++ ;
  113.   pthread_mutex_unlock(&THR_LOCK_open);
  114.   if (!dir && !(dir=getenv("TMPDIR")))    /* Use this if possibly */
  115.     dir=P_tmpdir;            /* Use system default */
  116.   length=strlen(dir)+strlen(pfx)+1;
  117.  
  118.   DBUG_PRINT("test",("mallocing %d byte",length+8+sizeof(TMP_EXT)+1));
  119.   if (!(pos=(char*) malloc(length+8+sizeof(TMP_EXT)+1)))
  120.   {
  121.     if (MyFlags & MY_FAE+MY_WME)
  122.       my_error(EE_OUTOFMEMORY, MYF(ME_BELL+ME_WAITTANG),
  123.            length+8+sizeof(TMP_EXT)+1);
  124.     DBUG_RETURN(NullS);
  125.   }
  126.   end_pos=strmov(pos,dir);
  127.   if (end_pos != pos && end_pos[-1] != FN_LIBCHAR)
  128.     *end_pos++=FN_LIBCHAR;
  129.   end_pos=strmov(end_pos,pfx);
  130.  
  131.   for (length=0 ; length < 8 && uniq ; length++)
  132.   {
  133.     *end_pos++= _dig_vec[(int) (uniq & 31)];
  134.     uniq >>= 5;
  135.   }
  136.   VOID(strmov(end_pos,TMP_EXT));
  137.   DBUG_PRINT("exit",("tempnam: '%s'",pos));
  138.   DBUG_RETURN(pos);
  139. #endif /* HAVE_TEMPNAM */
  140. #endif /* __ZTC__ */
  141. #endif /* _MSC_VER */
  142. } /* my_tempnam */
  143.