2012-02-22 16:25:23 -06:00
|
|
|
/*
|
2012-05-21 23:27:44 -05:00
|
|
|
FileHandler - General-purpose file handling library for Niotso
|
|
|
|
File.cpp - Copyright (c) 2011-2012 Niotso Project <http://niotso.org/>
|
|
|
|
Author(s): Fatbag <X-Fi6@phppoll.org>
|
2012-02-22 16:25:23 -06:00
|
|
|
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2024-05-02 20:32:10 +02:00
|
|
|
#include "FileHandler.h"
|
2012-02-22 16:25:23 -06:00
|
|
|
|
|
|
|
namespace File {
|
|
|
|
|
|
|
|
int Error = 0;
|
2012-06-28 07:00:45 -05:00
|
|
|
size_t FileSize = 0;
|
2012-02-22 16:25:23 -06:00
|
|
|
|
|
|
|
uint8_t * ReadFile(const char * Filename){
|
2012-06-28 07:00:45 -05:00
|
|
|
FILE * hFile = fopen(Filename, "rb");
|
|
|
|
if(hFile == NULL){
|
|
|
|
File::Error = FERR_OPEN;
|
2012-02-22 16:25:23 -06:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-02-27 02:55:53 -06:00
|
|
|
|
2012-06-28 07:00:45 -05:00
|
|
|
FileSize = File::GetFileSize(hFile);
|
2012-02-22 16:25:23 -06:00
|
|
|
if(FileSize == 0){
|
2012-06-28 07:00:45 -05:00
|
|
|
fclose(hFile);
|
2012-02-22 16:25:23 -06:00
|
|
|
File::Error = FERR_BLANK;
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-02-27 02:55:53 -06:00
|
|
|
|
2012-02-22 16:25:23 -06:00
|
|
|
uint8_t * InData = (uint8_t*) malloc(FileSize);
|
|
|
|
if(InData == NULL){
|
2012-06-28 07:00:45 -05:00
|
|
|
fclose(hFile);
|
2012-02-22 16:25:23 -06:00
|
|
|
File::Error = FERR_MEMORY;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-06-28 07:00:45 -05:00
|
|
|
size_t bytestransferred = fread(InData, 1, FileSize, hFile);
|
2012-12-03 12:31:24 -06:00
|
|
|
fclose(hFile);
|
2012-06-28 07:00:45 -05:00
|
|
|
if(bytestransferred != FileSize){
|
2012-02-22 16:25:23 -06:00
|
|
|
free(InData);
|
|
|
|
File::Error = FERR_READ;
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-06-28 07:00:45 -05:00
|
|
|
|
2012-02-22 16:25:23 -06:00
|
|
|
return InData;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|