📄 file.cpp
字号:
/* Copyright (C) 2003 MySQL AB This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#include <ndb_global.h>#include <File.hpp>#include <NdbOut.hpp>#include <my_dir.h>//// PUBLIC//bool File_class::exists(const char* aFileName){ MY_STAT stmp; return (my_stat(aFileName, &stmp, MYF(0))!=NULL);}longFile_class::size(FILE* f){ long cur_pos = 0, length = 0; cur_pos = ::ftell(f); ::fseek(f, 0, SEEK_END); length = ::ftell(f); ::fseek(f, cur_pos, SEEK_SET); // restore original position return length;}bool File_class::rename(const char* currFileName, const char* newFileName){ return ::rename(currFileName, newFileName) == 0 ? true : false;}bool File_class::remove(const char* aFileName){ return ::remove(aFileName) == 0 ? true : false;}File_class::File_class() : m_file(NULL), m_fileMode("r"){}File_class::File_class(const char* aFileName, const char* mode) : m_file(NULL), m_fileMode(mode){ BaseString::snprintf(m_fileName, PATH_MAX, aFileName);}boolFile_class::open(){ return open(m_fileName, m_fileMode);}bool File_class::open(const char* aFileName, const char* mode) { if(m_fileName != aFileName){ /** * Only copy if it's not the same string */ BaseString::snprintf(m_fileName, PATH_MAX, aFileName); } m_fileMode = mode; bool rc = true; if ((m_file = ::fopen(m_fileName, m_fileMode))== NULL) { rc = false; } return rc;}File_class::~File_class(){ close(); }bool File_class::remove(){ // Close the file first! close(); return File_class::remove(m_fileName);}bool File_class::close(){ bool rc = true; if (m_file != NULL) { ::fflush(m_file); rc = (::fclose(m_file) == 0 ? true : false); m_file = NULL; // Try again? } return rc;}int File_class::read(void* buf, size_t itemSize, size_t nitems) const{ return ::fread(buf, itemSize, nitems, m_file);}int File_class::readChar(char* buf, long start, long length) const{ return ::fread((void*)&buf[start], 1, length, m_file);}int File_class::readChar(char* buf){ return readChar(buf, 0, strlen(buf));}int File_class::write(const void* buf, size_t size, size_t nitems){ return ::fwrite(buf, size, nitems, m_file);} intFile_class::writeChar(const char* buf, long start, long length){ return ::fwrite((const void*)&buf[start], sizeof(char), length, m_file);}int File_class::writeChar(const char* buf){ return writeChar(buf, 0, ::strlen(buf));} long File_class::size() const{ return File_class::size(m_file);}const char* File_class::getName() const{ return m_fileName;}intFile_class::flush() const{#if defined NDB_OSE || defined NDB_SOFTOSE ::fflush(m_file); return ::fsync(::fileno(m_file));#else return 0;#endif}//// PRIVATE//
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -