X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=pattern.c;h=500d3b3575cfeab6cb8e811876f10d7b32846f8a;hp=dec82b508ce3944c4d632a5ccc86e945ceb57526;hb=21595f98b7c8132f99abb9fee60ecdce31fc980f;hpb=c8ceef3ed6424dcb5a6ec835e7d8d9cc00595372 diff --git a/pattern.c b/pattern.c index dec82b5..500d3b3 100644 --- a/pattern.c +++ b/pattern.c @@ -11,20 +11,21 @@ # include "config.h" #endif +#include +#include +#include +#include +#include + #include "mutt.h" -#include "buffer.h" #include "handler.h" #include "enter.h" -#include "ascii.h" #include "mx.h" #include "mapping.h" #include "keymap.h" #include "copy.h" #include "mime.h" -#include "lib/mem.h" -#include "lib/intl.h" -#include "lib/str.h" #ifdef USE_IMAP #include "mx.h" @@ -101,7 +102,7 @@ struct pattern_flags { '=', M_DUPLICATED, 0, NULL}, { '$', M_UNREFERENCED, 0, NULL}, { '*', M_REALNAME, 0, NULL}, { - 0} + 0, 0, 0, NULL} }; static pattern_t *SearchPattern = NULL; /* current search pattern */ @@ -162,7 +163,7 @@ msg_search (CONTEXT *ctx, pattern_t* pat, int msgno) if ((msg = mx_open_message (ctx, msgno)) != NULL) { if (option (OPTTHOROUGHSRC)) { /* decode the header / body */ - memset (&s, 0, sizeof (s)); + p_clear(&s, 1); s.fpin = msg->fp; s.flags = M_CHARCONV; mutt_mktemp (tempfile); @@ -211,8 +212,7 @@ msg_search (CONTEXT *ctx, pattern_t* pat, int msgno) } } - blen = STRING; - buf = mem_malloc (blen); + buf = p_new(char, blen = STRING); /* search the file "fp" */ while (lng > 0) { @@ -225,10 +225,10 @@ msg_search (CONTEXT *ctx, pattern_t* pat, int msgno) match = 1; break; } - lng -= str_len (buf); + lng -= m_strlen(buf); } - mem_free (&buf); + p_delete(&buf); mx_close_message (&msg); @@ -246,7 +246,7 @@ int eat_regexp (pattern_t * pat, BUFFER * s, BUFFER * err) BUFFER buf; int r; - memset (&buf, 0, sizeof (buf)); + p_clear(&buf, 1); if (mutt_extract_token (&buf, s, M_TOKEN_PATTERN | M_TOKEN_COMMENT) != 0 || !buf.data) { @@ -266,16 +266,16 @@ int eat_regexp (pattern_t * pat, BUFFER * s, BUFFER * err) #endif if (pat->stringmatch) { - pat->str = str_dup (buf.data); - mem_free (&buf.data); + pat->str = m_strdup(buf.data); + p_delete(&buf.data); } else { - pat->rx = mem_malloc (sizeof (regex_t)); + pat->rx = p_new(regex_t, 1); r = REGCOMP (pat->rx, buf.data, REG_NEWLINE | REG_NOSUB | mutt_which_case (buf.data)); - mem_free (&buf.data); + p_delete(&buf.data); if (r) { regerror (r, pat->rx, err->data, err->dsize); regfree (pat->rx); - mem_free (&pat->rx); + p_delete(&pat->rx); return (-1); } } @@ -536,21 +536,21 @@ static int eat_date (pattern_t * pat, BUFFER * s, BUFFER * err) BUFFER buffer; struct tm min, max; - memset (&buffer, 0, sizeof (buffer)); + p_clear(&buffer, 1); if (mutt_extract_token (&buffer, s, M_TOKEN_COMMENT | M_TOKEN_PATTERN) != 0 || !buffer.data) { strfcpy (err->data, _("error in expression"), err->dsize); return (-1); } - memset (&min, 0, sizeof (min)); + p_clear(&min, 1); /* the `0' time is Jan 1, 1970 UTC, so in order to prevent a negative time when doing timezone conversion, we use Jan 2, 1970 UTC as the base here */ min.tm_mday = 2; min.tm_year = 70; - memset (&max, 0, sizeof (max)); + p_clear(&max, 1); /* Arbitrary year in the future. Don't set this too high or mutt_mktime() returns something larger than will @@ -603,7 +603,7 @@ static int eat_date (pattern_t * pat, BUFFER * s, BUFFER * err) if (isdigit ((unsigned char) *pc)) { /* mininum date specified */ if ((pc = getDate (pc, &min, err)) == NULL) { - mem_free (&buffer.data); + p_delete(&buffer.data); return (-1); } haveMin = TRUE; @@ -636,7 +636,7 @@ static int eat_date (pattern_t * pat, BUFFER * s, BUFFER * err) max.tm_mday = min.tm_mday; if (!parse_date_range (pc, &min, &max, haveMin, &baseMin, err)) { /* bail out on any parsing error */ - mem_free (&buffer.data); + p_delete(&buffer.data); return (-1); } } @@ -648,7 +648,7 @@ static int eat_date (pattern_t * pat, BUFFER * s, BUFFER * err) pat->min = mutt_mktime (&min, 1); pat->max = mutt_mktime (&max, 1); - mem_free (&buffer.data); + p_delete(&buffer.data); return 0; } @@ -689,12 +689,12 @@ void mutt_pattern_free (pattern_t ** pat) if (tmp->rx) { regfree (tmp->rx); - mem_free (&tmp->rx); + p_delete(&tmp->rx); } - mem_free (&tmp->str); + p_delete(&tmp->str); if (tmp->child) mutt_pattern_free (&tmp->child); - mem_free (&tmp); + p_delete(&tmp); } } @@ -712,9 +712,9 @@ pattern_t *mutt_pattern_comp ( /* const */ char *s, int flags, BUFFER * err) char *buf; BUFFER ps; - memset (&ps, 0, sizeof (ps)); + p_clear(&ps, 1); ps.dptr = s; - ps.dsize = str_len (s); + ps.dsize = m_strlen(s); while (*ps.dptr) { SKIPWS (ps.dptr); @@ -818,11 +818,11 @@ pattern_t *mutt_pattern_comp ( /* const */ char *s, int flags, BUFFER * err) /* compile the sub-expression */ buf = str_substrdup (ps.dptr + 1, p); if ((tmp = mutt_pattern_comp (buf, flags, err)) == NULL) { - mem_free (&buf); + p_delete(&buf); mutt_pattern_free (&curlist); return NULL; } - mem_free (&buf); + p_delete(&buf); if (last) last->next = tmp; else @@ -1204,24 +1204,18 @@ int mutt_pattern_func (int op, char *prompt) strfcpy (buf, NONULL (Context->pattern), sizeof (buf)); if (prompt || op != M_LIMIT) - if (mutt_get_field (prompt, buf, sizeof (buf), M_PATTERN | M_CLEAR) != 0) - return (-1); - if (!buf[0]) { - if (op == M_LIMIT) - strncpy (buf, "~A", sizeof (buf)); - else + if (mutt_get_field (prompt, buf, sizeof (buf), M_PATTERN | M_CLEAR) != 0 || !buf[0]) return (-1); - } mutt_message _("Compiling search pattern..."); - simple = str_dup (buf); + simple = m_strdup(buf); mutt_check_simple (buf, sizeof (buf), NONULL (SimpleSearch)); err.data = error; err.dsize = sizeof (error); if ((pat = mutt_pattern_comp (buf, M_FULL_MSG, &err)) == NULL) { - mem_free (&simple); + p_delete(&simple); mutt_error ("%s", err.data); return (-1); } @@ -1286,7 +1280,7 @@ int mutt_pattern_func (int op, char *prompt) if (op == M_LIMIT) { /* drop previous limit pattern */ - mem_free (&Context->pattern); + p_delete(&Context->pattern); if (Context->limit_pattern) mutt_pattern_free (&Context->limit_pattern); if (Context->msgcount && !Context->vcount) { @@ -1300,7 +1294,7 @@ int mutt_pattern_func (int op, char *prompt) Context->limit_pattern = mutt_pattern_comp (buf, M_FULL_MSG, &err); } } - mem_free (&simple); + p_delete(&simple); mutt_pattern_free (&pat); return 0; }