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 328 329 330 331 332 333 334 335 336 337
|
/**
* @namespace biew
* @file bmfile.c
* @brief This file has developed as Buffered stream Manager and presents
* front end interface to bbio library.
* @version -
* @remark this source file is part of Binary vIEW project (BIEW).
* The Binary vIEW (BIEW) is copyright (C) 1995 Nick Kurshev.
* All rights reserved. This software is redistributable under the
* licence given in the file "Licence.en" ("Licence.ru" in russian
* translation) distributed in the BIEW archive.
* @note Requires POSIX compatible development system
*
* @author Nick Kurshev
* @since 1995
* @note Development, fixes and improvements
**/
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include "bmfile.h"
#include "bconsole.h"
#include "tstrings.h"
#include "biewlib/bbio.h"
extern tBool fioUseMMF;
static BGLOBAL file = NULL,sc_file = NULL;
static char FName[FILENAME_MAX+1];
BGLOBAL __FASTCALL__ biewOpenRO(char *fname,unsigned cache_size)
{
BGLOBAL fret;
fret = bioOpen(fname,FO_READONLY | SO_DENYNONE,cache_size,fioUseMMF ? BIO_OPT_USEMMF : BIO_OPT_DB);
if(fret == &bNull)
fret = bioOpen(fname,FO_READONLY | SO_COMPAT,cache_size,fioUseMMF ? BIO_OPT_USEMMF : BIO_OPT_DB);
return fret;
}
BGLOBAL __FASTCALL__ biewOpenRW(char *fname,unsigned cache_size)
{
BGLOBAL fret;
fret = bioOpen(fname,FO_READWRITE | SO_DENYNONE,cache_size,fioUseMMF ? BIO_OPT_USEMMF : BIO_OPT_DB);
if(fret == &bNull)
fret = bioOpen(fname,FO_READWRITE | SO_COMPAT,cache_size,fioUseMMF ? BIO_OPT_USEMMF : BIO_OPT_DB);
return fret;
}
int __FASTCALL__ BMOpen(char * fname)
{
strcpy(FName,fname);
file = biewOpenRO(fname,BBIO_CACHE_SIZE);
if(file == &bNull)
{
errnoMessageBox(OPEN_FAIL,NULL,errno);
return -1;
}
sc_file = bioDupEx(file,BBIO_SMALL_CACHE_SIZE);
if(sc_file == &bNull)
{
errnoMessageBox(DUP_FAIL,NULL,errno);
return -1;
}
bioSetOptimization(file,BIO_OPT_RANDOM);
bioSetOptimization(sc_file,BIO_OPT_RANDOM);
return 0;
}
int __FASTCALL__ BMHandle( void )
{
return bioHandle(file);
}
BGLOBAL __FASTCALL__ BMbioHandle( void )
{
return file;
}
void __FASTCALL__ BMClose( void )
{
if(file != &bNull) bioClose(file);
file = &bNull;
if(sc_file != &bNull) bioClose(sc_file);
sc_file = &bNull;
}
void __FASTCALL__ BMSeek(long pos,int RELATION)
{
bioSeek(file,pos,RELATION);
}
void __FASTCALL__ BMReRead( void )
{
bioReRead(file);
}
tUInt8 __FASTCALL__ BMReadByte( void )
{
return bioReadByte(file);
}
tUInt16 __FASTCALL__ BMReadWord( void )
{
return bioReadWord(file);
}
tUInt32 __FASTCALL__ BMReadDWord( void )
{
return bioReadDWord(file);
}
unsigned long __FASTCALL__ BMGetCurrFilePos( void )
{
return bioTell(file);
}
unsigned long __FASTCALL__ BMGetFLength( void )
{
return bioFLength(file);
}
tBool __FASTCALL__ BMReadBuffer(void * buffer,unsigned len)
{
return bioReadBuffer(file,buffer,len);
}
tUInt8 __FASTCALL__ BMReadByteEx(long pos,int RELATION)
{
bioSeek(file,pos,RELATION);
return bioReadByte(file);
}
tUInt16 __FASTCALL__ BMReadWordEx(long pos,int RELATION)
{
bioSeek(file,pos,RELATION);
return bioReadWord(file);
}
tUInt32 __FASTCALL__ BMReadDWordEx(long pos,int RELATION)
{
bioSeek(file,pos,RELATION);
return bioReadDWord(file);
}
tBool __FASTCALL__ BMReadBufferEx(void * buffer,unsigned len,long pos,int RELATION)
{
bioSeek(file,pos,RELATION);
return bioReadBuffer(file,buffer,len);
}
tBool __FASTCALL__ BMWriteByte(tUInt8 byte)
{
return bioWriteByte(file,byte);
}
tBool __FASTCALL__ BMWriteWord(tUInt16 word)
{
return bioWriteWord(file,word);
}
tBool __FASTCALL__ BMWriteDWord(tUInt32 dword)
{
return bioWriteDWord(file,dword);
}
tBool __FASTCALL__ BMWriteBuff(void * buff,unsigned len)
{
tBool ret;
ret = bioWriteBuffer(file,buff,len);
bioFlush(file);
return ret;
}
tBool __FASTCALL__ BMWriteByteEx(long pos,int RELATION,tUInt8 byte)
{
bioSeek(file,pos,RELATION);
return bioWriteByte(file,byte);
}
tBool __FASTCALL__ BMWriteWordEx(long pos,int RELATION,tUInt16 word)
{
bioSeek(file,pos,RELATION);
return bioWriteWord(file,word);
}
tBool __FASTCALL__ BMWriteDWordEx(long pos,int RELATION,tUInt32 dword)
{
bioSeek(file,pos,RELATION);
return bioWriteDWord(file,dword);
}
tBool __FASTCALL__ BMWriteBuffEx(long pos,int RELATION,void * buff,unsigned len)
{
bioSeek(file,pos,RELATION);
return bioWriteBuffer(file,buff,len);
}
char * __FASTCALL__ BMName( void )
{
return bioFileName(file);
}
tBool __FASTCALL__ BMEOF( void )
{
return bioEOF(file);
}
int __FASTCALL__ bmHandle( void )
{
return bioHandle(sc_file);
}
BGLOBAL __FASTCALL__ bmbioHandle( void )
{
return sc_file;
}
void __FASTCALL__ bmSeek(long pos,int RELATION)
{
bioSeek(sc_file,pos,RELATION);
}
void __FASTCALL__ bmReRead( void )
{
bioReRead(sc_file);
}
tUInt8 __FASTCALL__ bmReadByte( void )
{
return bioReadByte(sc_file);
}
tUInt16 __FASTCALL__ bmReadWord( void )
{
return bioReadWord(sc_file);
}
tUInt32 __FASTCALL__ bmReadDWord( void )
{
return bioReadDWord(sc_file);
}
unsigned long __FASTCALL__ bmGetCurrFilePos( void )
{
return bioTell(sc_file);
}
unsigned long __FASTCALL__ bmGetFLength( void )
{
return bioFLength(sc_file);
}
tBool __FASTCALL__ bmReadBuffer(void * buffer,unsigned len)
{
return bioReadBuffer(sc_file,buffer,len);
}
tUInt8 __FASTCALL__ bmReadByteEx(long pos,int RELATION)
{
bioSeek(sc_file,pos,RELATION);
return bioReadByte(sc_file);
}
tUInt16 __FASTCALL__ bmReadWordEx(long pos,int RELATION)
{
bioSeek(sc_file,pos,RELATION);
return bioReadWord(sc_file);
}
tUInt32 __FASTCALL__ bmReadDWordEx(long pos,int RELATION)
{
bioSeek(sc_file,pos,RELATION);
return bioReadDWord(sc_file);
}
tBool __FASTCALL__ bmReadBufferEx(void * buffer,unsigned len,long pos,int RELATION)
{
bioSeek(sc_file,pos,RELATION);
return bioReadBuffer(sc_file,buffer,len);
}
tBool __FASTCALL__ bmWriteByte(tUInt8 byte)
{
return bioWriteByte(sc_file,byte);
}
tBool __FASTCALL__ bmWriteWord(tUInt16 word)
{
return bioWriteWord(sc_file,word);
}
tBool __FASTCALL__ bmWriteDWord(tUInt32 dword)
{
return bioWriteDWord(sc_file,dword);
}
tBool __FASTCALL__ bmWriteBuff(void * buff,unsigned len)
{
tBool ret;
ret = bioWriteBuffer(sc_file,buff,len);
bioFlush(sc_file);
return ret;
}
tBool __FASTCALL__ bmWriteByteEx(long pos,int RELATION,tUInt8 byte)
{
bioSeek(sc_file,pos,RELATION);
return bioWriteByte(sc_file,byte);
}
tBool __FASTCALL__ bmWriteWordEx(long pos,int RELATION,tUInt16 word)
{
bioSeek(sc_file,pos,RELATION);
return bioWriteWord(sc_file,word);
}
tBool __FASTCALL__ bmWriteDWordEx(long pos,int RELATION,tUInt32 dword)
{
bioSeek(sc_file,pos,RELATION);
return bioWriteDWord(sc_file,dword);
}
tBool __FASTCALL__ bmWriteBuffEx(long pos,int RELATION,void * buff,unsigned len)
{
bioSeek(sc_file,pos,RELATION);
return bioWriteBuffer(sc_file,buff,len);
}
char * __FASTCALL__ bmName( void )
{
return bioFileName(sc_file);
}
tBool __FASTCALL__ bmEOF( void )
{
return bioEOF(sc_file);
}
|