1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
/*
* HT Editor
* stream.h
*
* Copyright (C) 1999, 2000, 2001 Stefan Weyergraf (stefan@weyergraf.de)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __STREAM_H__
#define __STREAM_H__
#include "common.h"
#include "global.h"
#include "htsys.h"
#include <stdarg.h>
#include <stdio.h>
#ifndef HAVE_FILEOFS
#define HAVE_FILEOFS
typedef UINT FILEOFS;
#endif
/*
* CLASS ht_stream
*/
/* stream_error_func return values */
#define SERR_FAIL 0
#define SERR_RETRY 1
/* ht_stream.error */
#define STERR_SYSTEM 0x80000000
class ht_stream;
typedef int (*stream_error_func_ptr)(ht_stream *stream);
class ht_stream {
protected:
stream_error_func_ptr stream_error_func;
int error;
UINT access_mode;
int call_error_func();
public:
void init();
virtual void done();
/* new */
virtual void copy_to(ht_stream *stream);
virtual UINT get_access_mode();
virtual int get_error();
virtual char *get_desc();
virtual bool set_access_mode(UINT access_mode);
virtual void set_error(int error);
virtual void set_error_func(stream_error_func_ptr stream_error_func);
virtual UINT read(void *buf, UINT size);
virtual UINT write(void *buf, UINT size);
};
/*
* CLASS ht_layer_stream
*/
class ht_layer_stream: public ht_stream {
protected:
ht_stream *stream;
bool own_stream;
public:
void init(ht_stream *stream, bool own_stream);
virtual void done();
/* overwritten */
virtual void copy_to(ht_stream *stream);
virtual UINT get_access_mode();
virtual int get_error();
virtual char *get_desc();
virtual bool set_access_mode(UINT access_mode);
virtual void set_error(int error);
virtual void set_error_func(stream_error_func_ptr stream_error_func);
void set_stream_ownership(bool own);
virtual UINT read(void *buf, UINT size);
virtual UINT write(void *buf, UINT size);
};
/*
* CLASS ht_object_stream
*/
class ht_object_stream: public ht_layer_stream {
public:
void init(ht_stream *s);
virtual void done();
/* new */
virtual void *get_binary(int size, char *desc) = 0;
virtual void get_binary(void *p, int size, char *desc) = 0;
virtual bool get_bool(char *desc) = 0;
int get_int(int size, char *desc);
virtual int get_int_dec(int size, char *desc) = 0;
virtual int get_int_hex(int size, char *desc) = 0;
virtual object *get_object(char *name) = 0;
virtual void get_object(object *&o, char *name) = 0;
virtual void get_separator() = 0;
virtual char *get_string(char *desc) = 0;
virtual UINT record_start(UINT size);
virtual void record_end(UINT);
virtual void put_binary(void *mem, int size, char *desc) = 0;
virtual void put_bool(bool b, char *desc) = 0;
virtual void put_info(char *info) = 0;
void put_int(int a, int size, char *desc);
virtual void put_int_dec(int a, int size, char *desc) = 0;
virtual void put_int_hex(int a, int size, char *desc) = 0;
virtual void put_object(object *obj, char *name) = 0;
virtual void put_separator() = 0;
virtual void put_string(char *string, char *desc) = 0;
};
#define PUT_BINARY(st, d, size) st->put_binary(d, size, #d)
#define PUT_BOOL(st, d) st->put_bool(d, #d)
#define PUT_INT(st, d) st->put_int(d, 4, #d)
#define PUT_INT_DEC(st, d) st->put_int_dec(d, 4, #d)
#define PUT_INT_HEX(st, d) st->put_int_hex(d, 4, #d)
#define PUT_OBJECT(st, o) st->put_object(o, #o)
#define PUT_STRING(st, d) st->put_string(d, #d)
#define GET_BOOL(st, d) d=st->get_bool(#d)
#define GET_INT(st, d) d=st->get_int(4, #d)
#define GET_INT_DEC(st, d) d=st->get_int_dec(4, #d)
#define GET_INT_HEX(st, d) d=st->get_int_hex(4, #d)
#define GET_OBJECT(st, o) st->get_object((object *)o, #o)
#define GET_STRING(st, d) d=st->get_string(#d)
/*
* CLASS ht_streamfile
*/
/* cntl cmd */
#define FCNTL_MODS_INVD 0x00000001
#define FCNTL_MODS_FLUSH 0x00000002
#define FCNTL_MODS_IS_DIRTY 0x00000003 // +offset +range
#define FCNTL_MODS_CLEAR_DIRTY 0x00000004
#define FCNTL_FLUSH_STAT 0x00000005
#define IS_DIRTY_SINGLEBIT 0x80000000
/* ht_file.access_mode */
#define FAM_UNDEFINED 0
#define FAM_READ 1
#define FAM_WRITE 2
#define FAM_CREATE 4
#define FAM_APPEND 8
class ht_streamfile: public ht_stream {
public:
/* new */
int cntl(UINT cmd, ...);
virtual int extend(UINT newsize);
virtual char *get_filename();
virtual ht_streamfile *get_layered();
virtual UINT get_size();
virtual void pstat(pstat_t *s);
virtual int seek(FILEOFS offset);
virtual void set_layered(ht_streamfile *streamfile);
virtual FILEOFS tell();
virtual int truncate(UINT newsize);
virtual int vcntl(UINT cmd, va_list vargs);
};
/*
* CLASS ht_layer_streamfile
*/
class ht_layer_streamfile: public ht_streamfile {
protected:
ht_streamfile *streamfile;
bool own_streamfile;
public:
void init(ht_streamfile *streamfile, bool own_streamfile);
virtual void done();
/* overwritten */
virtual void copy_to(ht_stream *stream);
virtual int extend(UINT newsize);
virtual UINT get_access_mode();
virtual int get_error();
virtual char *get_desc();
virtual char *get_filename();
virtual ht_streamfile *get_layered();
virtual UINT get_size();
virtual void pstat(pstat_t *s);
virtual UINT read(void *buf, UINT size);
virtual int seek(FILEOFS offset);
virtual bool set_access_mode(UINT access_mode);
virtual void set_error(int error);
virtual void set_error_func(stream_error_func_ptr stream_error_func);
virtual void set_layered(ht_streamfile *streamfile);
void set_streamfile_ownership(bool own);
virtual FILEOFS tell();
virtual int truncate(UINT newsize);
virtual int vcntl(UINT cmd, va_list vargs);
virtual UINT write(void *buf, UINT size);
};
/*
* CLASS ht_file
*/
class ht_file: public ht_streamfile {
protected:
FILE *file;
char *filename;
FILEOFS offset;
bool set_access_mode_internal(dword access_mode);
public:
void init(char *filename, UINT access_mode);
virtual void done();
/* overwritten */
virtual int extend(UINT newsize);
virtual char *get_desc();
virtual char *get_filename();
virtual UINT get_size();
virtual void pstat(pstat_t *s);
virtual int seek(FILEOFS offset);
virtual bool set_access_mode(UINT access_mode);
virtual FILEOFS tell();
virtual int truncate(UINT newsize);
virtual int vcntl(UINT cmd, va_list vargs);
virtual UINT read(void *buf, UINT size);
virtual UINT write(void *buf, UINT size);
};
/*
* CLASS ht_memmap_file
*/
class ht_memmap_file: public ht_streamfile {
protected:
FILEOFS pos;
UINT size;
byte *buf;
public:
void init(byte *buf, UINT size = 0);
virtual void done();
/* overwritten */
virtual char *get_desc();
virtual UINT get_size();
virtual UINT read(void *buf, UINT size);
virtual int seek(FILEOFS offset);
virtual FILEOFS tell();
virtual UINT write(void *buf, UINT size);
};
/*
* CLASS ht_mem_file
*/
class ht_mem_file: public ht_streamfile {
protected:
FILEOFS ofs;
FILEOFS pos;
UINT bufsize, dsize, ibufsize;
byte *buf;
virtual UINT extendbufsize(UINT bufsize);
virtual UINT shrinkbufsize(UINT bufsize);
void extendbuf();
void shrinkbuf();
void resizebuf(UINT newsize);
public:
void init();
void init(FILEOFS ofs, UINT size);
virtual void done();
/* overwritten */
virtual int extend(UINT newsize);
virtual UINT get_access_mode();
virtual char *get_desc();
virtual UINT get_size();
virtual void pstat(pstat_t *s);
virtual UINT read(void *buf, UINT size);
virtual int seek(FILEOFS offset);
virtual FILEOFS tell();
virtual int truncate(UINT newsize);
virtual UINT write(void *buf, UINT size);
/* new */
void *bufptr();
};
/*
* string stream functions
*/
/* 0-terminated ASCII */
char *fgetstrz(ht_streamfile *file);
char *getstrz(ht_stream *stream);
void putstrz(ht_stream *stream, char *str);
/* pascal-style ASCII */
char *getstrp(ht_stream *stream);
void putstrp(ht_stream *stream, char *str);
/* 0-terminated wide/unicode */
char *getstrw(ht_stream *stream);
void putstrw(ht_stream *stream, char *str);
char *ht_strerror(int error);
#endif /* __STREAM_H__ */
|