/* ** Copyright (C) 2010 Dirk-Jan C. Binnema ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 3 of the License, or ** (at your option) any later version. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the Free Software Foundation, ** Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ** */ #if HAVE_CONFIG_H #include "config.h" #endif /*HAVE_CONFIG_H*/ #include #include #include #include "mu-msg-str.h" #include "mu-msg-flags.h" const char* mu_msg_str_date_s (const char* frm, time_t t) { struct tm *tmbuf; static char buf[128]; g_return_val_if_fail (frm, NULL); tmbuf = localtime(&t); strftime (buf, sizeof(buf), frm, tmbuf); return buf; } char* mu_msg_str_date (const char *frm, time_t t) { return g_strdup (mu_msg_str_date_s(frm, t)); } const char* mu_msg_str_display_date_s (time_t t) { time_t now; static const time_t SECS_IN_DAY = 24 * 60 * 60; now = time (NULL); if (ABS(now - t) > SECS_IN_DAY) return mu_msg_str_date_s ("%x", t); else return mu_msg_str_date_s ("%X", t); } const char* mu_msg_str_size_s (size_t s) { static char buf[32]; #ifdef HAVE_GLIB216 char *tmp; tmp = g_format_size_for_display ((goffset)s); strncpy (buf, tmp, sizeof(buf)); buf[sizeof(buf) -1] = '\0'; /* just in case */ g_free (tmp); #else if (s >= 1000 * 1000) g_snprintf(buf, sizeof(buf), "%.1f MB", (double)s/(1000*1000)); else g_snprintf(buf, sizeof(buf), "%.1f kB", (double)s/(1000)); #endif /*HAVE_GLIB216*/ return buf; } char* mu_msg_str_size (size_t s) { return g_strdup (mu_msg_str_size_s(s)); } const char* mu_msg_str_flags_s (MuMsgFlags flags) { return mu_msg_flags_to_str_s (flags); } char* mu_msg_str_flags (MuMsgFlags flags) { return g_strdup (mu_msg_str_flags_s(flags)); } char* mu_msg_str_summarize (const char* str, size_t max_lines) { char *summary; size_t nl_seen; unsigned i,j; gboolean last_was_blank; g_return_val_if_fail (str, NULL); g_return_val_if_fail (max_lines > 0, NULL); /* len for summary <= original len */ summary = g_new (gchar, strlen(str) + 1); /* copy the string up to max_lines lines, replace CR/LF/tab with * single space */ for (i = j = 0, nl_seen = 0, last_was_blank = TRUE; nl_seen < max_lines && str[i] != '\0'; ++i) { if (str[i] == '\n' || str[i] == '\r' || str[i] == '\t' || str[i] == ' ' ) { if (str[i] == '\n') ++nl_seen; /* no double-blanks or blank at end of str */ if (!last_was_blank && str[i+1] != '\0') summary[j++] = ' '; last_was_blank = TRUE; } else { summary[j++] = str[i]; last_was_blank = FALSE; } } summary[j] = '\0'; return summary; } const char* mu_msg_str_display_contact_s (const char *str) { static gchar contact[255]; gchar *c, *c2; if (!str) str = ""; g_strlcpy (contact, str, sizeof(contact)); /* strip the address, if any */ c = g_strstr_len (contact, -1, "<"); if (c != NULL) *c = '\0'; /* replace " with space */ for (c2 = contact; *c2; ++c2) if (*c2 == '"') *c2 = ' '; g_strstrip (contact); return contact; } char* mu_msg_str_display_contact (const char *str) { g_return_val_if_fail (str, NULL); return g_strdup (mu_msg_str_display_contact_s (str)); }