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 / mf_loadpath.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  55 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.  
  21.     /* Returns full load-path for a file. to may be = path */
  22.     /* if path is a hard-path return path */
  23.     /* if path starts with home-dir return path */
  24.     /* if path starts with current dir or parent-dir unpack path */
  25.     /* if there is no path, prepend with own_path_prefix if given */
  26.     /* else unpack path according to current dir */
  27.  
  28. my_string my_load_path(my_string to, const char *path,
  29.                const char *own_path_prefix)
  30. {
  31.   char buff[FN_REFLEN];
  32.   DBUG_ENTER("my_load_path");
  33.   DBUG_PRINT("enter",("path: %s  prefix: %s",path,
  34.               own_path_prefix ? own_path_prefix : ""));
  35.  
  36.   if ((path[0] == FN_HOMELIB && path[1] == FN_LIBCHAR) ||
  37.       test_if_hard_path(path))
  38.     VOID(strmov(buff,path));
  39.   else if ((path[0] == FN_CURLIB && path[1] == FN_LIBCHAR) ||
  40.        (is_prefix((gptr) path,FN_PARENTDIR) &&
  41.         path[strlen(FN_PARENTDIR)] == FN_LIBCHAR) ||
  42.        ! own_path_prefix)
  43.   {
  44.     if (! my_getwd(buff,(uint) (FN_REFLEN-strlen(path)),MYF(0)))
  45.       VOID(strcat(buff,path));
  46.     else
  47.       VOID(strmov(buff,path));
  48.   }
  49.   else
  50.     VOID(strxmov(buff,own_path_prefix,path,NullS));
  51.   strmov(to,buff);
  52.   DBUG_PRINT("exit",("to: %s",to));
  53.   DBUG_RETURN(to);
  54. } /* my_load_path */
  55.