2019-09-19 22:42:45 +00:00
|
|
|
/*
|
|
|
|
* libsmackerdec - Smacker video decoder
|
|
|
|
* Copyright (C) 2011 Barry Duncan
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SmackerFileStream_h_
|
|
|
|
#define _SmackerFileStream_h_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2019-10-24 18:28:46 +00:00
|
|
|
#include "files.h"
|
2019-09-19 22:42:45 +00:00
|
|
|
|
|
|
|
namespace SmackerCommon {
|
|
|
|
|
|
|
|
class FileStream
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2019-12-24 21:07:36 +00:00
|
|
|
bool Open(const char *fileName);
|
2020-06-28 12:42:06 +00:00
|
|
|
bool Is_Open() { return file.isOpen(); }
|
|
|
|
void Close() { file.Close(); }
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2020-06-28 12:42:06 +00:00
|
|
|
int32_t ReadBytes(uint8_t *data, uint32_t nBytes)
|
|
|
|
{
|
|
|
|
return (uint32_t)file.Read(data, static_cast<int32_t>(nBytes));
|
|
|
|
}
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2020-06-28 12:42:06 +00:00
|
|
|
uint64_t ReadUint64LE() { return file.ReadUInt64(); }
|
|
|
|
uint32_t ReadUint32LE() { return file.ReadUInt32(); }
|
|
|
|
uint16_t ReadUint16LE() { return file.ReadUInt16(); }
|
|
|
|
uint8_t ReadByte() { return file.ReadInt8(); }
|
2019-09-19 22:42:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
enum SeekDirection{
|
2020-06-28 12:42:06 +00:00
|
|
|
kSeekCurrent = SEEK_CUR,
|
|
|
|
kSeekStart = SEEK_SET,
|
|
|
|
kSeekEnd = SEEK_END
|
2019-09-19 22:42:45 +00:00
|
|
|
};
|
|
|
|
|
2020-06-28 12:42:06 +00:00
|
|
|
int32_t Seek(int32_t offset, SeekDirection dir = kSeekStart) { return file.Seek(offset, (FileReader::ESeek) dir); }
|
|
|
|
int32_t Skip(int32_t offset) { return Seek(offset, kSeekCurrent); }
|
|
|
|
int32_t GetPosition() { return file.Tell(); }
|
2019-09-19 22:42:45 +00:00
|
|
|
|
|
|
|
private:
|
2019-10-20 21:37:07 +00:00
|
|
|
FileReader file;
|
2019-09-19 22:42:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // close namespace SmackerCommon
|
|
|
|
|
|
|
|
#endif
|