]>
diplodocus.org Git - nmh/blob - sbr/folder_addmsg.c
1 /* folder_addmsg.c -- Link message into folder
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
13 #include "folder_realloc.h"
14 #include "folder_addmsg.h"
19 * Link message into a folder. Return the new number
20 * of the message. If an error occurs, return -1.
24 folder_addmsg (struct msgs
**mpp
, char *msgfile
, int selected
,
25 int unseen
, int preserve
, int deleting
, char *from_dir
)
27 int infd
, outfd
, linkerr
, msgnum
;
28 char *nmsg
, newmsg
[BUFSIZ
];
35 /* should we preserve the numbering of the message? */
36 if (preserve
&& (msgnum
= m_atoi (msgfile
)) > 0) {
38 } else if (mp
->nummsg
== 0) {
39 /* check if we are adding to empty folder */
42 /* else use highest message number + 1 */
43 msgnum
= mp
->hghmsg
+ 1;
47 * We might need to make several attempts
48 * in order to add the message to the folder.
53 * See if we need more space. If we need space at the
54 * end, then we allocate space for an addition 100 messages.
55 * If we need space at the beginning of the range, then just
56 * extend message status range to cover this message number.
58 if (msgnum
> mp
->hghoff
) {
59 if (!(mp
= folder_realloc (mp
, mp
->lowoff
, msgnum
+ 100))) {
60 inform("unable to allocate folder storage");
64 } else if (msgnum
< mp
->lowoff
) {
65 if (!(mp
= folder_realloc (mp
, msgnum
, mp
->hghoff
))) {
66 inform("unable to allocate folder storage");
73 * If a message is already in that slot,
74 * then loop to next available slot.
76 if (does_exist (mp
, msgnum
))
79 /* setup the bit flags for this message */
80 clear_msg_flags (mp
, msgnum
);
81 set_exists (mp
, msgnum
);
83 /* should we set the SELECT_UNSEEN bit? */
85 set_unseen (mp
, msgnum
);
88 /* should we set the SELECTED bit? */
90 set_selected (mp
, msgnum
);
92 /* check if highest or lowest selected */
93 if (mp
->numsel
== 0) {
97 if (msgnum
< mp
->lowsel
)
99 if (msgnum
> mp
->hghsel
)
103 /* increment number selected */
108 * check if this is highest or lowest message
110 if (mp
->nummsg
== 0) {
114 if (msgnum
< mp
->lowmsg
)
116 if (msgnum
> mp
->hghmsg
)
120 /* increment message count */
123 nmsg
= m_name (msgnum
);
124 snprintf (newmsg
, sizeof(newmsg
), "%s/%s", mp
->foldpath
, nmsg
);
127 * Now try to link message into folder.
128 * Then run the external hook on the message if one was specified in the context.
129 * Run the refile hook if we're moving the message from one place to another.
130 * We have to construct the from path name for this because it's not there.
131 * Run the add hook if the message is getting copied or linked somewhere else.
133 if (link (msgfile
, newmsg
) != -1) {
135 (void)snprintf(oldmsg
, sizeof (oldmsg
), "%s/%s", from_dir
, msgfile
);
136 (void)ext_hook("ref-hook", oldmsg
, newmsg
);
139 (void)ext_hook("add-hook", newmsg
, NULL
);
146 if (linkerr
== EISREMOTE
)
148 #endif /* EISREMOTE */
151 * Check if the file in our desired location is the same
152 * as the source file. If so, then just leave it alone
153 * and return. Otherwise, we will continue the main loop
154 * and try again at another slot (hghmsg+1).
156 if (linkerr
== EEXIST
) {
157 if (stat (msgfile
, &st2
) == 0 && stat (newmsg
, &st1
) == 0
158 && st2
.st_ino
== st1
.st_ino
) {
165 * If link failed because we are trying to link
166 * across devices, then check if there is a message
167 * already in the desired location. If so, then return
168 * error, else just copy the message.
169 * Cygwin with FAT32 filesystem produces EPERM.
171 if (linkerr
== EXDEV
|| linkerr
== EPERM
) {
172 if (stat (newmsg
, &st1
) == 0) {
173 inform("message %s:%s already exists", mp
->foldpath
, newmsg
);
177 if ((infd
= open (msgfile
, O_RDONLY
)) == -1) {
178 advise (msgfile
, "unable to open message %s", msgfile
);
182 if ((outfd
= creat (newmsg
, (int) st1
.st_mode
& 0777)) == -1) {
183 advise (newmsg
, "unable to create");
187 cpydata (infd
, outfd
, msgfile
, newmsg
);
192 (void)snprintf(oldmsg
, sizeof (oldmsg
), "%s/%s", from_dir
, msgfile
);
193 (void)ext_hook("ref-hook", oldmsg
, newmsg
);
196 (void)ext_hook("add-hook", newmsg
, NULL
);
202 * Else, some other type of link error,
203 * so just return error.
205 advise (newmsg
, "error linking %s to", msgfile
);