home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / include / raid.h < prev    next >
C/C++ Source or Header  |  2000-08-31  |  6KB  |  156 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. /* Parser needs these defines  always, even if USE_RAID is not defined */
  19. #define RAID_TYPE_0 1       // Striping
  20. #define RAID_TYPE_x 2       // Some new modes
  21. #define RAID_TYPE_y 3       // 
  22.  
  23. #define RAID_DEFAULT_CHUNKS 4
  24. #define RAID_DEFAULT_CHUNKSIZE 256*1024 /* 256kB */
  25.  
  26. extern const char *raid_type_string[];
  27.  
  28. #if defined(USE_RAID)
  29.  
  30. #ifdef __GNUC__
  31. #pragma interface            /* gcc class implementation */
  32. #endif
  33. #include "my_dir.h"
  34.  
  35. /* Trap all occurences of my_...() in source and use our wrapper around this function */
  36.  
  37. #ifdef MAP_TO_USE_RAID
  38. #define my_read(A,B,C,D)     my_raid_read(A,B,C,D)
  39. #define my_write(A,B,C,D)    my_raid_write(A,B,C,D)
  40. #define my_pwrite(A,B,C,D,E) my_raid_pwrite(A,B,C,D,E)
  41. #define my_pread(A,B,C,D,E)  my_raid_pread(A,B,C,D,E)
  42. #define my_chsize(A,B,C)     my_raid_chsize(A,B,C)
  43. #define my_close(A,B)        my_raid_close(A,B)
  44. #define my_tell(A,B)         my_raid_tell(A,B)
  45. #define my_seek(A,B,C,D)     my_raid_seek(A,B,C,D)
  46. #define my_lock(A,B,C,D,E)     my_raid_lock(A,B,C,D,E)
  47. #define my_fstat(A,B,C)     my_raid_fstat(A,B,C)
  48. #endif /* MAP_TO_USE_RAID */
  49.  
  50. #ifdef __cplusplus
  51. extern "C" {
  52. #endif
  53.  
  54.   void init_raid(void);
  55.   void end_raid(void);
  56.  
  57.   bool is_raid(File fd);
  58.   File my_raid_create(const char *FileName, int CreateFlags, int access_flags,
  59.               uint raid_type, uint raid_chunks, ulong raid_chunksize,
  60.               myf MyFlags);
  61.   File my_raid_open(const char *FileName, int Flags,
  62.             uint raid_type, uint raid_chunks, ulong raid_chunksize,
  63.             myf MyFlags);
  64.   int my_raid_rename(const char *from, const char *to, uint raid_chunks,
  65.              myf MyFlags);
  66.   int my_raid_delete(const char *from, uint raid_chunks, myf MyFlags);
  67.   int my_raid_redel(const char *old_name, const char *new_name,
  68.             uint raid_chunks, myf MyFlags);
  69.  
  70.   my_off_t my_raid_seek(File fd, my_off_t pos, int whence, myf MyFlags);
  71.   my_off_t my_raid_tell(File fd, myf MyFlags);
  72.  
  73.   uint my_raid_write(File,const byte *Buffer, uint Count, myf MyFlags);
  74.   uint my_raid_read(File Filedes, byte *Buffer, uint Count, myf MyFlags);
  75.  
  76.   uint my_raid_pread(File Filedes, byte *Buffer, uint Count, my_off_t offset,
  77.              myf MyFlags);
  78.   uint my_raid_pwrite(int Filedes, const byte *Buffer, uint Count,
  79.               my_off_t offset, myf MyFlags);
  80.  
  81.   int my_raid_lock(File,int locktype, my_off_t start, my_off_t length,
  82.            myf MyFlags);
  83.   int my_raid_chsize(File fd, my_off_t newlength, myf MyFlags);
  84.   int my_raid_close(File, myf MyFlags);
  85.   int my_raid_fstat(int Filedes, struct stat *buf,  myf MyFlags);
  86.  
  87.   const char *my_raid_type(int raid_type);
  88.  
  89. #ifdef __cplusplus
  90. }
  91.  
  92. class RaidName {
  93.   public:
  94.     RaidName(const char *FileName);
  95.     ~RaidName();
  96.     bool IsRaid();
  97.     int Rename(const char * from, const char * to, myf MyFlags);
  98.   private:
  99.     uint _raid_type;       // RAID_TYPE_0 or RAID_TYPE_1 or RAID_TYPE_5
  100.     uint _raid_chunks;     // 1..n
  101.     ulong _raid_chunksize; // 1..n in bytes
  102. };
  103.  
  104. class RaidFd {
  105.   public:
  106.     RaidFd(uint raid_type, uint raid_chunks , ulong raid_chunksize);
  107.     ~RaidFd();
  108.     File Create(const char *FileName, int CreateFlags, int access_flags,
  109.         myf MyFlags);
  110.     File Open(const char *FileName, int Flags, myf MyFlags);
  111.     my_off_t Seek(my_off_t pos,int whence,myf MyFlags);
  112.     my_off_t Tell(myf MyFlags);
  113.     int Write(const byte *Buffer, uint Count, myf MyFlags);
  114.     int Read(const byte *Buffer, uint Count, myf MyFlags);
  115.     int Lock(int locktype, my_off_t start, my_off_t length, myf MyFlags);
  116.     int Chsize(File fd, my_off_t newlength, myf MyFlags);
  117.     int Fstat(int fd, MY_STAT *stat_area, myf MyFlags );
  118.     int Close(myf MyFlags);
  119.     static bool IsRaid(File fd);
  120.     static DYNAMIC_ARRAY _raid_map;        /* Map of RaidFD* */
  121.   private:
  122.  
  123.     uint _raid_type;       // RAID_TYPE_0 or RAID_TYPE_1 or RAID_TYPE_5
  124.     uint _raid_chunks;     // 1..n
  125.     ulong _raid_chunksize; // 1..n in bytes
  126.  
  127.     ulong _total_block;    // We are operating with block no x (can be 0..many).
  128.     uint _this_block;      // can be 0.._raid_chunks
  129.     uint _remaining_bytes; // Maximum bytes that can be written in this block
  130.  
  131.     my_off_t _position;
  132.     my_off_t _size;        // Cached file size for faster seek(SEEK_END)
  133.     File _fd;
  134.     File *_fd_vector;        /* Array of File */
  135.     off_t *_seek_vector;    /* Array of cached seek positions */
  136.  
  137.     inline void Calculate()
  138.     {
  139.       DBUG_ENTER("RaidFd::_Calculate");
  140.       DBUG_PRINT("info",("_position: %lu _raid_chunksize: %d, _size: %lu",
  141.              (ulong) _position, _raid_chunksize, (ulong) _size));
  142.  
  143.       _total_block = (ulong) (_position / _raid_chunksize);
  144.       _this_block = _total_block % _raid_chunks;    // can be 0.._raid_chunks
  145.       _remaining_bytes = (uint) (_raid_chunksize -
  146.                  (_position - _total_block * _raid_chunksize));
  147.       DBUG_PRINT("info",
  148.          ("_total_block: %d  this_block: %d  _remaining_bytes:%d",
  149.           _total_block, _this_block, _remaining_bytes));
  150.       DBUG_VOID_RETURN;
  151.     }
  152. };
  153.  
  154. #endif /* __cplusplus */
  155. #endif /* USE_RAID */
  156.