2011-06-22 13:58:01 +02:00
|
|
|
#include <stdio.h>
|
2014-12-27 19:12:49 +01:00
|
|
|
#include <stdlib.h>
|
2011-06-22 13:58:01 +02:00
|
|
|
#include <xapian.h>
|
|
|
|
#include <notmuch.h>
|
|
|
|
|
|
|
|
|
2015-06-08 08:02:22 +02:00
|
|
|
int main(int argc, char** argv) {
|
2012-04-30 18:25:33 +02:00
|
|
|
notmuch_database_t *notmuch;
|
2014-12-27 19:12:49 +01:00
|
|
|
char *message = NULL;
|
|
|
|
|
2015-06-08 08:02:22 +02:00
|
|
|
if (notmuch_database_open_verbose (argv[1], NOTMUCH_DATABASE_MODE_READ_ONLY, ¬much, &message))
|
2014-12-27 19:12:49 +01:00
|
|
|
if (message) {
|
|
|
|
fputs (message, stderr);
|
|
|
|
free (message);
|
|
|
|
}
|
2011-11-25 16:34:48 +01:00
|
|
|
|
|
|
|
try {
|
2015-06-08 08:02:22 +02:00
|
|
|
(void) new Xapian::WritableDatabase(argv[2], Xapian::DB_OPEN);
|
2011-06-22 13:58:01 +02:00
|
|
|
} catch (const Xapian::Error &error) {
|
2011-11-25 16:34:48 +01:00
|
|
|
printf("caught %s\n", error.get_msg().c_str());
|
2011-06-22 13:58:01 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2011-11-25 16:34:48 +01:00
|
|
|
|
2011-06-22 13:58:01 +02:00
|
|
|
return 1;
|
|
|
|
}
|