my_tempnam.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

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