3 * folder_realloc.c -- realloc a folder/msgs structure
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
14 * Reallocate some of the space in the folder
15 * structure (currently just message status array).
17 * Return pointer to new folder structure.
18 * If error, return NULL.
22 folder_realloc (struct msgs *mp, int lo, int hi)
28 adios (NULL, "BUG: called folder_realloc with lo (%d) < 1", lo);
30 adios (NULL, "BUG: called folder_realloc with hi (%d) < 1", hi);
31 if (mp->nummsg > 0 && lo > mp->lowmsg)
32 adios (NULL, "BUG: called folder_realloc with lo (%d) > mp->lowmsg (%d)",
34 if (mp->nummsg > 0 && hi < mp->hghmsg)
35 adios (NULL, "BUG: called folder_realloc with hi (%d) < mp->hghmsg (%d)",
38 /* Check if we really need to reallocate anything */
39 if (lo == mp->lowoff && hi == mp->hghoff)
42 if (lo == mp->lowoff) {
44 * We are just extending (or shrinking) the end of message
45 * status array. So we don't have to move anything and can
46 * just realloc the message status array.
48 mp->msgstats = mh_xrealloc (mp->msgstats, MSGSTATSIZE(mp, lo, hi));
51 * We are changing the offset of the message status
52 * array. So we will need to shift everything.
56 /* first allocate the new message status space */
57 tmpstats = mh_xmalloc (MSGSTATSIZE(mp, lo, hi));
59 /* then copy messages status array with shift */
61 for (msgnum = mp->lowmsg; msgnum <= mp->hghmsg; msgnum++)
62 tmpstats[msgnum - lo] = mp->msgstats[msgnum - mp->lowoff];
65 mp->msgstats = tmpstats;
72 * Clear all the flags for entries outside
73 * the current message range for this folder.
76 for (msgnum = mp->lowoff; msgnum < mp->lowmsg; msgnum++)
77 clear_msg_flags (mp, msgnum);
78 for (msgnum = mp->hghmsg + 1; msgnum <= mp->hghoff; msgnum++)
79 clear_msg_flags (mp, msgnum);
81 /* no messages, so clear entire range */
82 for (msgnum = mp->lowoff; msgnum <= mp->hghoff; msgnum++)
83 clear_msg_flags (mp, msgnum);