home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / cache_manager.h next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  66 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program 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
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16.  
  17. #ifdef __GNUC__
  18. #pragma interface            /* gcc class implementation */
  19. #endif
  20.  
  21. #ifndef _CACHE_MANAGER_H_
  22. #define _CACHE_MANAGER_H_
  23. #endif
  24.  
  25. /*
  26.   cache_manager.h
  27.   -----------------------------------------------------------------------
  28.   The cache_manager class manages a number of blocks (which are allocatable
  29.   units of memory).
  30.   -----------------------------------------------------------------------
  31. */
  32.  
  33.  
  34.  
  35. class cache_manager {
  36.   void **abs_list;                /* List holding block abstraction ptrs */
  37.  
  38.   typedef struct free_blks {
  39.     struct free_blks *next, **prev;
  40.     uint Size;
  41.   } FREE_BLKS;
  42.   FREE_BLKS *base_ptr;            /* Pointer to newly allocated sys mem  */
  43.  
  44.  
  45.   /* list manipulation methods */
  46.   void *link_into_abs(void *);    /* Return an abstract pointer to blk   */
  47.   bool *unlink_from_abs(void *);  /* Used to dealloc a blk               */
  48.   void *find_in_fblist(uint);     /*   */
  49.  
  50.   /* memory allocation methods */
  51.   void defrag(void);              /* Defragment the cache                */
  52.   bool *init_blk(void *);         /* Return a pointer to new list        */
  53.  
  54.  public:
  55.   cache_manager(uint);            /* Get allocation of size from system  */
  56.   ~cache_manager(void);           /* Destructor; return the cache        */
  57.  
  58.   void *alloc(uint);              /* Alloc size bytes from the cache     */
  59.   bool *dealloc(void *);          /* Deallocate blocks (with *ptr_arg)   */
  60.   void clear(void);               /* Clear the cache                     */
  61. };
  62.  
  63.  
  64.  
  65.  
  66.