123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786 |
- {
- $Id$
- Copyright (c) 1993-98 by Florian Klaempfl
- Routines to read/write ppu files
- 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., 675 Mass Ave, Cambridge, MA 02139, USA.
- ****************************************************************************
- }
- {$ifdef TP}
- {$N+,E+}
- {$endif}
- unit ppu;
- interface
- const
- { buffer sizes }
- maxentrysize = 1024;
- {$ifdef TP}
- ppubufsize = 1024;
- {$else}
- ppubufsize = 16384;
- {$endif}
- {ppu entries}
- mainentryid = 1;
- subentryid = 2;
- {special}
- iberror = 0;
- ibenddefs = 250;
- ibendsyms = 251;
- ibendinterface = 252;
- ibendimplementation = 253;
- ibendbrowser = 254;
- ibend = 255;
- {general}
- ibmodulename = 1;
- ibsourcefiles = 2;
- ibloadunit_int = 3;
- ibloadunit_imp = 4;
- ibinitunit = 5;
- iblinkofiles = 6;
- iblinksharedlibs = 7;
- iblinkstaticlibs = 8;
- ibdbxcount = 9;
- ibsymref = 10;
- ibdefref = 11;
- {syms}
- ibtypesym = 20;
- ibprocsym = 21;
- ibvarsym = 22;
- ibconstsym = 23;
- ibenumsym = 24;
- ibtypedconstsym = 25;
- ibabsolutesym = 26;
- ibpropertysym = 27;
- ibvarsym_C = 28;
- {defenitions}
- iborddef = 40;
- ibpointerdef = 41;
- ibarraydef = 42;
- ibprocdef = 43;
- ibstringdef = 44;
- ibrecorddef = 45;
- ibfiledef = 46;
- ibformaldef = 47;
- ibobjectdef = 48;
- ibenumdef = 49;
- ibsetdef = 50;
- ibprocvardef = 51;
- ibfloatdef = 52;
- ibclassrefdef = 53;
- iblongstringdef = 54;
- ibansistringdef = 55;
- ibwidestringdef = 56;
- { unit flags }
- uf_init = $1;
- uf_has_dbx = $2;
- uf_has_browser = $4;
- uf_big_endian = $8;
- uf_in_library = $10;
- uf_shared_library = $20;
- uf_smartlink = $40;
- uf_finalize = $80;
- type
- tppuerror=(ppuentrytoobig,ppuentryerror);
- tppuheader=packed record
- id : array[1..3] of char; { = 'PPU' }
- ver : array[1..3] of char;
- compiler : word;
- cpu : word;
- target : word;
- flags : longint;
- size : longint; { size of the ppufile without header }
- checksum : longint; { checksum for this ppufile }
- end;
- tppuentry=packed record
- id : byte;
- nr : byte;
- size : longint;
- end;
- pppufile=^tppufile;
- tppufile=object
- f : file;
- mode : byte; {0 - Closed, 1 - Reading, 2 - Writing}
- error : boolean;
- fname : string;
- fsize : longint;
- header : tppuheader;
- size,crc : longint;
- do_crc,
- change_endian : boolean;
- buf : pchar;
- bufstart,
- bufsize,
- bufidx : longint;
- entrybufstart,
- entrystart,
- entryidx : longint;
- entry : tppuentry;
- entrytyp : byte;
- constructor init(fn:string);
- destructor done;
- procedure flush;
- procedure close;
- function CheckPPUId:boolean;
- function GetPPUVersion:longint;
- procedure NewHeader;
- procedure NewEntry;
- {read}
- function open:boolean;
- procedure reloadbuf;
- procedure readdata(var b;len:longint);
- procedure skipdata(len:longint);
- function readentry:byte;
- function EndOfEntry:boolean;
- procedure getdatabuf(var b;len:longint;var result:longint);
- procedure getdata(var b;len:longint);
- function getbyte:byte;
- function getword:word;
- function getlongint:longint;
- function getdouble:double;
- function getstring:string;
- function skipuntilentry(untilb:byte):boolean;
- {write}
- function create:boolean;
- procedure writeheader;
- procedure writebuf;
- procedure writedata(var b;len:longint);
- procedure writeentry(ibnr:byte);
- procedure putdata(var b;len:longint);
- procedure putbyte(b:byte);
- procedure putword(w:word);
- procedure putlongint(l:longint);
- procedure putdouble(d:double);
- procedure putstring(s:string);
- end;
- implementation
- {*****************************************************************************
- Crc 32
- *****************************************************************************}
- var
- Crc32Tbl : array[0..255] of longint;
- procedure MakeCRC32Tbl;
- var
- crc : longint;
- i,n : byte;
- begin
- for i:=0 to 255 do
- begin
- crc:=i;
- for n:=1 to 8 do
- if odd(crc) then
- crc:=(crc shr 1) xor $edb88320
- else
- crc:=crc shr 1;
- Crc32Tbl[i]:=crc;
- end;
- end;
- {CRC 32}
- Function Crc32(Const HStr:String):longint;
- var
- i,InitCrc : longint;
- begin
- if Crc32Tbl[1]=0 then
- MakeCrc32Tbl;
- InitCrc:=$ffffffff;
- for i:=1to Length(Hstr) do
- InitCrc:=Crc32Tbl[byte(InitCrc) xor ord(Hstr[i])] xor (InitCrc shr 8);
- Crc32:=InitCrc;
- end;
- Function UpdateCrc32(InitCrc:longint;var InBuf;InLen:Longint):longint;
- var
- i : word;
- p : pchar;
- begin
- if Crc32Tbl[1]=0 then
- MakeCrc32Tbl;
- p:=@InBuf;
- for i:=1to InLen do
- begin
- InitCrc:=Crc32Tbl[byte(InitCrc) xor byte(p^)] xor (InitCrc shr 8);
- inc(longint(p));
- end;
- UpdateCrc32:=InitCrc;
- end;
- Function UpdCrc32(InitCrc:longint;b:byte):longint;
- begin
- if Crc32Tbl[1]=0 then
- MakeCrc32Tbl;
- UpdCrc32:=Crc32Tbl[byte(InitCrc) xor b] xor (InitCrc shr 8);
- end;
- {*****************************************************************************
- TPPUFile
- *****************************************************************************}
- constructor tppufile.init(fn:string);
- begin
- fname:=fn;
- change_endian:=false;
- Mode:=0;
- NewHeader;
- Error:=false;
- getmem(buf,ppubufsize);
- end;
- destructor tppufile.done;
- begin
- close;
- freemem(buf,ppubufsize);
- end;
- procedure tppufile.flush;
- begin
- if Mode=2 then
- writebuf;
- end;
- procedure tppufile.close;
- var
- i : word;
- begin
- if Mode<>0 then
- begin
- Flush;
- {$I-}
- system.close(f);
- {$I+}
- i:=ioresult;
- Mode:=0;
- end;
- end;
- function tppufile.CheckPPUId:boolean;
- begin
- CheckPPUId:=((Header.Id[1]='P') and (Header.Id[2]='P') and (Header.Id[3]='U'));
- end;
- function tppufile.GetPPUVersion:longint;
- var
- l : longint;
- code : word;
- begin
- Val(header.ver[1]+header.ver[2]+header.ver[3],l,code);
- if code=0 then
- GetPPUVersion:=l
- else
- GetPPUVersion:=0;
- end;
- procedure tppufile.NewHeader;
- begin
- fillchar(header,sizeof(tppuheader),0);
- with header do
- begin
- Id[1]:='P';
- Id[2]:='P';
- Id[3]:='U';
- Ver[1]:='0';
- Ver[2]:='1';
- Ver[3]:='5';
- end;
- end;
- {*****************************************************************************
- TPPUFile Reading
- *****************************************************************************}
- function tppufile.open:boolean;
- var
- ofmode : byte;
- i : word;
- begin
- open:=false;
- assign(f,fname);
- ofmode:=filemode;
- filemode:=$0;
- {$I-}
- reset(f,1);
- {$I+}
- filemode:=ofmode;
- if ioresult<>0 then
- exit;
- {read ppuheader}
- fsize:=filesize(f);
- if fsize<sizeof(tppuheader) then
- exit;
- blockread(f,header,sizeof(tppuheader),i);
- {reset buffer}
- bufstart:=i;
- bufsize:=0;
- bufidx:=0;
- Mode:=1;
- FillChar(entry,sizeof(tppuentry),0);
- entryidx:=0;
- entrystart:=0;
- entrybufstart:=0;
- Error:=false;
- open:=true;
- end;
- procedure tppufile.reloadbuf;
- {$ifdef TP}
- var
- i : word;
- {$endif}
- begin
- inc(bufstart,bufsize);
- {$ifdef TP}
- blockread(f,buf^,ppubufsize,i);
- bufsize:=i;
- {$else}
- blockread(f,buf^,ppubufsize,bufsize);
- {$endif}
- bufidx:=0;
- end;
- procedure tppufile.readdata(var b;len:longint);
- var
- p : pchar;
- left,
- idx : longint;
- begin
- p:=pchar(@b);
- idx:=0;
- while len>0 do
- begin
- left:=bufsize-bufidx;
- if len>left then
- begin
- move(buf[bufidx],p[idx],left);
- dec(len,left);
- inc(idx,left);
- reloadbuf;
- if bufsize=0 then
- exit;
- end
- else
- begin
- move(buf[bufidx],p[idx],len);
- inc(bufidx,len);
- exit;
- end;
- end;
- end;
- procedure tppufile.skipdata(len:longint);
- var
- left : longint;
- begin
- while len>0 do
- begin
- left:=bufsize-bufidx;
- if len>left then
- begin
- dec(len,left);
- reloadbuf;
- if bufsize=0 then
- exit;
- end
- else
- begin
- inc(bufidx,len);
- exit;
- end;
- end;
- end;
- function tppufile.readentry:byte;
- begin
- if entryidx<entry.size then
- skipdata(entry.size-entryidx);
- readdata(entry,sizeof(tppuentry));
- entrystart:=bufstart+bufidx;
- entryidx:=0;
- if not entry.id in [mainentryid,subentryid] then
- begin
- readentry:=iberror;
- error:=true;
- exit;
- end;
- readentry:=entry.nr;
- end;
- function tppufile.endofentry:boolean;
- begin
- endofentry:=(entryidx>=entry.size);
- end;
- procedure tppufile.getdatabuf(var b;len:longint;var result:longint);
- begin
- if entryidx+len>entry.size then
- result:=entry.size-entryidx
- else
- result:=len;
- readdata(b,result);
- inc(entryidx,result);
- end;
- procedure tppufile.getdata(var b;len:longint);
- begin
- if entryidx+len>entry.size then
- begin
- error:=true;
- exit;
- end;
- readdata(b,len);
- inc(entryidx,len);
- end;
- function tppufile.getbyte:byte;
- var
- b : byte;
- begin
- if entryidx+1>entry.size then
- begin
- error:=true;
- exit;
- end;
- readdata(b,1);
- getbyte:=b;
- inc(entryidx);
- end;
- function tppufile.getword:word;
- type
- pword = ^word;
- var
- w : word;
- begin
- if entryidx+2>entry.size then
- begin
- error:=true;
- exit;
- end;
- readdata(w,2);
- getword:=w;
- inc(entryidx,2);
- end;
- function tppufile.getlongint:longint;
- type
- plongint = ^longint;
- var
- l : longint;
- begin
- if entryidx+4>entry.size then
- begin
- error:=true;
- exit;
- end;
- readdata(l,4);
- getlongint:=l;
- inc(entryidx,4);
- end;
- function tppufile.getdouble:double;
- type
- pdouble = ^double;
- var
- d : double;
- begin
- if entryidx+sizeof(double)>entry.size then
- begin
- error:=true;
- exit;
- end;
- readdata(d,sizeof(double));
- getdouble:=d;
- inc(entryidx,sizeof(double));
- end;
- function tppufile.getstring:string;
- var
- s : string;
- begin
- s[0]:=chr(getbyte);
- if entryidx+length(s)>entry.size then
- begin
- error:=true;
- exit;
- end;
- ReadData(s[1],length(s));
- getstring:=s;
- inc(entryidx,length(s));
- end;
- function tppufile.skipuntilentry(untilb:byte):boolean;
- var
- b : byte;
- begin
- repeat
- b:=readentry;
- until (b in [ibend,iberror]) or ((b=untilb) and (entry.id=mainentryid));
- skipuntilentry:=(b=untilb);
- end;
- {*****************************************************************************
- TPPUFile Writing
- *****************************************************************************}
- function tppufile.create:boolean;
- begin
- create:=false;
- assign(f,fname);
- {$I-}
- rewrite(f,1);
- {$I+}
- if ioresult<>0 then
- exit;
- Mode:=2;
- {write header for sure}
- blockwrite(f,header,sizeof(tppuheader));
- bufsize:=ppubufsize;
- bufstart:=sizeof(tppuheader);
- bufidx:=0;
- {reset}
- crc:=$ffffffff;
- Error:=false;
- do_crc:=true;
- size:=0;
- entrytyp:=mainentryid;
- {start}
- NewEntry;
- create:=true;
- end;
- procedure tppufile.writeheader;
- var
- opos : longint;
- begin
- { flush buffer }
- writebuf;
- { update size (w/o header!) in the header }
- header.size:=bufstart-sizeof(tppuheader);
- { write header and restore filepos after it }
- opos:=filepos(f);
- seek(f,0);
- blockwrite(f,header,sizeof(tppuheader));
- seek(f,opos);
- end;
- procedure tppufile.writebuf;
- begin
- blockwrite(f,buf^,bufidx);
- inc(bufstart,bufidx);
- bufidx:=0;
- end;
- procedure tppufile.writedata(var b;len:longint);
- var
- p : pchar;
- left,
- idx : longint;
- begin
- p:=pchar(@b);
- idx:=0;
- while len>0 do
- begin
- left:=bufsize-bufidx;
- if len>left then
- begin
- move(p[idx],buf[bufidx],left);
- dec(len,left);
- inc(idx,left);
- inc(bufidx,left);
- writebuf;
- end
- else
- begin
- move(p[idx],buf[bufidx],len);
- inc(bufidx,len);
- exit;
- end;
- end;
- end;
- procedure tppufile.NewEntry;
- begin
- with entry do
- begin
- id:=entrytyp;
- nr:=ibend;
- size:=0;
- end;
- {Reset Entry State}
- entryidx:=0;
- entrybufstart:=bufstart;
- entrystart:=bufstart+bufidx;
- {Alloc in buffer}
- writedata(entry,sizeof(tppuentry));
- end;
- procedure tppufile.writeentry(ibnr:byte);
- var
- opos : longint;
- begin
- {create entry}
- entry.id:=entrytyp;
- entry.nr:=ibnr;
- entry.size:=entryidx;
- {it's already been sent to disk ?}
- if entrybufstart<>bufstart then
- begin
- {flush to be sure}
- WriteBuf;
- {write entry}
- opos:=filepos(f);
- seek(f,entrystart);
- blockwrite(f,entry,sizeof(tppuentry));
- seek(f,opos);
- entrybufstart:=bufstart;
- end
- else
- move(entry,buf[entrystart-bufstart],sizeof(entry));
- {Add New Entry, which is ibend by default}
- entrystart:=bufstart+bufidx; {next entry position}
- NewEntry;
- end;
- procedure tppufile.putdata(var b;len:longint);
- begin
- if do_crc then
- crc:=UpdateCrc32(crc,b,len);
- writedata(b,len);
- inc(entryidx,len);
- end;
- procedure tppufile.putbyte(b:byte);
- begin
- writedata(b,1);
- inc(entryidx);
- end;
- procedure tppufile.putword(w:word);
- begin
- if change_endian then
- w:=swap(w);
- putdata(w,2);
- end;
- procedure tppufile.putlongint(l:longint);
- begin
- if change_endian then
- l:=swap(l shr 16) or (longint(swap(l and $ffff)) shl 16);
- putdata(l,4);
- end;
- procedure tppufile.putdouble(d:double);
- begin
- putdata(d,sizeof(double));
- end;
- procedure tppufile.putstring(s:string);
- begin
- putdata(s,length(s)+1);
- end;
- end.
- {
- $Log$
- Revision 1.7 1998-06-25 10:51:01 pierre
- * removed a remaining ifndef NEWPPU
- replaced by ifdef OLDPPU
- * added uf_finalize to ppu unit
- Revision 1.6 1998/06/16 08:56:26 peter
- + targetcpu
- * cleaner pmodules for newppu
- Revision 1.5 1998/06/13 00:10:12 peter
- * working browser and newppu
- * some small fixes against crashes which occured in bp7 (but not in
- fpc?!)
- Revision 1.4 1998/06/09 16:01:48 pierre
- + added procedure directive parsing for procvars
- (accepted are popstack cdecl and pascal)
- + added C vars with the following syntax
- var C calias 'true_c_name';(can be followed by external)
- reason is that you must add the Cprefix
- which is target dependent
- Revision 1.3 1998/05/28 14:40:26 peter
- * fixes for newppu, remake3 works now with it
- Revision 1.2 1998/05/27 19:45:08 peter
- * symtable.pas splitted into includefiles
- * symtable adapted for $ifdef NEWPPU
- Revision 1.1 1998/05/12 10:56:07 peter
- + the ppufile object unit
- }
|