summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-15 18:01:08 -0500
committerCarl Hetherington <cth@carlh.net>2014-05-15 18:01:08 -0500
commit979739e929103dd68f942238303a218296cc90d7 (patch)
tree88e1dcb15b0ec78a0ed7b32dad7c124a543d276e /src
parentc01716ccab4ddc5c026ee2a02ae3b367049362e3 (diff)
Fix tm_to_string to use local timezone on all platforms. Some comments.
Diffstat (limited to 'src')
-rw-r--r--src/kdm.cc3
-rw-r--r--src/util.cc36
-rw-r--r--src/util.h2
3 files changed, 21 insertions, 20 deletions
diff --git a/src/kdm.cc b/src/kdm.cc
index 4132b242..70109936 100644
--- a/src/kdm.cc
+++ b/src/kdm.cc
@@ -86,6 +86,9 @@ KDM::KDM (boost::filesystem::path kdm, boost::filesystem::path private_key)
RSA_free (rsa);
}
+/** @param not_valid_before KDM not-valid-before time in local time.
+ * @param not_valid_after KDM not-valid-after time in local time.
+ */
KDM::KDM (
shared_ptr<const CPL> cpl, shared_ptr<const Signer> signer, shared_ptr<const Certificate> recipient_cert,
boost::posix_time::ptime not_valid_before, boost::posix_time::ptime not_valid_after,
diff --git a/src/util.cc b/src/util.cc
index a668b7fc..4ac3685c 100644
--- a/src/util.cc
+++ b/src/util.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
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
@@ -27,6 +27,7 @@
#include <iomanip>
#include <boost/filesystem.hpp>
#include <boost/lexical_cast.hpp>
+#include <boost/date_time/c_local_time_adjustor.hpp>
#include <openssl/sha.h>
#include <libxml++/nodes/element.h>
#include <libxml++/document.h>
@@ -297,36 +298,33 @@ libdcp::base64_decode (string const & in, unsigned char* out, int out_length)
return N;
}
+/** @param tm Local time.
+ * @return String of the form 2014-04-02T18:05:23+04:00, where the UTC offset is derived
+ * from the current system time zone.
+ */
string
libdcp::tm_to_string (struct tm* tm)
{
char buffer[64];
strftime (buffer, 64, "%Y-%m-%dT%H:%M:%S", tm);
- int offset = 0;
+ /* Compute current UTC offset */
+ boost::posix_time::ptime const utc_now = boost::posix_time::second_clock::universal_time ();
+ boost::posix_time::ptime const now = boost::date_time::c_local_adjustor<boost::posix_time::ptime>::utc_to_local (utc_now);
-#ifdef LIBDCP_POSIX
- offset = tm->tm_gmtoff / 60;
-#else
- TIME_ZONE_INFORMATION tz;
- GetTimeZoneInformation (&tz);
- offset = tz.Bias;
-#endif
-
- return string (buffer) + utc_offset_to_string (offset);
+ return string (buffer) + utc_offset_to_string (now - utc_now);
}
-/** @param b Offset from UTC to local time in minutes.
+/** @param b Offset from UTC to local time.
* @return string of the form e.g. -01:00.
*/
string
-libdcp::utc_offset_to_string (int b)
+libdcp::utc_offset_to_string (boost::posix_time::time_duration b)
{
- bool const negative = (b < 0);
- b = negative ? -b : b;
-
- int const hours = b / 60;
- int const minutes = b % 60;
+ bool const negative = b.is_negative ();
+ if (negative) {
+ b = boost::posix_time::time_duration (-b.hours(), b.minutes(), 0, 0);
+ }
stringstream o;
if (negative) {
@@ -335,7 +333,7 @@ libdcp::utc_offset_to_string (int b)
o << "+";
}
- o << setw(2) << setfill('0') << hours << ":" << setw(2) << setfill('0') << minutes;
+ o << setw(2) << setfill('0') << b.hours() << ":" << setw(2) << setfill('0') << b.minutes();
return o.str ();
}
diff --git a/src/util.h b/src/util.h
index 2a6aae1b..94ee136a 100644
--- a/src/util.h
+++ b/src/util.h
@@ -82,7 +82,7 @@ extern void add_signer (xmlpp::Element* parent, CertificateChain const & certifi
extern int base64_decode (std::string const & in, unsigned char* out, int out_length);
extern std::string tm_to_string (struct tm *);
-extern std::string utc_offset_to_string (int);
+extern std::string utc_offset_to_string (boost::posix_time::time_duration);
extern std::string ptime_to_string (boost::posix_time::ptime);
extern FILE * fopen_boost (boost::filesystem::path, std::string);