summaryrefslogtreecommitdiff
path: root/libmailutils/tests/msgset.c
blob: 308360c7efafc3e53397321b895cd82ae65d9b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/* GNU Mailutils -- a suite of utilities for electronic mail
   Copyright (C) 2011-2021 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>

mu_msgset_format_t format = mu_msgset_fmt_imap;

static void
parse_msgrange (char const *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;
}

mu_msgset_t
parse_msgset (const char *arg)
{
  int rc;
  mu_msgset_t msgset;
  char *end;

  MU_ASSERT (mu_msgset_create (&msgset, NULL, MU_MSGSET_NUM));
  if (arg)
    {
      rc = mu_msgset_parse_imap (msgset, MU_MSGSET_NUM, arg, &end);
      if (rc)
	{
	  mu_error ("mu_msgset_parse_imap: %s near %s",
		    mu_strerror (rc), end);
	  exit (1);
	}
    }
  return msgset;
}

static void
print_all (mu_msgset_t msgset)
{
  MU_ASSERT (mu_stream_msgset_format (mu_strout, format, msgset));
  mu_printf ("\n");
}

static void
print_first (mu_msgset_t msgset)
{
  size_t n;
  MU_ASSERT (mu_msgset_first (msgset, &n));
  printf ("%zu\n", n);
}

static void
print_last (mu_msgset_t msgset)
{
  size_t n;
  MU_ASSERT (mu_msgset_last (msgset, &n));
  printf ("%zu\n", n);
}

static void
cli_msgset (struct mu_parseopt *po, struct mu_option *opt, char const *arg)
{
  mu_msgset_t *msgset = opt->opt_ptr;
  if (*msgset)
    {
      mu_parseopt_error (po, "message set already defined");
      exit (po->po_exit_error);
    }
  *msgset = parse_msgset (arg);
}

static void
cli_mh (struct mu_parseopt *po, struct mu_option *opt, char const *arg)
{
  format = mu_msgset_fmt_mh;
}

static mu_msgset_t
get_msgset (struct mu_option *opt)
{
  mu_msgset_t *msgset = opt->opt_ptr;
  if (!*msgset)
    {
      *msgset = parse_msgset (NULL);
    }
  return *msgset;
}
    
static void
cli_add (struct mu_parseopt *po, struct mu_option *opt, char const *arg)
{
  struct mu_msgrange range;
  parse_msgrange (arg, &range);
  MU_ASSERT (mu_msgset_add_range (get_msgset (opt), range.msg_beg,
				  range.msg_end, MU_MSGSET_NUM));
}

static void
cli_sub (struct mu_parseopt *po, struct mu_option *opt, char const *arg)
{
  struct mu_msgrange range;
  parse_msgrange (arg, &range);
  MU_ASSERT (mu_msgset_sub_range (get_msgset (opt), range.msg_beg,
				  range.msg_end, MU_MSGSET_NUM));
}

static void
cli_addset (struct mu_parseopt *po, struct mu_option *opt, char const *arg)
{
  mu_msgset_t tset = parse_msgset (arg);
  MU_ASSERT (mu_msgset_add (get_msgset (opt), tset));
  mu_msgset_free (tset);
}

static void
cli_subset (struct mu_parseopt *po, struct mu_option *opt, char const *arg)
{
  mu_msgset_t tset = parse_msgset (arg);
  MU_ASSERT (mu_msgset_sub (get_msgset (opt), tset));
  mu_msgset_free (tset);
}

static void
cli_first (struct mu_parseopt *po, struct mu_option *opt, char const *arg)
{
  void (**print) (mu_msgset_t) = opt->opt_ptr;
  *print = print_first;
}

static void
cli_last (struct mu_parseopt *po, struct mu_option *opt, char const *arg)
{
  void (**print) (mu_msgset_t) = opt->opt_ptr;
  *print = print_last;
}

int
main (int argc, char **argv)
{
  mu_msgset_t msgset = NULL;
  void (*print) (mu_msgset_t) = print_all;
  
  struct mu_option options[] = {
    { "mh", 0, NULL, MU_OPTION_DEFAULT,
      "use MH message set format for output", mu_c_incr, NULL, cli_mh },
    { "msgset", 0, "SET", MU_OPTION_DEFAULT,
      "define message set", mu_c_string, &msgset, cli_msgset },
    { "add", 0, "X[:Y]", MU_OPTION_DEFAULT,
      "add range to message set", mu_c_string, &msgset, cli_add },
    { "sub", 0, "X[:Y]", MU_OPTION_DEFAULT,
      "subtract range from message set", mu_c_string, &msgset, cli_sub },
    { "addset", 0, "SET", MU_OPTION_DEFAULT,
      "add message set to message set", mu_c_string, &msgset, cli_addset },
    { "subset", 0, "SET", MU_OPTION_DEFAULT,
      "subtract message set from message set", mu_c_string, &msgset,
      cli_subset },
    { "first", 0, NULL, MU_OPTION_DEFAULT,
      "print only first element from the resulting set",
      mu_c_string, &print, cli_first },
    { "last", 0, NULL, MU_OPTION_DEFAULT,
      "print only last element from the resulting set",
      mu_c_string, &print, cli_last },
    MU_OPTION_END
  };
    
  mu_set_program_name (argv[0]);
  mu_cli_simple (argc, argv,
		 MU_CLI_OPTION_OPTIONS, options,
		 MU_CLI_OPTION_SINGLE_DASH,
		 MU_CLI_OPTION_PROG_DOC, "message set parser test utility",
		 MU_CLI_OPTION_END);

  if (!msgset)
    {
      mu_error ("nothing to do; try %s -help for assistance", mu_program_name);
      exit (1);
    }
  
  print (msgset);
  mu_msgset_free (msgset);
  
  return 0;
}
  
	     

	

Return to:

Send suggestions and report system problems to the System administrator.