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
|
/*
* seq_add.c -- add message(s) to a sequence
*
* $Id: seq_add.c,v 1.1.1.1 1999/04/30 18:08:34 doug Exp $
*/
#include <h/mh.h>
/*
* Add all the SELECTED messages to a (possibly new) sequence.
*
* If public == 1, make sequence public.
* If public == 0, make sequence private.
* If public == -1, leave the public/private bit alone for existing
* sequences. For new sequences, set this bit based
* on its readonly status.
*
* If error, return 0, else return 1.
*/
int
seq_addsel (struct msgs *mp, char *cp, int public, int zero)
{
int i, msgnum, new_seq = 1;
if (!seq_nameok (cp))
return 0;
/*
* We keep mp->curmsg and "cur" sequence in sync.
* See seq_list() and seq_init().
*/
if (!strcmp (current,cp))
mp->curmsg = mp->hghsel;
/*
* Get the number for this sequence
*/
for (i = 0; mp->msgattrs[i]; i++) {
if (!strcmp (mp->msgattrs[i], cp)) {
new_seq = 0;
break;
}
}
/*
* If this is a new sequence, add a slot for it
*/
if (new_seq) {
if (i >= NUMATTRS) {
advise (NULL, "only %d sequences allowed (no room for %s)!", NUMATTRS, cp);
return 0;
}
if (!(mp->msgattrs[i] = strdup (cp))) {
advise (NULL, "strdup failed");
return 0;
}
mp->msgattrs[i + 1] = NULL;
}
/*
* If sequence is new, or zero flag is set, then first
* clear the bit for this sequence from all messages.
*/
if (new_seq || zero) {
for (msgnum = mp->lowmsg; msgnum <= mp->hghmsg; msgnum++)
clear_sequence (mp, i, msgnum);
}
/*
* Now flip on the bit for this sequence
* for all selected messages.
*/
for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++)
if (is_selected (mp, msgnum))
add_sequence (mp, i, msgnum);
/*
* Set the public/private bit for this sequence.
*/
if (public == 1)
make_seq_public (mp, i);
else if (public == 0)
make_seq_private (mp, i);
else if (new_seq) {
/*
* If public == -1, then only set the
* public/private bit for new sequences.
*/
if (is_readonly (mp))
make_seq_private (mp, i);
else
make_seq_public (mp, i);
}
mp->msgflags |= SEQMOD;
return 1;
}
/*
* Add a message to a (possibly new) sequence.
*
* If public == 1, make sequence public.
* If public == 0, make sequence private.
* If public == -1, leave the public/private bit alone for existing
* sequences. For new sequences, set this bit based
* on its readonly status.
*
* If error, return 0, else return 1.
*/
int
seq_addmsg (struct msgs *mp, char *cp, int msgnum, int public, int zero)
{
int i, j, new_seq = 1;
if (!seq_nameok (cp))
return 0;
/*
* keep mp->curmsg and msgattrs["cur"] in sync - see seq_list()
*/
if (!strcmp (current,cp))
mp->curmsg = msgnum;
/*
* Get the number for this sequence
*/
for (i = 0; mp->msgattrs[i]; i++) {
if (!strcmp (mp->msgattrs[i], cp)) {
new_seq = 0;
break;
}
}
/*
* If this is a new sequence, add a slot for it
*/
if (new_seq) {
if (i >= NUMATTRS) {
advise (NULL, "only %d sequences allowed (no room for %s)!", NUMATTRS, cp);
return 0;
}
if (!(mp->msgattrs[i] = strdup (cp))) {
advise (NULL, "strdup failed");
return 0;
}
mp->msgattrs[i + 1] = NULL;
}
/*
* If sequence is new, or zero flag is set, then first
* clear the bit for this sequence from all messages.
*/
if (new_seq || zero) {
for (j = mp->lowmsg; j <= mp->hghmsg; j++)
clear_sequence (mp, i, j);
}
/*
* Now flip on the bit for this sequence
* for this particular message.
*/
add_sequence (mp, i, msgnum);
/*
* Set the public/private bit for this sequence.
*/
if (public == 1)
make_seq_public (mp, i);
else if (public == 0)
make_seq_private (mp, i);
else if (new_seq) {
/*
* If public == -1, then only set the
* public/private bit for new sequences.
*/
if (is_readonly (mp))
make_seq_private (mp, i);
else
make_seq_public (mp, i);
}
mp->msgflags |= SEQMOD;
return 1;
}
|