On Thu, Dec 07, 2017 at 04:14:24PM -0800, Jonathan Tan wrote: > Improve the names of the identifiers in decorate.h, document them, and > add an example of how to use these functions. > > The example is compiled and run as part of the test suite. > > Signed-off-by: Jonathan Tan <jonathantanmy@xxxxxxxxxx> > --- > This patch contains some example code in a test helper. > > There is a discussion at [1] about where example code for hashmap should > go. For something relatively simple, like decorate, perhaps example code > isn't necessary; but if we include example code anyway, I think that we > might as well make it compiled and tested, so this patch contains that > example code in a test helper. I have mixed feelings. On the one hand, compiling and running the code ensures that those things actually work. On the other hand, I expect you can make a much clearer example if instead of having running code, you show snippets of almost-code. E.g.: struct decoration d = { NULL }; add_decoration(&d, obj, "foo"); ... str = lookup_decoration(obj); pretty much gives the relevant overview, with very little boilerplate. Yes, it omits things like the return value of add_decoration(), but those sorts of details are probably better left to the function docstrings. Other than that philosophical point, the documentation you added looks pretty good to me. Two possible improvements to the API we could do on top: 1. Should there be a DECORATION_INIT macro (possibly taking the "name" as an argument)? (Actually, the whole name thing seems like a confusing and bad API design in the first place). 2. This is really just an oidmap to a void pointer. I wonder if we ought to be wrapping that code (I think we still want some interface so that the caller doesn't have to declare their own structs). -Peff