utils/mu-date: remove

Remove mu-date.[ch] and convert its last users to use time_to_string instead.
This commit is contained in:
Dirk-Jan C. Binnema
2022-02-22 22:48:29 +02:00
parent a51272a2e6
commit af87cde217
9 changed files with 133 additions and 294 deletions

View File

@ -1,5 +1,5 @@
/* /*
** Copyright (C) 2012-2020 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> ** Copyright (C) 2012-2022 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
** **
** This program is free software; you can redistribute it and/or modify it ** 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 ** under the terms of the GNU General Public License as published by the
@ -20,11 +20,12 @@
#include "config.h" #include "config.h"
#include <string.h> #include <string.h>
#include <utils/mu-utils.hh>
#include "gmime/gmime-signature.h"
#include "mu-msg.hh" #include "mu-msg.hh"
#include "mu-msg-priv.hh" #include "mu-msg-priv.hh"
#include "mu-msg-part.hh" #include "mu-msg-part.hh"
#include "utils/mu-date.h"
#include <gmime/gmime.h> #include <gmime/gmime.h>
#include <gmime/gmime-multipart-signed.h> #include <gmime/gmime-multipart-signed.h>
@ -146,25 +147,27 @@ get_signature_status(GMimeSignatureStatus status)
static char* static char*
get_verdict_report(GMimeSignature* msig) get_verdict_report(GMimeSignature* msig)
{ {
time_t t;
const char * created, *expires;
gchar * certdata, *report, *status; gchar * certdata, *report, *status;
GMimeSignatureStatus sigstat; GMimeSignatureStatus sigstat;
sigstat = g_mime_signature_get_status(msig); sigstat = g_mime_signature_get_status(msig);
status = get_signature_status(sigstat); status = get_signature_status(sigstat);
t = g_mime_signature_get_created(msig); auto date_str = [](time_t t)->std::string {
created = (t == 0 || t == (time_t)-1) ? "?" : mu_date_str_s("%x", t); if (t == 0 || t == static_cast<time_t>(-1))
return "?";
else
return time_to_string("%x", t);
};
t = g_mime_signature_get_expires(msig); const auto created = date_str(g_mime_signature_get_created(msig));
expires = (t == 0 || t == (time_t)-1) ? "?" : mu_date_str_s("%x", t); const auto expires = date_str(g_mime_signature_get_expires(msig));
certdata = get_cert_data(g_mime_signature_get_certificate(msig)); certdata = get_cert_data(g_mime_signature_get_certificate(msig));
report = g_strdup_printf("%s; created:%s, expires:%s, %s", report = g_strdup_printf("%s; created:%s, expires:%s, %s",
status, status,
created, created.c_str(),
expires, expires.c_str(),
certdata ? certdata : "?"); certdata ? certdata : "?");
g_free(certdata); g_free(certdata);
g_free(status); g_free(status);

View File

@ -28,7 +28,6 @@
#include "utils/mu-util.h" #include "utils/mu-util.h"
#include "utils/mu-str.h" #include "utils/mu-str.h"
#include "utils/mu-date.h"
#include "utils/mu-utils.hh" #include "utils/mu-utils.hh"
#include "utils/mu-xapian-utils.hh" #include "utils/mu-xapian-utils.hh"

View File

@ -54,8 +54,6 @@ libmu_utils_la_SOURCES= \
mu-async-queue.hh \ mu-async-queue.hh \
mu-command-parser.cc \ mu-command-parser.cc \
mu-command-parser.hh \ mu-command-parser.hh \
mu-date.c \
mu-date.h \
mu-error.hh \ mu-error.hh \
mu-logger.cc \ mu-logger.cc \
mu-logger.hh \ mu-logger.hh \

View File

@ -19,8 +19,6 @@ lib_mu_utils=static_library('mu-utils', [
'mu-async-queue.hh', 'mu-async-queue.hh',
'mu-command-parser.cc', 'mu-command-parser.cc',
'mu-command-parser.hh', 'mu-command-parser.hh',
'mu-date.c',
'mu-date.h',
'mu-error.hh', 'mu-error.hh',
'mu-logger.cc', 'mu-logger.cc',
'mu-logger.hh', 'mu-logger.hh',

View File

@ -1,91 +0,0 @@
/*
** Copyright (C) 2012 <djcb@djcbsoftware.nl>
**
** 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, 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.
**
*/
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include "mu-util.h"
#include "mu-date.h"
#include "mu-str.h"
const char*
mu_date_str_s (const char* frm, time_t t)
{
struct tm *tmbuf;
static char buf[128];
static int is_utf8 = -1;
size_t len;
if (G_UNLIKELY(is_utf8 == -1))
is_utf8 = mu_util_locale_is_utf8 () ? 1 : 0;
g_return_val_if_fail (frm, NULL);
tmbuf = localtime(&t);
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
len = strftime (buf, sizeof(buf) - 1, frm, tmbuf);
#pragma GCC diagnostic pop
if (len == 0)
return ""; /* not necessarily an error... */
if (!is_utf8) {
/* charset is _not_ utf8, so we need to convert it, so
* the date could contain locale-specific characters*/
gchar *conv;
GError *err;
err = NULL;
conv = g_locale_to_utf8 (buf, -1, NULL, NULL, &err);
if (err) {
g_warning ("conversion failed: %s", err->message);
g_error_free (err);
strcpy (buf, "<error>");
} else {
strncpy (buf, conv, sizeof(buf)-1);
buf[sizeof(buf)-1] = '\0';
}
g_free (conv);
}
return buf;
}
char*
mu_date_str (const char *frm, time_t t)
{
return g_strdup (mu_date_str_s(frm, t));
}
const char*
mu_date_display_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_date_str_s ("%x", t);
else
return mu_date_str_s ("%X", t);
}

View File

@ -1,67 +0,0 @@
/*
** Copyright (C) 2012-2013 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
** 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, 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.
**
*/
#include <glib.h>
#ifndef __MU_DATE_H__
#define __MU_DATE_H__
G_BEGIN_DECLS
/**
* @addtogroup MuDate
* Date-related functions
* @{
*/
/**
* get a string for a given time_t
*
* mu_date_str_s returns a ptr to a static buffer,
* while mu_date_str returns dynamically allocated
* memory that must be freed after use.
*
* @param frm the format of the string (in strftime(3) format)
* @param t the time as time_t
*
* @return a string representation of the time; see above for what to
* do with it. Length is max. 128 bytes, inc. the ending \0. if the
* format is too long, the value will be truncated. in practice this
* should not happen.
*/
const char* mu_date_str_s (const char* frm, time_t t) G_GNUC_CONST;
char* mu_date_str (const char* frm, time_t t) G_GNUC_WARN_UNUSED_RESULT;
/**
* get a display string for a given time_t; if the given is less than
* 24h from the current time, we display the time, otherwise the date,
* using the preferred date/time for the current locale
*
* mu_str_display_date_s returns a ptr to a static buffer,
*
* @param t the time as time_t
*
* @return a string representation of the time/date
*/
const char* mu_date_display_s (time_t t);
G_END_DECLS
#endif /*__MU_DATE_H__*/

View File

@ -33,7 +33,6 @@
#include "utils/mu-utils.hh" #include "utils/mu-utils.hh"
#include "utils/mu-error.hh" #include "utils/mu-error.hh"
#include "utils/mu-str.h" #include "utils/mu-str.h"
#include "utils/mu-date.h"
using namespace Mu; using namespace Mu;
@ -197,23 +196,22 @@ print_header(const MuConfigFormat format)
static void static void
each_contact_bbdb(const std::string& email, const std::string& name, time_t tstamp) each_contact_bbdb(const std::string& email, const std::string& name, time_t tstamp)
{ {
char *fname, *lname, *now, *timestamp; char *fname, *lname;
fname = guess_first_name(name.c_str()); fname = guess_first_name(name.c_str());
lname = guess_last_name(name.c_str()); lname = guess_last_name(name.c_str());
now = mu_date_str("%Y-%m-%d", time(NULL));
timestamp = mu_date_str("%Y-%m-%d", tstamp); const auto now{time_to_string("%Y-%m-%d", time(NULL))};
const auto timestamp{time_to_string("%Y-%m-%d", tstamp)};
g_print("[\"%s\" \"%s\" nil nil nil nil (\"%s\") " g_print("[\"%s\" \"%s\" nil nil nil nil (\"%s\") "
"((creation-date . \"%s\") (time-stamp . \"%s\")) nil]\n", "((creation-date . \"%s\") (time-stamp . \"%s\")) nil]\n",
fname, fname,
lname, lname,
email.c_str(), email.c_str(),
now, now.c_str(),
timestamp); timestamp.c_str());
g_free(now);
g_free(timestamp);
g_free(fname); g_free(fname);
g_free(lname); g_free(lname);
} }

View File

@ -37,9 +37,9 @@
#include "utils/mu-util.h" #include "utils/mu-util.h"
#include "utils/mu-str.h" #include "utils/mu-str.h"
#include "utils/mu-date.h"
#include "mu-cmd.hh" #include "mu-cmd.hh"
#include "utils/mu-utils.hh"
using namespace Mu; using namespace Mu;
@ -305,7 +305,7 @@ flags_s(MessageFlags flags)
return buf; return buf;
} }
static const char* static std::string
display_field(MuMsg* msg, MuMsgFieldId mfid) display_field(MuMsg* msg, MuMsgFieldId mfid)
{ {
gint64 val; gint64 val;
@ -328,9 +328,8 @@ display_field(MuMsg* msg, MuMsgFieldId mfid)
return mu_msg_get_field_string(msg, mfid); return mu_msg_get_field_string(msg, mfid);
case MU_MSG_FIELD_TYPE_TIME_T: case MU_MSG_FIELD_TYPE_TIME_T:
val = mu_msg_get_field_numeric(msg, mfid); return time_to_string(
return mu_date_str_s("%c", (time_t)val); "%c", static_cast<::time_t>(mu_msg_get_field_numeric(msg, mfid)));
case MU_MSG_FIELD_TYPE_BYTESIZE: case MU_MSG_FIELD_TYPE_BYTESIZE:
val = mu_msg_get_field_numeric(msg, mfid); val = mu_msg_get_field_numeric(msg, mfid);
return mu_str_size_s((unsigned)val); return mu_str_size_s((unsigned)val);
@ -414,7 +413,8 @@ output_plain_fields(MuMsg* msg, const char* fields, gboolean color, gboolean thr
else { else {
ansi_color_maybe(mfid, color); ansi_color_maybe(mfid, color);
nonempty += mu_util_fputs_encoded(display_field(msg, mfid), stdout); nonempty += mu_util_fputs_encoded(display_field(msg, mfid).c_str(),
stdout);
ansi_reset_maybe(mfid, color); ansi_reset_maybe(mfid, color);
} }
} }

View File

@ -38,7 +38,6 @@
#include "utils/mu-util.h" #include "utils/mu-util.h"
#include "utils/mu-str.h" #include "utils/mu-str.h"
#include "utils/mu-date.h"
#include "utils/mu-error.hh" #include "utils/mu-error.hh"
@ -164,8 +163,10 @@ view_msg_plain(MuMsg* msg, const MuConfig* opts)
print_field("Bcc", mu_msg_get_bcc(msg), color); print_field("Bcc", mu_msg_get_bcc(msg), color);
print_field("Subject", mu_msg_get_subject(msg), color); print_field("Subject", mu_msg_get_subject(msg), color);
if ((date = mu_msg_get_date(msg))) if ((date = mu_msg_get_date(msg))) {
print_field("Date", mu_date_str_s("%c", date), color); const auto dstr{time_to_string("%c", date)};
print_field("Date", dstr.c_str(), color);
}
if ((lst = mu_msg_get_tags(msg))) { if ((lst = mu_msg_get_tags(msg))) {
gchar* tags; gchar* tags;