1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-11 00:59:11 +03:00
Commit Graph

13 Commits

Author SHA1 Message Date
c7829fa0d8 started adding support for relative, plus options for autoalignment
so the same parser generator can be uses for cifs and rpc
-
9c6f2d75d8 messing about. -
d8d15b2755 more SMBtrans, SMBnttrans stuff. -
7db13bd538 SMBnttrans. modified io_uint8s to return address of actual data instead
of a copy, on unmarshalling.  removed fstring, made it io_string,
did same thing.  io_string() and io_wstring() should be wrapped in
a STRING typedef which is bit-switched on FLG2:Unicode.
-
96fd33b898 cifs parser. -
5f1e8422d0 more aparser stuff - we now handle everything but the idl headers in srvsvc.idl -
2e0a39204a minor parse updates -
1df80cd1e8 another awk parser update
we can now handle arrays of structures, pointers to structures,
pointers in unions etc
-
15646ebd84 started update to handle arbitrary arrays
note: this code is currently broken.
-
d8c988694c added grow_size to prs structure -
05fa3ea50a add uint16 support, start to parse more of spoolss -
14ded82dc9 vastly improved awk based code generator
now handles recursive function definitions, unions etc
it is sufficient for some basic types like UNISTR2 and BUFFER5
to be defined in the *.struct file and used successfully

this generator uses templates (in *.tpl files) for all code
generation, allowing easy replacement of the backend functions
-
7bc87d20ea this is a awk based code generator. Very primitive at the moment, but
it was sufficient to generate info level 6 of the add printer driver
for spoolss

It has two capabilities:

1) generate the header and C code for parsing a structure, given a
   *.struct file that describes the structure. Evetually I hope to
   make *.struct compatible with MIDL.

2) it provides a harness that can read a binary data file from
   prs_dump() which contains real data from a client and display the
   parse of it from the output of the awk parser. This allows you to
   "play" with the structure definition until it comes out right, it
   takes just a few mimutes of playing with the .struct file to work
   out the right layout.

all this is very primitive right now. I hope next to completely
replace the spoolss parser with a single .struct file that describes
all the structures, and auto-generates working code. That will require
quite a bit more work.
-