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