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 / getvar.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  3KB  |  106 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. /* Allow use of the -O variable= option to set long variables */
  19.  
  20. #include "mysys_priv.h"
  21. #include <m_string.h>
  22. #include <m_ctype.h>
  23.  
  24.     /* set all changeable variables */
  25.  
  26. void set_all_changeable_vars(CHANGEABLE_VAR *vars)
  27. {
  28.   for ( ; vars->name ; vars++)
  29.     *vars->varptr= vars->def_value;
  30. }
  31.  
  32.  
  33. my_bool set_changeable_varval(const char* var, ulong val,
  34.                   CHANGEABLE_VAR *vars)
  35. {
  36.   char buffer[256];
  37.   sprintf( buffer, "%s=%lu", var, (unsigned long) val );
  38.   return set_changeable_var( buffer, vars );
  39. }
  40.  
  41.  
  42. my_bool set_changeable_var(my_string str,CHANGEABLE_VAR *vars)
  43. {
  44.   char endchar;
  45.   my_string end;
  46.   DBUG_ENTER("set_changeable_var");
  47.   DBUG_PRINT("enter",("%s",str));
  48.  
  49.   if (str)
  50.   {
  51.     if (!(end=strchr(str,'=')))
  52.       fprintf(stderr,"Can't find '=' in expression '%s' to option -O\n",str);
  53.     else
  54.     {
  55.       uint length=(uint) (end-str),found_count=0;
  56.       CHANGEABLE_VAR *var,*found;
  57.       const char *name;
  58.       long num;
  59.  
  60.       for (var=vars,found=0 ; (name=var->name) ; var++)
  61.       {
  62.     if (!my_casecmp(name,str,length))
  63.     {
  64.       found=var; found_count++;
  65.       if (!name[length])
  66.       {
  67.         found_count=1;
  68.         break;
  69.       }
  70.     }
  71.       }
  72.       if (found_count == 0)
  73.       {
  74.     fprintf(stderr,"No variable match for: -O '%s'\n",str);
  75.     DBUG_RETURN(1);
  76.       }
  77.       if (found_count > 1)
  78.       {
  79.     fprintf(stderr,"Variable prefix '%*s' is not unique\n",length,str);
  80.     DBUG_RETURN(1);
  81.       }
  82.  
  83.       num=(long) atol(end+1); endchar=strend(end+1)[-1];
  84.       if (endchar == 'k' || endchar == 'K')
  85.     num*=1024;
  86.       else if (endchar == 'm' || endchar == 'M')
  87.     num*=1024L*1024L;
  88.       else if (!isdigit(endchar))
  89.       {
  90.     fprintf(stderr,"Unknown prefix used for variable value '%s'\n",str);
  91.     DBUG_RETURN(1);
  92.       }
  93.       if (num < (long) found->min_value)
  94.     num=(long) found->min_value;
  95.       else if ((unsigned long) num >
  96.            (unsigned long) found->max_value)
  97.     num=(long) found->max_value;
  98.       *found->varptr=(long) ((ulong) (num-found->sub_size) /
  99.                  (ulong) found->block_size);
  100.       (*found->varptr)*= (ulong) found->block_size;
  101.       DBUG_RETURN(0);
  102.     }
  103.   }
  104.   DBUG_RETURN(1);
  105. }
  106.