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

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. /* This file is originally from the mysql distribution. Coded by monty */
  18. #ifdef __GNUC__
  19. #pragma interface /* gcc class implementation */
  20. #endif
  21. #ifndef NOT_FIXED_DEC
  22. #define NOT_FIXED_DEC 31
  23. #endif
  24. class String;
  25. int sortcmp(const String *a,const String *b);
  26. int stringcmp(const String *a,const String *b);
  27. String *copy_if_not_alloced(String *a,String *b,uint32 arg_length);
  28. int wild_case_compare(String &match,String &wild,char escape);
  29. int wild_compare(String &match,String &wild,char escape);
  30. class String
  31. {
  32.   char *Ptr;
  33.   uint32 str_length,Alloced_length;
  34.   bool alloced;
  35. public:
  36.   String()
  37.   { Ptr=0; str_length=Alloced_length=0; alloced=0; }
  38.   String(uint32 length_arg)
  39.   { alloced=0; Alloced_length=0; (void) real_alloc(length_arg); }
  40.   String(const char *str)
  41.   { Ptr=(char*) str; str_length=(uint) strlen(str); Alloced_length=0; alloced=0;}
  42.   String(const char *str,uint32 len)
  43.   { Ptr=(char*) str; str_length=len; Alloced_length=0; alloced=0;}
  44.   String(char *str,uint32 len)
  45.   { Ptr=(char*) str; Alloced_length=str_length=len; alloced=0;}
  46.   String(const String &str)
  47.   { Ptr=str.Ptr ; str_length=str.str_length ;
  48.     Alloced_length=str.Alloced_length; alloced=0; }
  49.   static void *operator new(size_t size) { return (void*) sql_alloc((uint) size); }
  50.   static void operator delete(void *ptr_arg,size_t size) /*lint -e715 */
  51.     { sql_element_free(ptr_arg); }
  52.   ~String() { free(); }
  53.   inline uint32 length() const { return str_length;}
  54.   inline uint32 alloced_length() const { return Alloced_length;}
  55.   inline char& operator [] (uint32 i) const { return Ptr[i]; }
  56.   inline void length(uint32 len) { str_length=len ; }
  57.   inline bool is_empty() { return (str_length == 0); }
  58.   inline const char *ptr() const { return Ptr; }
  59.   inline char *c_ptr()
  60.   {
  61.     if (!Ptr || Ptr[str_length]) /* Should be safe */
  62.       (void) realloc(str_length);
  63.     return Ptr;
  64.   }
  65.   inline char *c_ptr_quick()
  66.   {
  67.     if (Ptr && str_length < Alloced_length)
  68.       Ptr[str_length]=0;
  69.     return Ptr;
  70.   }
  71.   void set(String &str,uint32 offset,uint32 arg_length)
  72.   {
  73.     free();
  74.     Ptr=(char*) str.ptr()+offset; str_length=arg_length; alloced=0;
  75.     if (str.Alloced_length)
  76.       Alloced_length=str.Alloced_length-offset;
  77.     else
  78.       Alloced_length=0;
  79.   }
  80.   inline void set(char *str,uint32 arg_length)
  81.   {
  82.     free();
  83.     Ptr=(char*) str; str_length=Alloced_length=arg_length ; alloced=0;
  84.   }
  85.   inline void set(const char *str,uint32 arg_length)
  86.   {
  87.     free();
  88.     Ptr=(char*) str; str_length=arg_length; Alloced_length=0 ; alloced=0;
  89.   }
  90.   inline void set_quick(char *str,uint32 arg_length)
  91.   {
  92.     if (!alloced)
  93.     {
  94.       Ptr=(char*) str; str_length=Alloced_length=arg_length;
  95.     }
  96.   }
  97.   bool set(longlong num);
  98.   /* bool set(long num); */
  99.   bool set(ulonglong num);
  100.   bool set(double num,uint decimals=2);
  101.   inline void free()
  102.   {
  103.     if (alloced)
  104.     {
  105.       alloced=0;
  106.       Alloced_length=0;
  107.       my_free(Ptr,MYF(0));
  108.       Ptr=0;
  109.       str_length=0; /* Safety */
  110.     }
  111.   }
  112.   inline bool alloc(uint32 arg_length)
  113.   {
  114.     if (arg_length < Alloced_length)
  115.       return 0;
  116.     return real_alloc(arg_length);
  117.   }
  118.   bool real_alloc(uint32 arg_length); // Empties old string
  119.   bool realloc(uint32 arg_length);
  120.   inline void shrink(uint32 arg_length) // Shrink buffer
  121.   {
  122.     if (arg_length < Alloced_length)
  123.     {
  124.       char *new_ptr;
  125.       if (!(new_ptr=(char*) my_realloc(Ptr,arg_length,MYF(0))))
  126.       {
  127. Alloced_length = 0;
  128. real_alloc(arg_length);
  129.       }
  130.       else
  131.       {
  132. Ptr=new_ptr;
  133. Alloced_length=arg_length;
  134.       }
  135.     }
  136.   }
  137.   bool is_alloced() { return alloced; }
  138.   inline String& operator = (const String &s)
  139.   {
  140.     if (&s != this)
  141.     {
  142.       free();
  143.       Ptr=s.Ptr ; str_length=s.str_length ; Alloced_length=s.Alloced_length;
  144.       alloced=0;
  145.     }
  146.     return *this;
  147.   }
  148.   bool copy(); // Alloc string if not alloced
  149.   bool copy(const String &s); // Allocate new string
  150.   bool copy(const char *s,uint32 arg_length); // Allocate new string
  151.   bool append(const String &s);
  152.   bool append(const char *s,uint32 arg_length=0);
  153.   bool append(IO_CACHE* file, uint32 arg_length);
  154.   int strstr(const String &search,uint32 offset=0); // Returns offset to substring or -1
  155.   int strrstr(const String &search,uint32 offset=0); // Returns offset to substring or -1
  156.   bool replace(uint32 offset,uint32 arg_length,const String &to);
  157.   inline bool append(char chr)
  158.   {
  159.     if (str_length < Alloced_length)
  160.     {
  161.       Ptr[str_length++]=chr;
  162.     }
  163.     else
  164.     {
  165.       if (realloc(str_length+1))
  166. return 1;
  167.       Ptr[str_length++]=chr;
  168.     }
  169.     return 0;
  170.   }
  171.   bool fill(uint32 max_length,char fill);
  172.   void strip_sp();
  173.   inline void caseup() { ::caseup(Ptr,str_length); }
  174.   inline void casedn() { ::casedn(Ptr,str_length); }
  175.   friend int sortcmp(const String *a,const String *b);
  176.   friend int stringcmp(const String *a,const String *b);
  177.   friend String *copy_if_not_alloced(String *a,String *b,uint32 arg_length);
  178.   friend int wild_case_compare(String &match,String &wild,char escape);
  179.   friend int wild_compare(String &match,String &wild,char escape);
  180.   uint32 numchars();
  181.   int charpos(int i,uint32 offset=0);
  182. };