summaryrefslogtreecommitdiff
path: root/source3/aparser
AgeCommit message (Collapse)AuthorFilesLines
2000-05-16added the ".trailer" type, to mark where a packet turns into a trailerAndrew Tridgell6-58/+97
this now gives us enough to parse complete function calls, including the return values (This used to be commit ca8f1e92adf3603ad15f73277576cc9178bb4d74)
2000-05-16another awk parser updateAndrew Tridgell19-165/+284
we can now handle arrays of structures, pointers to structures, pointers in unions etc (This used to be commit 1df80cd1e8475b6b2fe7b80b6c9089692ab7691b)
2000-05-15started update to handle arbitrary arraysAndrew Tridgell8-145/+147
note: this code is currently broken. (This used to be commit 15646ebd84ee4e63a251c87800677f3dd2ae6971)
2000-05-15need to allocate the union pointerAndrew Tridgell1-0/+2
(This used to be commit c75919a7b9c616beda298e2ae507433731bff20a)
2000-05-15align at the end of every structure parserAndrew Tridgell1-0/+1
(This used to be commit f6353bf12212aeb30e0daff52904bf2f71ec141d)
2000-05-15use grow_size to determine size of dumpAndrew Tridgell1-1/+1
(This used to be commit 968b381cd348bdd6fdb092d7911c0bc9b992eba1)
2000-05-15added grow_size to prs structureAndrew Tridgell2-1/+4
(This used to be commit d8c988694cbcd037c43480a623c2fbc37f2df7de)
2000-05-14add uint16 support, start to parse more of spoolssAndrew Tridgell3-1/+49
(This used to be commit 05fa3ea50ab384ab8eebad87a538b3301ea65fa3)
2000-05-14moved *.tpl templates into templates/ subdirectoryAndrew Tridgell1-0/+1
(This used to be commit 6aa51dc1a569358935190526960ac80b7b53dd91)
2000-05-14vastly improved awk based code generatorAndrew Tridgell31-168/+612
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 (This used to be commit 14ded82dc92ae6eff7639351f391a33b9cc31c0d)
2000-05-14removed old files ready for new awk parserAndrew Tridgell6-361/+0
(This used to be commit 6790d6c589620f4d0f7aa67a3253c52b0b36c0f7)
2000-05-12renamed the harness program to vluke (for "virtual luke")Andrew Tridgell5-8/+8
added a couple of sample .prs files (This used to be commit 70f68209dae0fb94196a30e7404a9ed5bdc2286c)
2000-05-12preliminary support for unionsAndrew Tridgell7-189/+327
(This used to be commit 57a6cb52e6c646cd8a3d25f10f65a65e12d22a24)
2000-05-12this is a awk based code generator. Very primitive at the moment, butAndrew Tridgell6-0/+790
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. (This used to be commit 7bc87d20ea47ba25851512cc6f9de6076ce1cec8)