mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-06 12:55:05 +00:00
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
/**
|
|
* Furnace Tracker - multi-system chiptune tracker
|
|
* Copyright (C) 2021-2022 tildearrow and contributors
|
|
*
|
|
* 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.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#ifndef _SAFEREADER_H
|
|
#define _SAFEREADER_H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include "../ta-utils.h"
|
|
|
|
class SafeReader;
|
|
|
|
struct EndOfFileException {
|
|
SafeReader* reader;
|
|
size_t finalSize;
|
|
EndOfFileException(SafeReader* r, size_t fs):
|
|
reader(r),
|
|
finalSize(fs) {}
|
|
};
|
|
|
|
class SafeReader {
|
|
unsigned char* buf;
|
|
size_t len;
|
|
|
|
size_t curSeek;
|
|
|
|
public:
|
|
bool seek(ssize_t where, int whence);
|
|
size_t tell();
|
|
size_t size();
|
|
|
|
int read(void* where, size_t count);
|
|
|
|
// these functions may throw EndOfFileException.
|
|
signed char readC();
|
|
short readS();
|
|
short readS_BE();
|
|
int readI();
|
|
int readI_BE();
|
|
int64_t readL();
|
|
int64_t readL_BE();
|
|
float readF();
|
|
float readF_BE();
|
|
double readD();
|
|
double readD_BE();
|
|
String readString();
|
|
String readString(size_t len);
|
|
|
|
SafeReader(void* b, size_t l):
|
|
buf((unsigned char*)b),
|
|
len(l),
|
|
curSeek(0) {}
|
|
};
|
|
|
|
#endif
|