X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mbox.c;h=5c00fea35f2f742ae0d8e2f2a1f324c7264160bc;hp=3d1a31cc6571a993e351724ab6ee8b0576450660;hb=b4827293ce79b576beb9550b91e71a198f2f5744;hpb=25bf57d598476b329536fa3f748cc0c529fef6bd diff --git a/mbox.c b/mbox.c index 3d1a31c..5c00fea 100644 --- a/mbox.c +++ b/mbox.c @@ -15,6 +15,7 @@ #include "mutt.h" #include "mx.h" +#include "buffy.h" #include "mbox.h" #include "sort.h" #include "copy.h" @@ -26,6 +27,7 @@ #include "lib/mem.h" #include "lib/intl.h" #include "lib/str.h" +#include "lib/debug.h" #include #include @@ -46,12 +48,15 @@ struct m_update_t { }; -int mbox_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr) +static int mbox_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr) { msg->fp = dest->fp; return 0; } +/* prototypes */ +static int mbox_reopen_mailbox (CONTEXT*, int*); + /* parameters: * ctx - context to lock * excl - exclusive lock? @@ -81,7 +86,7 @@ void mbox_unlock_mailbox (CONTEXT * ctx) } } -int mmdf_parse_mailbox (CONTEXT * ctx) +static int mmdf_parse_mailbox (CONTEXT * ctx) { char buf[HUGE_STRING]; char return_path[LONG_STRING]; @@ -138,7 +143,7 @@ int mmdf_parse_mailbox (CONTEXT * ctx) if (fgets (buf, sizeof (buf) - 1, ctx->fp) == NULL) { /* TODO: memory leak??? */ - dprint (1, (debugfile, "mmdf_parse_mailbox: unexpected EOF\n")); + debug_print (1, ("unexpected EOF\n")); break; } @@ -146,7 +151,7 @@ int mmdf_parse_mailbox (CONTEXT * ctx) if (!is_from (buf, return_path, sizeof (return_path), &t)) { if (fseek (ctx->fp, loc, SEEK_SET) != 0) { - dprint (1, (debugfile, "mmdf_parse_mailbox: fseek() failed\n")); + debug_print (1, ("fseek() failed\n")); mutt_error _("Mailbox is corrupt!"); return (-1); @@ -167,7 +172,7 @@ int mmdf_parse_mailbox (CONTEXT * ctx) fgets (buf, sizeof (buf) - 1, ctx->fp) == NULL || safe_strcmp (MMDF_SEP, buf) != 0) { if (fseek (ctx->fp, loc, SEEK_SET) != 0) - dprint (1, (debugfile, "mmdf_parse_mailbox: fseek() failed\n")); + debug_print (1, ("fseek() failed\n")); hdr->content->length = -1; } } @@ -200,7 +205,7 @@ int mmdf_parse_mailbox (CONTEXT * ctx) ctx->msgcount++; } else { - dprint (1, (debugfile, "mmdf_parse_mailbox: corrupt mailbox!\n")); + debug_print (1, ("corrupt mailbox!\n")); mutt_error _("Mailbox is corrupt!"); return (-1); @@ -219,7 +224,7 @@ int mmdf_parse_mailbox (CONTEXT * ctx) * NOTE: it is assumed that the mailbox being read has been locked before * this routine gets called. Strange things could happen if it's not! */ -int mbox_parse_mailbox (CONTEXT * ctx) +static int mbox_parse_mailbox (CONTEXT * ctx) { struct stat sb; char buf[HUGE_STRING], return_path[STRING]; @@ -306,13 +311,11 @@ int mbox_parse_mailbox (CONTEXT * ctx) if (fseek (ctx->fp, tmploc, SEEK_SET) != 0 || fgets (buf, sizeof (buf), ctx->fp) == NULL || safe_strncmp ("From ", buf, 5) != 0) { - dprint (1, - (debugfile, - "mbox_parse_mailbox: bad content-length in message %d (cl=%ld)\n", - curhdr->index, curhdr->content->length)); - dprint (1, (debugfile, "\tLINE: %s", buf)); + debug_print (1, ("bad content-length in message %d (cl=%ld)\n", + curhdr->index, curhdr->content->length)); + debug_print (1, ("LINE: %s\n", buf)); if (fseek (ctx->fp, loc, SEEK_SET) != 0) { /* nope, return the previous position */ - dprint (1, (debugfile, "mbox_parse_mailbox: fseek() failed\n")); + debug_print (1, ("fseek() failed\n")); } curhdr->content->length = -1; } @@ -333,7 +336,7 @@ int mbox_parse_mailbox (CONTEXT * ctx) /* count the number of lines in this message */ if (fseek (ctx->fp, loc, SEEK_SET) != 0) - dprint (1, (debugfile, "mbox_parse_mailbox: fseek() failed\n")); + debug_print (1, ("fseek() failed\n")); while (cl-- > 0) { if (fgetc (ctx->fp) == '\n') curhdr->lines++; @@ -342,7 +345,7 @@ int mbox_parse_mailbox (CONTEXT * ctx) /* return to the offset of the next message separator */ if (fseek (ctx->fp, tmploc, SEEK_SET) != 0) - dprint (1, (debugfile, "mbox_parse_mailbox: fseek() failed\n")); + debug_print (1, ("fseek() failed\n")); } } @@ -388,7 +391,7 @@ int mbox_parse_mailbox (CONTEXT * ctx) #undef PREV /* open a mbox or mmdf style mailbox */ -int mbox_open_mailbox (CONTEXT * ctx) +static int mbox_open_mailbox (CONTEXT * ctx) { int rc; @@ -533,7 +536,7 @@ int mbox_strict_cmp_headers (const HEADER * h1, const HEADER * h2) * 0 no change * -1 error */ -int mbox_check_mailbox (CONTEXT * ctx, int *index_hint) +static int _mbox_check_mailbox (CONTEXT * ctx, int *index_hint) { struct stat st; char buffer[LONG_STRING]; @@ -572,12 +575,12 @@ int mbox_check_mailbox (CONTEXT * ctx, int *index_hint) * folder. */ if (fseek (ctx->fp, ctx->size, SEEK_SET) != 0) - dprint (1, (debugfile, "mbox_check_mailbox: fseek() failed\n")); + debug_print (1, ("fseek() failed\n")); if (fgets (buffer, sizeof (buffer), ctx->fp) != NULL) { if ((ctx->magic == M_MBOX && safe_strncmp ("From ", buffer, 5) == 0) || (ctx->magic == M_MMDF && safe_strcmp (MMDF_SEP, buffer) == 0)) { if (fseek (ctx->fp, ctx->size, SEEK_SET) != 0) - dprint (1, (debugfile, "mbox_check_mailbox: fseek() failed\n")); + debug_print (1, ("fseek() failed\n")); if (ctx->magic == M_MBOX) mbox_parse_mailbox (ctx); else @@ -599,7 +602,7 @@ int mbox_check_mailbox (CONTEXT * ctx, int *index_hint) modified = 1; } else { - dprint (1, (debugfile, "mbox_check_mailbox: fgets returned NULL.\n")); + debug_print (1, ("fgets returned NULL.\n")); modified = 1; } } @@ -627,11 +630,31 @@ int mbox_check_mailbox (CONTEXT * ctx, int *index_hint) return (-1); } +static int mbox_check_mailbox (CONTEXT* ctx, int* index_hint, int lock) { + int rc = 0; + + if (lock) { + mutt_block_signals (); + if (mbox_lock_mailbox (ctx, 0, 0) == -1) { + mutt_unblock_signals (); + return M_LOCKED; + } + } + + rc = _mbox_check_mailbox (ctx, index_hint); + + if (lock) { + mutt_unblock_signals (); + mbox_unlock_mailbox (ctx); + } + return rc; +} + /* return values: * 0 success * -1 failure */ -int mbox_sync_mailbox (CONTEXT * ctx, int *index_hint) +static int _mbox_sync_mailbox (CONTEXT * ctx, int unused, int *index_hint) { char tempfile[_POSIX_PATH_MAX]; char buf[32]; @@ -673,7 +696,7 @@ int mbox_sync_mailbox (CONTEXT * ctx, int *index_hint) } /* Check to make sure that the file hasn't changed on disk */ - if ((i = mbox_check_mailbox (ctx, index_hint)) == M_NEW_MAIL + if ((i = _mbox_check_mailbox (ctx, index_hint)) == M_NEW_MAIL || i == M_REOPENED) { /* new mail arrived, or mailbox reopened */ need_sort = i; @@ -713,7 +736,7 @@ int mbox_sync_mailbox (CONTEXT * ctx, int *index_hint) mutt_error _("sync: mbox modified, but no modified messages! (report this bug)"); mutt_sleep (5); /* the mutt_error /will/ get cleared! */ - dprint (1, (debugfile, "mbox_sync_mailbox(): no modified messages.\n")); + debug_print (1, ("no modified messages.\n")); unlink (tempfile); goto bail; } @@ -808,8 +831,7 @@ int mbox_sync_mailbox (CONTEXT * ctx, int *index_hint) if (fclose (fp) != 0) { fp = NULL; - dprint (1, - (debugfile, "mbox_sync_mailbox: fclose() returned non-zero.\n")); + debug_print (1, ("fclose() returned non-zero.\n")); unlink (tempfile); mutt_perror (tempfile); mutt_sleep (5); @@ -828,9 +850,7 @@ int mbox_sync_mailbox (CONTEXT * ctx, int *index_hint) if ((fp = fopen (tempfile, "r")) == NULL) { mutt_unblock_signals (); mx_fastclose_mailbox (ctx); - dprint (1, - (debugfile, - "mbox_sync_mailbox: unable to reopen temp copy of mailbox!\n")); + debug_print (1, ("unable to reopen temp copy of mailbox!\n")); mutt_perror (tempfile); mutt_sleep (5); return (-1); @@ -841,16 +861,14 @@ int mbox_sync_mailbox (CONTEXT * ctx, int *index_hint) fgets (buf, sizeof (buf), ctx->fp) == NULL || (ctx->magic == M_MBOX && safe_strncmp ("From ", buf, 5) != 0) || (ctx->magic == M_MMDF && safe_strcmp (MMDF_SEP, buf) != 0)) { - dprint (1, - (debugfile, - "mbox_sync_mailbox: message not in expected position.")); - dprint (1, (debugfile, "\tLINE: %s\n", buf)); + debug_print (1, ("message not in expected position.\n")); + debug_print (1, ("LINE: %s\n", buf)); i = -1; } else { if (fseek (ctx->fp, offset, SEEK_SET) != 0) { /* return to proper offset */ i = -1; - dprint (1, (debugfile, "mbox_sync_mailbox: fseek() failed\n")); + debug_print (1, ("fseek() failed\n")); } else { /* copy the temp mailbox back into place starting at the first @@ -964,6 +982,19 @@ bail: /* Come here in case of disaster */ return rc; } +static int mbox_sync_mailbox (CONTEXT * ctx, int unused, int *index_hint) { +#ifdef BUFFY_SIZE + BUFFY* tmp = NULL; +#endif + int rc = _mbox_sync_mailbox (ctx, unused, index_hint); + +#ifdef BUFFY_SIZE + if ((tmp = buffy_find_mailbox (ctx->path)) && tmp->new == 0) + buffy_update_mailbox (tmp); +#endif + return (rc); +} + /* close a mailbox opened in write-mode */ int mbox_close_mailbox (CONTEXT * ctx) { @@ -979,7 +1010,7 @@ int mbox_close_mailbox (CONTEXT * ctx) return 0; } -int mbox_reopen_mailbox (CONTEXT * ctx, int *index_hint) +static int mbox_reopen_mailbox (CONTEXT * ctx, int *index_hint) { int (*cmp_headers) (const HEADER *, const HEADER *) = NULL; HEADER **old_hdrs; @@ -1042,7 +1073,7 @@ int mbox_reopen_mailbox (CONTEXT * ctx, int *index_hint) case M_MBOX: case M_MMDF: if (fseek (ctx->fp, 0, SEEK_SET) != 0) { - dprint (1, (debugfile, "mbox_reopen_mailbox: fseek() failed\n")); + debug_print (1, ("fseek() failed\n")); rc = -1; } else { @@ -1155,16 +1186,15 @@ int mbox_check_empty (const char *path) return ((st.st_size == 0)); } -int mbox_is_magic (const char* path) { - struct stat st; - int magic = 0; +int mbox_is_magic (const char* path, struct stat* st) { + int magic = -1; FILE* f; char tmp[_POSIX_PATH_MAX]; - if (stat (path, &st) == -1) + if (S_ISDIR(st->st_mode)) return (-1); - if (st.st_size == 0) { + if (st->st_size == 0) { /* hard to tell what zero-length files are, so assume the default magic */ if (DefaultMagic == M_MBOX || DefaultMagic == M_MMDF) return (DefaultMagic); @@ -1186,8 +1216,8 @@ int mbox_is_magic (const char* path) { * only the type was accessed. This is important, because detection * of "new mail" depends on those times set correctly. */ - times.actime = st.st_atime; - times.modtime = st.st_mtime; + times.actime = st->st_atime; + times.modtime = st->st_mtime; utime (path, ×); #endif } else { @@ -1196,7 +1226,7 @@ int mbox_is_magic (const char* path) { } #ifdef USE_COMPRESSED - if (magic == 0 && mutt_can_read_compressed (path)) + if (magic == -1 && mutt_can_read_compressed (path)) return (M_COMPRESSED); #endif return (magic); @@ -1209,6 +1239,9 @@ static mx_t* reg_mx (void) { fmt->mx_is_magic = mbox_is_magic; fmt->mx_access = access; fmt->mx_open_mailbox = mbox_open_mailbox; + fmt->mx_open_new_message = mbox_open_new_message; + fmt->mx_sync_mailbox = mbox_sync_mailbox; + fmt->mx_check_mailbox = mbox_check_mailbox; return (fmt); }