summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-12-26 14:06:57 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2011-12-26 20:34:13 +0200
commite072a2734eaf1bffdacfc20fcb598d79a50d11e7 (patch)
tree62b91a5c1e240aee855bc87431ad75b73ca32367 /testsuite
parentd16a3de50d8c43f7b45f18db1704fa784ee4cb7b (diff)
downloadmailutils-e072a2734eaf1bffdacfc20fcb598d79a50d11e7.tar.gz
mailutils-e072a2734eaf1bffdacfc20fcb598d79a50d11e7.tar.bz2
Add functions for operations on message sets.
* configure.ac: Build libmailutils/msgset/Makefile * include/mailutils/msgset.h: New file. * include/mailutils/Makefile.am (pkginclude_HEADERS): Add msgset.h * include/mailutils/mailutils.h: Include mailutils/msgset.h * include/mailutils/sys/msgset.h: New file. * include/mailutils/sys/Makefile.am (sysinclude_HEADERS): Add msgset.h * include/mailutils/types.hin (mu_msgset_t): New type. * libmailutils/Makefile.am (SUBDIRS): Add msgset. (libmailutils_la_LIBADD): Add libmsgset.la * libmailutils/msgset/Makefile.am: New file. * libmailutils/msgset/add.c: New file. * libmailutils/msgset/aggr.c: New file. * libmailutils/msgset/clear.c: New file. * libmailutils/msgset/create.c: New file. * libmailutils/msgset/free.c: New file. * libmailutils/msgset/getitr.c: New file. * libmailutils/msgset/getlist.c: New file. * libmailutils/msgset/locate.c: New file. * libmailutils/msgset/parse.c: New file. * libmailutils/msgset/print.c: New file. * libmailutils/msgset/sub.c: New file. * libmailutils/tests/msgset.at: New file. * libmailutils/tests/msgset.c: New file. * libmailutils/tests/Makefile.am (noinst_PROGRAMS): Add msgset. (TESTSUITE_AT): Add msgset.at. * libmailutils/tests/testsuite.at: Include msgset.at. * testsuite/msgset.c: New file. * testsuite/Makefile.am (noinst_PROGRAMS): Add msgset.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/Makefile.am1
-rw-r--r--testsuite/msgset.c135
2 files changed, 136 insertions, 0 deletions
diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am
index 2a9f4ea89..f115a8655 100644
--- a/testsuite/Makefile.am
+++ b/testsuite/Makefile.am
@@ -54,6 +54,7 @@ noinst_PROGRAMS = \
fldel\
lstuid\
mbdel\
+ msgset\
mimetest\
smtpsend\
ufms
diff --git a/testsuite/msgset.c b/testsuite/msgset.c
new file mode 100644
index 000000000..ae2a09961
--- /dev/null
+++ b/testsuite/msgset.c
@@ -0,0 +1,135 @@
+/* GNU Mailutils -- a suite of utilities for electronic mail
+ Copyright (C) 2011 Free Software Foundation, Inc.
+
+ GNU Mailutils is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3, or (at your option)
+ any later version.
+
+ GNU Mailutils is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. */
+
+#include <config.h>
+#include <stdlib.h>
+#include <mailutils/mailutils.h>
+
+static void
+parse_msgset (char *arg, struct mu_msgrange *range)
+{
+ size_t msgnum;
+ char *p;
+
+ errno = 0;
+ msgnum = strtoul (arg, &p, 10);
+ range->msg_beg = msgnum;
+ if (*p == ':')
+ {
+ if (*++p == '*')
+ msgnum = 0;
+ else
+ {
+ msgnum = strtoul (p, &p, 10);
+ if (*p)
+ {
+ mu_error ("error in message range near %s", p);
+ exit (1);
+ }
+ }
+ }
+ else if (*p == '*')
+ msgnum = 0;
+ else if (*p)
+ {
+ mu_error ("error in message range near %s", p);
+ exit (1);
+ }
+
+ range->msg_end = msgnum;
+}
+
+int
+main (int argc, char **argv)
+{
+ int i;
+ char *msgset_string = NULL;
+ mu_msgset_t msgset;
+ int rc;
+ int flags = 0;
+ mu_mailbox_t mbox = NULL;
+
+ mu_set_program_name (argv[0]);
+ mu_registrar_record (mu_mbox_record);
+ for (i = 1; i < argc; i++)
+ {
+ char *arg = argv[i];
+
+ if (strcmp (arg, "-h") == 0 || strcmp (arg, "-help") == 0)
+ {
+ mu_printf ("usage: %s [-msgset=SET] [-add X[:Y]] [-del X:[Y]]...\n",
+ mu_program_name);
+ return 0;
+ }
+ else if (strncmp (arg, "-msgset=", 8) == 0)
+ msgset_string = arg + 8;
+ else if (strcmp (arg, "-uid") == 0)
+ flags |= MU_MSGSET_UID;
+ else if (strncmp (arg, "-mailbox=", 9) == 0)
+ {
+ MU_ASSERT (mu_mailbox_create (&mbox, arg + 9));
+ MU_ASSERT (mu_mailbox_open (mbox, MU_STREAM_READ));
+ }
+ else
+ break;
+ }
+
+ MU_ASSERT (mu_msgset_create (&msgset, mbox, flags));
+ if (msgset_string)
+ {
+ char *end;
+ rc = mu_msgset_parse_imap (msgset, msgset_string, &end);
+ if (rc)
+ {
+ mu_error ("mu_msgset_parse_imap: %s near %s",
+ mu_strerror (rc), end);
+ return 1;
+ }
+ }
+
+ for (; i < argc; i++)
+ {
+ char *arg = argv[i];
+ struct mu_msgrange range;
+
+ if (strncmp (arg, "-add=", 5) == 0)
+ {
+ parse_msgset (arg + 5, &range);
+ MU_ASSERT (mu_msgset_add_range (msgset, range.msg_beg,
+ range.msg_end));
+ }
+ else if (strncmp (arg, "-sub=", 5) == 0)
+ {
+ parse_msgset (arg + 5, &range);
+ MU_ASSERT (mu_msgset_sub_range (msgset, range.msg_beg,
+ range.msg_end));
+ }
+ else
+ {
+ mu_error ("unknown option %s", arg);
+ return 1;
+ }
+ }
+ MU_ASSERT (mu_msgset_print (mu_strout, msgset));
+ mu_printf ("\n");
+ mu_msgset_free (msgset);
+
+ return 0;
+}
+
+
+
+

Return to:

Send suggestions and report system problems to the System administrator.