mf_loadpath.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program 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
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include "mysys_priv.h"
  14. #include <m_string.h>
  15. /* Returns full load-path for a file. to may be = path */
  16. /* if path is a hard-path return path */
  17. /* if path starts with home-dir return path */
  18. /* if path starts with current dir or parent-dir unpack path */
  19. /* if there is no path, prepend with own_path_prefix if given */
  20. /* else unpack path according to current dir */
  21. my_string my_load_path(my_string to, const char *path,
  22.        const char *own_path_prefix)
  23. {
  24.   char buff[FN_REFLEN];
  25.   int is_cur;
  26.   DBUG_ENTER("my_load_path");
  27.   DBUG_PRINT("enter",("path: %s  prefix: %s",path,
  28.       own_path_prefix ? own_path_prefix : ""));
  29.   if ((path[0] == FN_HOMELIB && path[1] == FN_LIBCHAR) ||
  30.       test_if_hard_path(path))
  31.     VOID(strmov(buff,path));
  32.   else if ((is_cur=(path[0] == FN_CURLIB && path[1] == FN_LIBCHAR)) ||
  33.    (is_prefix((gptr) path,FN_PARENTDIR)) ||
  34.    ! own_path_prefix)
  35.   {
  36.     if (is_cur)
  37.       is_cur=2; /* Remove current dir */
  38.     if (! my_getwd(buff,(uint) (FN_REFLEN-strlen(path)+is_cur),MYF(0)))
  39.       VOID(strcat(buff,path+is_cur));
  40.     else
  41.       VOID(strmov(buff,path)); /* Return org file name */
  42.   }
  43.   else
  44.     VOID(strxmov(buff,own_path_prefix,path,NullS));
  45.   strmov(to,buff);
  46.   DBUG_PRINT("exit",("to: %s",to));
  47.   DBUG_RETURN(to);
  48. } /* my_load_path */