Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into registry
[ira/wip.git] / source4 / pidl / TODO
1 - true multiple dimension array / strings in arrays support
2
3 - compatibility mode for generating MIDL-readable data:
4  - strip out pidl-specific properties
5
6 - make bitmap an optional attribute on enum
7 - support nested elements
8 - support typedefs properly (e.g. allow "typedef void **bla;")
9 - make typedefs generate real typedefs
10 - improve represent_as(): allow it to be used for arrays and other complex 
11   types
12
13 - --explain-ndr option that dumps out parse tree ?
14
15 - seperate tables for NDR and DCE/RPC
16  - maybe no tables for NDR at all? we only need them for ndrdump 
17    and that can use dlsym()
18
19 - allow data structures outside of interfaces
20
21 - mem_ctx in the interface rather than as struct ndr member.
22
23 - real typelibs
24
25 - fix [in,out] handling and allocation for samba3:
26  - add inout
27  - make NULL to mean "allocate me"
28  - remove NDR_AUTO_REF_ALLOC flag
29
30 - automatic test generator based on IDL pointer types
31
32 - support converting structs to tuples in Python rather than objects
33 - convert structs with a single mattering member to that member directly, e.g.:
34   struct bar {
35     int size;
36         [size_is(size)] uint32 *array;
37   };
38
39   should be converted to an array of uint32's
40
41 - python: fill in size members automatically in some places if the struct isn't being returned
42   (so we don't have to cope with the array growing)