From: Carl Worth Date: Wed, 21 Oct 2009 04:03:30 +0000 (-0700) Subject: Implement 'notmuch dump'. X-Git-Tag: 0.1~808 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=466a7bbf620e4bf1b57097a6d3c474159c475b6d;hp=466a7bbf620e4bf1b57097a6d3c474159c475b6d Implement 'notmuch dump'. This is a fairly big milestone for notmuch. It's our first command to do anything besides building the index, so it proves we can actually read valid results out from the index. It also puts in place almost all of the API and infrastructure we will need to allow searching of the database. Finally, with this change we are now using talloc inside of notmuch which is truly a delight to use. And now that I figured out how to use C++ objects with talloc allocation, (it requires grotty parts of C++ such as "placement new" and "explicit destructors"), we are valgrind-clean for "notmuch dump", (as in "no leaks are possible"). ---