mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-24 01:09:51 +00:00
FileStream.cpp - start using retro_file
This commit is contained in:
parent
4b63a30f3b
commit
238377e152
@ -79,7 +79,7 @@ enum stat_mode
|
||||
IS_VALID
|
||||
};
|
||||
|
||||
static bool path_stat(const char *path, enum stat_mode mode)
|
||||
static bool path_stat(const char *path, enum stat_mode mode, int32_t *size)
|
||||
{
|
||||
#if defined(VITA) || defined(PSP)
|
||||
SceIoStat buf;
|
||||
@ -109,6 +109,9 @@ static bool path_stat(const char *path, enum stat_mode mode)
|
||||
return false;
|
||||
#endif
|
||||
|
||||
if (size)
|
||||
*size = buf.st_size;
|
||||
|
||||
switch (mode)
|
||||
{
|
||||
case IS_DIRECTORY:
|
||||
@ -144,17 +147,26 @@ static bool path_stat(const char *path, enum stat_mode mode)
|
||||
*/
|
||||
bool path_is_directory(const char *path)
|
||||
{
|
||||
return path_stat(path, IS_DIRECTORY);
|
||||
return path_stat(path, IS_DIRECTORY, NULL);
|
||||
}
|
||||
|
||||
bool path_is_character_special(const char *path)
|
||||
{
|
||||
return path_stat(path, IS_CHARACTER_SPECIAL);
|
||||
return path_stat(path, IS_CHARACTER_SPECIAL, NULL);
|
||||
}
|
||||
|
||||
bool path_is_valid(const char *path)
|
||||
{
|
||||
return path_stat(path, IS_VALID);
|
||||
return path_stat(path, IS_VALID, NULL);
|
||||
}
|
||||
|
||||
int32_t path_get_size(const char *path)
|
||||
{
|
||||
int32_t filesize;
|
||||
if (path_stat(path, IS_VALID, &filesize))
|
||||
return filesize;
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -46,6 +46,8 @@ bool path_is_character_special(const char *path);
|
||||
|
||||
bool path_is_valid(const char *path);
|
||||
|
||||
int32_t path_get_size(const char *path);
|
||||
|
||||
/**
|
||||
* path_mkdir_norecurse:
|
||||
* @dir : directory
|
||||
|
@ -17,7 +17,7 @@
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include "mednafen.h"
|
||||
#include "Stream.h"
|
||||
#include "FileStream.h"
|
||||
@ -25,29 +25,25 @@
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <io.h>
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#define fseeko fseek
|
||||
#define ftello ftell
|
||||
|
||||
FileStream::FileStream(const char *path, const int mode): OpenedMode(mode)
|
||||
{
|
||||
if(!(fp = fopen(path, (mode == MODE_WRITE) ? "wb" : "rb")))
|
||||
fp = retro_fopen(path, (mode == MODE_WRITE) ? RFILE_MODE_WRITE : RFILE_MODE_READ, -1);
|
||||
|
||||
if (!fp)
|
||||
{
|
||||
ErrnoHolder ene(errno);
|
||||
|
||||
printf("%s\n", path);
|
||||
|
||||
throw(MDFN_Error(ene.Errno(), _("Error opening file %s"), ene.StrError()));
|
||||
throw(MDFN_Error(ene.Errno(), "Error opening file %s", ene.StrError()));
|
||||
}
|
||||
|
||||
original_path = strdup(path);
|
||||
}
|
||||
|
||||
FileStream::~FileStream()
|
||||
{
|
||||
if (original_path)
|
||||
free(original_path);
|
||||
original_path = NULL;
|
||||
}
|
||||
|
||||
uint64_t FileStream::attributes(void)
|
||||
@ -70,39 +66,43 @@ uint64_t FileStream::attributes(void)
|
||||
|
||||
uint64_t FileStream::read(void *data, uint64_t count, bool error_on_eos)
|
||||
{
|
||||
return fread(data, 1, count, fp);
|
||||
if (!fp)
|
||||
return 0;
|
||||
return retro_fread(fp, data, count);
|
||||
}
|
||||
|
||||
void FileStream::write(const void *data, uint64_t count)
|
||||
{
|
||||
fwrite(data, 1, count, fp);
|
||||
if (!fp)
|
||||
return;
|
||||
retro_fwrite(fp, data, count);
|
||||
}
|
||||
|
||||
void FileStream::seek(int64_t offset, int whence)
|
||||
{
|
||||
fseeko(fp, offset, whence);
|
||||
if (!fp)
|
||||
return;
|
||||
retro_fseek(fp, offset, whence);
|
||||
}
|
||||
|
||||
int64_t FileStream::tell(void)
|
||||
{
|
||||
return ftello(fp);
|
||||
if (!fp)
|
||||
return -1;
|
||||
return retro_ftell(fp);
|
||||
}
|
||||
|
||||
int64_t FileStream::size(void)
|
||||
{
|
||||
struct stat buf;
|
||||
if (!original_path)
|
||||
return -1;
|
||||
|
||||
fstat(fileno(fp), &buf);
|
||||
|
||||
return(buf.st_size);
|
||||
return path_get_size(original_path);
|
||||
}
|
||||
|
||||
void FileStream::close(void)
|
||||
{
|
||||
if(!fp)
|
||||
if (!fp)
|
||||
return;
|
||||
|
||||
FILE *tmp = fp;
|
||||
fp = NULL;
|
||||
fclose(tmp);
|
||||
retro_fclose(fp);
|
||||
}
|
||||
|
@ -20,6 +20,9 @@
|
||||
#ifndef __MDFN_FILESTREAM_H
|
||||
#define __MDFN_FILESTREAM_H
|
||||
|
||||
#include <retro_file.h>
|
||||
#include <retro_stat.h>
|
||||
|
||||
#include "Stream.h"
|
||||
#include "FileWrapper.h"
|
||||
|
||||
@ -39,7 +42,8 @@ class FileStream : public Stream
|
||||
virtual void close(void);
|
||||
|
||||
private:
|
||||
FILE *fp;
|
||||
RFILE *fp;
|
||||
char *original_path;
|
||||
const int OpenedMode;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user