2008-01-31 07:04:26 +01:00
|
|
|
/*
|
2008-05-20 17:18:38 +02:00
|
|
|
* streamfile.h - definitions for buffered file reading with STREAMFILE
|
|
|
|
*/
|
2008-01-31 07:04:26 +01:00
|
|
|
|
2008-05-06 05:35:37 +02:00
|
|
|
#ifndef _STREAMFILE_H
|
|
|
|
#define _STREAMFILE_H
|
|
|
|
|
2008-04-03 15:40:36 +02:00
|
|
|
#ifdef _MSC_VER
|
2008-04-03 15:56:50 +02:00
|
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
2008-04-03 15:40:36 +02:00
|
|
|
#endif
|
|
|
|
|
2008-01-31 07:04:26 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "streamtypes.h"
|
2008-01-31 23:26:11 +01:00
|
|
|
#include "util.h"
|
2008-01-31 07:04:26 +01:00
|
|
|
|
2008-04-03 15:40:36 +02:00
|
|
|
#if defined(__MSVCRT__) || defined(_MSC_VER)
|
2008-05-20 17:18:38 +02:00
|
|
|
#include <io.h>
|
2008-02-06 01:27:51 +01:00
|
|
|
#define fseeko fseek
|
|
|
|
#define ftello ftell
|
2008-05-20 17:18:38 +02:00
|
|
|
#define dup _dup
|
2008-05-20 20:19:02 +02:00
|
|
|
#ifdef fileno
|
|
|
|
#undef fileno
|
|
|
|
#endif
|
2008-05-20 17:18:38 +02:00
|
|
|
#define fileno _fileno
|
|
|
|
#define fdopen _fdopen
|
2008-02-06 01:27:51 +01:00
|
|
|
#endif
|
|
|
|
|
2009-01-27 15:25:16 +01:00
|
|
|
#if defined(XBMC)
|
|
|
|
#define fseeko fseek
|
|
|
|
#endif
|
|
|
|
|
2017-01-15 20:48:00 +01:00
|
|
|
#define STREAMFILE_DEFAULT_BUFFER_SIZE 0x8000
|
2008-01-31 07:04:26 +01:00
|
|
|
|
2016-11-27 19:35:26 +01:00
|
|
|
#ifndef DIR_SEPARATOR
|
|
|
|
#if defined (_WIN32) || defined (WIN32)
|
|
|
|
#define DIR_SEPARATOR '\\'
|
|
|
|
#else
|
|
|
|
#define DIR_SEPARATOR '/'
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2017-08-12 11:14:16 +02:00
|
|
|
/* struct representing a file with callbacks. Code should use STREAMFILEs and not std C functions
|
|
|
|
* to do file operations, as plugins may need to provide their own callbacks. */
|
2008-05-20 17:18:38 +02:00
|
|
|
typedef struct _STREAMFILE {
|
|
|
|
size_t (*read)(struct _STREAMFILE *,uint8_t * dest, off_t offset, size_t length);
|
|
|
|
size_t (*get_size)(struct _STREAMFILE *);
|
|
|
|
off_t (*get_offset)(struct _STREAMFILE *);
|
2017-08-12 11:14:16 +02:00
|
|
|
/* for dual-file support */
|
2008-05-20 17:18:38 +02:00
|
|
|
void (*get_name)(struct _STREAMFILE *,char *name,size_t length);
|
2017-08-12 11:14:16 +02:00
|
|
|
/* for when the "name" is encoded specially, this is the actual user visible name */
|
2008-07-11 10:29:04 +02:00
|
|
|
void (*get_realname)(struct _STREAMFILE *,char *name,size_t length);
|
2008-05-20 17:18:38 +02:00
|
|
|
struct _STREAMFILE * (*open)(struct _STREAMFILE *,const char * const filename,size_t buffersize);
|
|
|
|
void (*close)(struct _STREAMFILE *);
|
2017-08-12 11:14:16 +02:00
|
|
|
|
2008-05-20 20:56:44 +02:00
|
|
|
#ifdef PROFILE_STREAMFILE
|
|
|
|
size_t (*get_bytes_read)(struct _STREAMFILE *);
|
2008-07-03 22:08:02 +02:00
|
|
|
int (*get_error_count)(struct _STREAMFILE *);
|
2008-05-20 20:56:44 +02:00
|
|
|
#endif
|
2017-08-12 11:23:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Substream selection for files with multiple streams. Manually used in metas if supported.
|
|
|
|
* Not ideal here, but it's the simplest way to pass to all init_vgmstream_x functions. */
|
|
|
|
int stream_index; /* 0=default/auto (first), 1=first, N=Nth */
|
|
|
|
|
2008-05-20 17:18:38 +02:00
|
|
|
} STREAMFILE;
|
2008-01-31 07:04:26 +01:00
|
|
|
|
2017-08-13 19:58:01 +02:00
|
|
|
/* create a STREAMFILE from path */
|
|
|
|
STREAMFILE * open_stdio_streamfile(const char * filename);
|
|
|
|
|
|
|
|
/* create a STREAMFILE from pre-opened file path */
|
|
|
|
STREAMFILE * open_stdio_streamfile_by_file(FILE * file, const char * filename);
|
2017-08-12 11:14:16 +02:00
|
|
|
|
|
|
|
|
2008-01-31 07:04:26 +01:00
|
|
|
/* close a file, destroy the STREAMFILE object */
|
2008-05-20 17:18:38 +02:00
|
|
|
static inline void close_streamfile(STREAMFILE * streamfile) {
|
|
|
|
streamfile->close(streamfile);
|
|
|
|
}
|
2008-01-31 23:26:11 +01:00
|
|
|
|
2017-08-12 11:14:16 +02:00
|
|
|
/* read from a file, returns number of bytes read */
|
2008-01-31 23:26:11 +01:00
|
|
|
static inline size_t read_streamfile(uint8_t * dest, off_t offset, size_t length, STREAMFILE * streamfile) {
|
2008-05-20 17:18:38 +02:00
|
|
|
return streamfile->read(streamfile,dest,offset,length);
|
2008-01-31 23:26:11 +01:00
|
|
|
}
|
2008-01-31 07:04:26 +01:00
|
|
|
|
|
|
|
/* return file size */
|
2008-05-20 17:18:38 +02:00
|
|
|
static inline size_t get_streamfile_size(STREAMFILE * streamfile) {
|
|
|
|
return streamfile->get_size(streamfile);
|
|
|
|
}
|
2008-01-31 07:04:26 +01:00
|
|
|
|
2008-05-20 20:56:44 +02:00
|
|
|
#ifdef PROFILE_STREAMFILE
|
|
|
|
/* return how many bytes we read into buffers */
|
|
|
|
static inline size_t get_streamfile_bytes_read(STREAMFILE * streamfile) {
|
2008-07-03 22:08:02 +02:00
|
|
|
if (streamfile->get_bytes_read)
|
|
|
|
return streamfile->get_bytes_read(streamfile);
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return how many times we encountered a read error */
|
|
|
|
static inline int get_streamfile_error_count(STREAMFILE * streamfile) {
|
|
|
|
if (streamfile->get_error_count)
|
|
|
|
return streamfile->get_error_count(streamfile);
|
|
|
|
else
|
|
|
|
return 0;
|
2008-05-20 20:56:44 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-01-31 07:04:26 +01:00
|
|
|
/* Sometimes you just need an int, and we're doing the buffering.
|
2008-05-20 17:18:38 +02:00
|
|
|
* Note, however, that if these fail to read they'll return -1,
|
|
|
|
* so that should not be a valid value or there should be some backup. */
|
2008-01-31 23:26:11 +01:00
|
|
|
static inline int16_t read_16bitLE(off_t offset, STREAMFILE * streamfile) {
|
2008-05-20 17:18:38 +02:00
|
|
|
uint8_t buf[2];
|
2008-01-31 23:26:11 +01:00
|
|
|
|
2008-05-20 17:18:38 +02:00
|
|
|
if (read_streamfile(buf,offset,2,streamfile)!=2) return -1;
|
|
|
|
return get_16bitLE(buf);
|
2008-01-31 23:26:11 +01:00
|
|
|
}
|
|
|
|
static inline int16_t read_16bitBE(off_t offset, STREAMFILE * streamfile) {
|
2008-05-20 17:18:38 +02:00
|
|
|
uint8_t buf[2];
|
2008-01-31 23:26:11 +01:00
|
|
|
|
2008-05-20 17:18:38 +02:00
|
|
|
if (read_streamfile(buf,offset,2,streamfile)!=2) return -1;
|
|
|
|
return get_16bitBE(buf);
|
2008-01-31 23:26:11 +01:00
|
|
|
}
|
|
|
|
static inline int32_t read_32bitLE(off_t offset, STREAMFILE * streamfile) {
|
2008-05-20 17:18:38 +02:00
|
|
|
uint8_t buf[4];
|
2008-01-31 23:26:11 +01:00
|
|
|
|
2008-05-20 17:18:38 +02:00
|
|
|
if (read_streamfile(buf,offset,4,streamfile)!=4) return -1;
|
|
|
|
return get_32bitLE(buf);
|
2008-01-31 23:26:11 +01:00
|
|
|
}
|
|
|
|
static inline int32_t read_32bitBE(off_t offset, STREAMFILE * streamfile) {
|
2008-05-20 17:18:38 +02:00
|
|
|
uint8_t buf[4];
|
2008-01-31 23:26:11 +01:00
|
|
|
|
2008-05-20 17:18:38 +02:00
|
|
|
if (read_streamfile(buf,offset,4,streamfile)!=4) return -1;
|
|
|
|
return get_32bitBE(buf);
|
2008-01-31 23:26:11 +01:00
|
|
|
}
|
2017-08-28 15:11:52 +02:00
|
|
|
static inline int64_t read_64bitLE(off_t offset, STREAMFILE * streamfile) {
|
|
|
|
uint8_t buf[8];
|
|
|
|
|
|
|
|
if (read_streamfile(buf,offset,8,streamfile)!=8) return -1;
|
|
|
|
return get_64bitLE(buf);
|
|
|
|
}
|
|
|
|
static inline int64_t read_64bitBE(off_t offset, STREAMFILE * streamfile) {
|
|
|
|
uint8_t buf[8];
|
|
|
|
|
|
|
|
if (read_streamfile(buf,offset,8,streamfile)!=8) return -1;
|
|
|
|
return get_64bitBE(buf);
|
|
|
|
}
|
2008-01-31 23:26:11 +01:00
|
|
|
|
|
|
|
static inline int8_t read_8bit(off_t offset, STREAMFILE * streamfile) {
|
2008-05-20 17:18:38 +02:00
|
|
|
uint8_t buf[1];
|
|
|
|
|
|
|
|
if (read_streamfile(buf,offset,1,streamfile)!=1) return -1;
|
|
|
|
return buf[0];
|
|
|
|
}
|
2008-01-31 23:26:11 +01:00
|
|
|
|
2017-08-12 11:14:16 +02:00
|
|
|
/* various STREAMFILE helpers functions */
|
2008-01-31 07:04:26 +01:00
|
|
|
|
2017-11-23 22:53:43 +01:00
|
|
|
size_t get_streamfile_text_line(int dst_length, char * dst, off_t offset, STREAMFILE * streamfile, int *line_done_ptr);
|
2008-07-21 01:28:16 +02:00
|
|
|
|
2017-01-14 01:37:53 +01:00
|
|
|
STREAMFILE * open_stream_ext(STREAMFILE *streamFile, const char * ext);
|
2017-11-05 17:05:39 +01:00
|
|
|
STREAMFILE * open_stream_name(STREAMFILE *streamFile, const char * ext);
|
2017-01-14 01:37:53 +01:00
|
|
|
|
2017-08-12 11:14:16 +02:00
|
|
|
int read_string(char * buf, size_t bufsize, off_t offset, STREAMFILE *streamFile);
|
2016-11-27 19:35:26 +01:00
|
|
|
|
2017-08-12 11:14:16 +02:00
|
|
|
int read_key_file(uint8_t * buf, size_t bufsize, STREAMFILE *streamFile);
|
2016-12-11 13:05:54 +01:00
|
|
|
int read_pos_file(uint8_t * buf, size_t bufsize, STREAMFILE *streamFile);
|
2016-11-27 19:35:26 +01:00
|
|
|
|
2017-01-14 00:59:54 +01:00
|
|
|
int check_extensions(STREAMFILE *streamFile, const char * cmp_exts);
|
|
|
|
|
2017-01-14 01:37:53 +01:00
|
|
|
int find_chunk_be(STREAMFILE *streamFile, uint32_t chunk_id, off_t start_offset, int full_chunk_size, off_t *out_chunk_offset, size_t *out_chunk_size);
|
|
|
|
int find_chunk_le(STREAMFILE *streamFile, uint32_t chunk_id, off_t start_offset, int full_chunk_size, off_t *out_chunk_offset, size_t *out_chunk_size);
|
2017-04-02 12:23:42 +02:00
|
|
|
int find_chunk(STREAMFILE *streamFile, uint32_t chunk_id, off_t start_offset, int full_chunk_size, off_t *out_chunk_offset, size_t *out_chunk_size, int size_big_endian, int zero_size_end);
|
2017-07-15 11:28:42 +02:00
|
|
|
|
|
|
|
int get_streamfile_name(STREAMFILE *streamFile, char * buffer, size_t size);
|
|
|
|
int get_streamfile_path(STREAMFILE *streamFile, char * buffer, size_t size);
|
|
|
|
int get_streamfile_ext(STREAMFILE *streamFile, char * filename, size_t size);
|
2008-01-31 07:04:26 +01:00
|
|
|
#endif
|