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

MySQL数据库

开发平台:

Visual C++

  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. #include "mysys_priv.h"
  18. #include <m_string.h>
  19. /* Functions definied in this file */
  20. uint dirname_length(const char *name)
  21. {
  22.   register my_string pos,gpos;
  23. #ifdef FN_DEVCHAR
  24.   if ((pos=strrchr(name,FN_DEVCHAR)) == 0)
  25. #endif
  26.     pos=(char*) name-1;
  27.   gpos= pos++;
  28.   for ( ; *pos ; pos++) /* Find last FN_LIBCHAR */
  29.     if (*pos == FN_LIBCHAR || *pos == '/'
  30. #ifdef FN_C_AFTER_DIR
  31. || *pos == FN_C_AFTER_DIR || *pos == FN_C_AFTER_DIR_2
  32. #endif
  33. )
  34.       gpos=pos;
  35.   return ((uint) (uint) (gpos+1-(char*) name));
  36. }
  37. /* Gives directory part of filename. Directory ends with '/' */
  38. /* Returns length of directory part */
  39. uint dirname_part(my_string to, const char *name)
  40. {
  41.   uint length;
  42.   DBUG_ENTER("dirname_part");
  43.   DBUG_PRINT("enter",("'%s'",name));
  44.   length=dirname_length(name);
  45.   (void) strmake(to,(char*) name,min(length,FN_REFLEN-2));
  46.   convert_dirname(to); /* Convert chars */
  47.   DBUG_RETURN(length);
  48. } /* dirname */
  49. /* convert dirname to use under this system */
  50. /* If MSDOS converts '/' to '' */
  51. /* If VMS converts '<' to '[' and '>' to ']' */
  52. /* Adds a '/' to end if there isn't one and the last isn't a dev_char */
  53. /* ARGSUSED */
  54. #ifndef FN_DEVCHAR
  55. #define FN_DEVCHAR '' /* For easier code */
  56. #endif
  57. char *convert_dirname(my_string to)
  58. {
  59.   reg1 char *pos;
  60. #ifdef FN_UPPER_CASE
  61.   caseup_str(to);
  62. #endif
  63. #ifdef FN_LOWER_CASE
  64.   casedn_str(to);
  65. #endif
  66. #if FN_LIBCHAR != '/'
  67.   {
  68.     pos=to-1; /* Change from '/' */
  69.     while ((pos=strchr(pos+1,'/')) != 0)
  70.       *pos=FN_LIBCHAR;
  71.   }
  72. #endif
  73. #ifdef FN_C_BEFORE_DIR_2
  74.   {
  75.     for (pos=to ; *pos ; pos++)
  76.     {
  77.       if (*pos == FN_C_BEFORE_DIR_2)
  78. *pos=FN_C_BEFORE_DIR;
  79.       if (*pos == FN_C_AFTER_DIR_2)
  80. *pos=FN_C_AFTER_DIR;
  81.     }
  82.   }
  83. #else
  84.   { /* Append FN_LIBCHAR if not there */
  85.     pos=strend(to);
  86.     if (pos != to && (pos[-1] != FN_LIBCHAR && pos[-1] != FN_DEVCHAR))
  87.     {
  88.       *pos++=FN_LIBCHAR;
  89.       *pos=0;
  90.     }
  91.   }
  92. #endif
  93.   return pos; /* Pointer to end of dir */
  94. } /* convert_dirname */