mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
127 lines
2.3 KiB
C++
127 lines
2.3 KiB
C++
/** \file File.cpp
|
|
** \date 2005-04-25
|
|
** \author grymse@alhem.net
|
|
**/
|
|
/*
|
|
Copyright (C) 2004,2005 Anders Hedstrom
|
|
|
|
This library is made available under the terms of the GNU GPL.
|
|
|
|
If you would like to use this library in a closed-source application,
|
|
a separate license agreement is available. For information about
|
|
the closed-source license agreement for the C++ sockets library,
|
|
please visit http://www.alhem.net/Sockets/license.html and/or
|
|
email license@alhem.net.
|
|
|
|
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 <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#ifndef _WIN32
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#include "File.h"
|
|
|
|
#ifdef SOCKETS_NAMESPACE
|
|
namespace SOCKETS_NAMESPACE {
|
|
#endif
|
|
|
|
|
|
File::File()
|
|
:m_fil(NULL)
|
|
{
|
|
}
|
|
|
|
|
|
File::~File()
|
|
{
|
|
}
|
|
|
|
|
|
bool File::fopen(const std::string& path, const std::string& mode)
|
|
{
|
|
m_path = path;
|
|
m_mode = mode;
|
|
m_fil = ::fopen(path.c_str(), mode.c_str());
|
|
return m_fil ? true : false;
|
|
}
|
|
|
|
|
|
void File::fclose()
|
|
{
|
|
if (m_fil)
|
|
::fclose(m_fil);
|
|
}
|
|
|
|
|
|
|
|
size_t File::fread(char *ptr, size_t size, size_t nmemb)
|
|
{
|
|
return m_fil ? ::fread(ptr, size, nmemb, m_fil) : 0;
|
|
}
|
|
|
|
|
|
size_t File::fwrite(const char *ptr, size_t size, size_t nmemb)
|
|
{
|
|
return m_fil ? ::fwrite(ptr, size, nmemb, m_fil) : 0;
|
|
}
|
|
|
|
|
|
|
|
char *File::fgets(char *s, int size)
|
|
{
|
|
return m_fil ? ::fgets(s, size, m_fil) : NULL;
|
|
}
|
|
|
|
|
|
void File::fprintf(char *format, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, format);
|
|
vfprintf(m_fil, format, ap);
|
|
va_end(ap);
|
|
}
|
|
|
|
|
|
off_t File::size()
|
|
{
|
|
struct stat st;
|
|
if (stat(m_path.c_str(), &st) == -1)
|
|
{
|
|
return 0;
|
|
}
|
|
return st.st_size;
|
|
}
|
|
|
|
|
|
bool File::eof()
|
|
{
|
|
if (m_fil)
|
|
{
|
|
if (feof(m_fil))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
#ifdef SOCKETS_NAMESPACE
|
|
}
|
|
#endif
|
|
|