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

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. /* Pack a filename for output on screen */
  20. /* Changes long paths to .../ */
  21. /* Removes pathname and extension */
  22. /* If not possibly to pack returns '?' in to and returns 1*/
  23. int pack_filename(my_string to, const char *name, size_s max_length)
  24. /* to may be name */
  25. {
  26.   int i;
  27.   char buff[FN_REFLEN];
  28.   if (strlen(fn_format(to,name,"","",0)) <= max_length)
  29.     return 0;
  30.   if (strlen(fn_format(to,name,"","",8)) <= max_length)
  31.     return 0;
  32.   if (strlen(fn_format(buff,name,".../","",1)) <= max_length)
  33.   {
  34.     VOID(strmov(to,buff));
  35.     return 0;
  36.   }
  37.   for (i= 0 ; i < 3 ; i++)
  38.   {
  39.     if (strlen(fn_format(buff,to,"","", i == 0 ? 2 : i == 1 ? 1 : 3 ))
  40. <= max_length)
  41.     {
  42.       VOID(strmov(to,buff));
  43.       return 0;
  44.     }
  45.   }
  46.   to[0]='?'; to[1]=0; /* Can't pack filename */
  47.   return 1;
  48. } /* pack_filename */