OpenFiles.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef OPENFILES_H
  14. #define OPENFILES_H
  15. #include <Vector.hpp>
  16. class OpenFiles
  17. {
  18. public:
  19.    OpenFiles(){ }
  20.    
  21.   /* Get a pointer to the file with id */
  22.   AsyncFile* find(Uint16 id);
  23.   /* Insert file with id */
  24.   bool insert(AsyncFile* file, Uint16 id);
  25.   /* Erase file with id */
  26.   bool erase(Uint16 id);
  27.   /* Get number of open files */
  28.   unsigned size();
  29.   Uint16 getId(unsigned i);
  30.   AsyncFile* getFile(unsigned i);
  31.   
  32.    
  33. private:
  34.   class OpenFileItem {
  35.   public:
  36.     OpenFileItem():  m_file(NULL), m_id(0){};
  37.     AsyncFile* m_file;      
  38.     Uint16 m_id;
  39.   };
  40.   Vector<OpenFileItem> m_files;
  41. };
  42. //*****************************************************************************
  43. inline AsyncFile* OpenFiles::find(Uint16 id){
  44.   for (unsigned i = 0; i < m_files.size(); i++){
  45.     if (m_files[i].m_id == id){
  46.       return m_files[i].m_file;
  47.     }
  48.   }
  49.   return NULL;
  50. }
  51. //*****************************************************************************
  52. inline bool OpenFiles::erase(Uint16 id){
  53.   for (unsigned i = 0; i < m_files.size(); i++){
  54.     if (m_files[i].m_id == id){
  55.       m_files.erase(i);
  56.       return true;
  57.     }
  58.   }
  59.   // Item was not found in list
  60.   return false;
  61. }
  62. //*****************************************************************************
  63. inline bool OpenFiles::insert(AsyncFile* file, Uint16 id){
  64.   // Check if file has already been opened
  65.   for (unsigned i = 0; i < m_files.size(); i++){
  66.     if(m_files[i].m_file == NULL)
  67.       continue;
  68.     if(strcmp(m_files[i].m_file->theFileName.c_str(), 
  69.       file->theFileName.c_str()) == 0)
  70.     {
  71.       BaseString names;
  72.       names.assfmt("open: >%s< existing: >%s<",
  73.    file->theFileName.c_str(),
  74.    m_files[i].m_file->theFileName.c_str());
  75.       ERROR_SET(fatal, AFS_ERROR_ALLREADY_OPEN, names.c_str(),
  76. "OpenFiles::insert()");    
  77.     }
  78.   }
  79.   
  80.   // Insert the file into vector
  81.   OpenFileItem openFile;
  82.   openFile.m_id = id;
  83.   openFile.m_file = file;
  84.   m_files.push_back(openFile);
  85.   
  86.   return true;
  87. }
  88. //*****************************************************************************
  89. inline Uint16 OpenFiles::getId(unsigned i){
  90.   return m_files[i].m_id; 
  91. }
  92. //*****************************************************************************
  93. inline AsyncFile* OpenFiles::getFile(unsigned i){
  94.   return m_files[i].m_file; 
  95. }
  96. //*****************************************************************************
  97. inline unsigned OpenFiles::size(){
  98.   return m_files.size(); 
  99. }
  100. #endif