473,378 Members | 1,321 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

UTC string -> time_t

Hi,

this is probably quite easy...

How do I convert a UTC string into a time_t?

eg. "2007-12-18 13:37:26" - a time_t.

Now FAQ 13.3 says use mktime() to convert a struct tm into
a time_t or you have to use some non-standard thing to parse the
string.
Assume I can parse the string and build a struct tm, how can I turn
it
into a time_t?

mktime() works on *local time* so it is going to apply the timezone
change
(the incoming string may have come from another timezone).

--
Nick Keighley
Dec 18 '07 #1
7 5978
On 18 Dec, 13:41, Nick Keighley <nick_keighley_nos...@hotmail.com>
wrote:
Hi,

this is probably quite easy...

How do I convert a UTC string into a time_t?

eg. "2007-12-18 13:37:26" - a time_t.

Now FAQ 13.3 says use mktime() to convert a struct tm into
a time_t or you have to use some non-standard thing to parse the
string.
Assume I can parse the string and build a struct tm, how can I turn
it
into a time_t?

mktime() works on *local time* so it is going to apply the timezone
change
(the incoming string may have come from another timezone).
to save anyone the trouble of answering it looks like the way to
go is to calculate the difference between local time and UTC
by using difftime() on the results of localtime() and gmtime().
Adjusting the input value in struct tm then using mktime().

eek!
--
Nick Keighley

Dec 18 '07 #2
Nick Keighley wrote:
On 18 Dec, 13:41, Nick Keighley <nick_keighley_nos...@hotmail.com>
wrote:
>Hi,

this is probably quite easy...

How do I convert a UTC string into a time_t?

eg. "2007-12-18 13:37:26" - a time_t.

Now FAQ 13.3 says use mktime() to convert a struct tm into
a time_t or you have to use some non-standard thing to parse the
string.
Assume I can parse the string and build a struct tm, how can I turn
it
into a time_t?

mktime() works on *local time* so it is going to apply the timezone
change
(the incoming string may have come from another timezone).

to save anyone the trouble of answering it looks like the way to
go is to calculate the difference between local time and UTC
by using difftime() on the results of localtime() and gmtime().
Adjusting the input value in struct tm then using mktime().
difftime() operates on time_t values, not on the
struct tm values produced by localtime() and mktime().
Still, you can inspect the elements of the struct tm
objects to get the offset in minutes.

The tricky part is that the difference varies with,
er, time. You can eliminate the seasonal variation (if
any) by setting the tm_isdst member to zero, but that
still leaves statutory variations unaccounted for. For
example, the Venezuela-to-UTC offset today is not the
same as it was two weeks ago. (True, the computer
systems' time services may not have caught up with the
change yet, but once they do they should give different
UTC offsets for 2007-12-08 and 2007-12-10.)

The only fully-portable approach I can think of is
to use both localtime() and gmtime() on the same time_t
value to get an initial estimate of the offset. Then
build a struct tm with the desired time, fudge it by the
estimated offset, call mktime() to get a time_t, and run
that time_t through gmtime(). If the result matches the
(un-fudged) original, you're done. Otherwise, adjust
the offset and try again.

It's a Darn Shame the standard library does not
include mkgmtime().

--
Er*********@sun.com
Dec 18 '07 #3
Eric Sosman said:

<snip>
It's a Darn Shame the standard library does not
include mkgmtime().
<shrugI just use mktime, which does precisely the same thing as far as
I'm concerned. :-)

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Dec 18 '07 #4
Richard Heathfield wrote:
Eric Sosman said:

<snip>
>It's a Darn Shame the standard library does not include mkgmtime().

<shrugI just use mktime, which does precisely the same thing as
far as I'm concerned. :-)
Works for anyone. Set your system time to GMT. If you don't live
there you can add or subtract some number. It doesn't require
values larger than 13 (or 24 for the result).

--
Merry Christmas, Happy Hanukah, Happy New Year
Joyeux Noel, Bonne Annee.
Chuck F (cbfalconer at maineline dot net)
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account from http://www.teranews.com

Dec 20 '07 #5
CBFalconer wrote:
Richard Heathfield wrote:
>Eric Sosman said:

<snip>
>>It's a Darn Shame the standard library does not include mkgmtime().
<shrugI just use mktime, which does precisely the same thing as
far as I'm concerned. :-)

Works for anyone. Set your system time to GMT. If you don't live
there you can add or subtract some number. It doesn't require
values larger than 13 (or 24 for the result).
However, the method for setting the system time to GMT is
implementation-defined.
Dec 20 '07 #6
James Kuyper said:

<snip>
7.23.1p1:
"The local time zone and Daylight Saving Time are
implementation-defined."

If the local time zone is settable, I don't see how the implementation
could properly define it without describing how to set it.
Borland's Turbo C conformance docs read, for the C90 equivalent of the
above: "Defined as local PC time and date."

Perfectly adequate definition, yet with no mention whatsoever of how to set
the time zone.
If it's not settable, then it's a non-issue.
I think it's a non-issue anyway. :-)

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Dec 20 '07 #7
On Dec 18, 5:41*am, Nick Keighley <nick_keighley_nos...@hotmail.com>
wrote:
Hi,

this is probably quite easy...

How do I convert a UTC string into a time_t?

eg. "2007-12-18 13:37:26" *-*a time_t.

Now FAQ 13.3 says use mktime() to convert a struct tm into
a time_t or you have to use some non-standard thing to parse the
string.
Assume I can parse the string and build a struct tm, how can I *turn
it
into a time_t?

mktime() works on *local time* so it is going to apply the timezone
change
(the incoming string may have come from another timezone).
I recommend:
http://www.twinsun.com/tz/tz-link.htm

The PostgreSQL code base is Berkeley licensed and has date/time
manipulation routines to do just about everything you can imagine.
All C too (no C++ or assembly).
http://www.postgresql.org/
They have a version of libtz incorporated into PostgreSQL directly,
also.
Dec 21 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: Krakatioison | last post by:
My sites navigation is like this: http://www.newsbackup.com/index.php?n=000000000040900000 , depending on the variable "n" (which is always a number), it will take me anywhere on the site......
5
by: Stu Cazzo | last post by:
I have the following: String myStringArray; String myString = "98 99 100"; I want to split up myString and put it into myStringArray. If I use this: myStringArray = myString.split(" "); it...
9
by: John F Dutcher | last post by:
I use code like the following to retrieve fields from a form: recd = recd.append(string.ljust(form.getfirst("lname",' '),15)) recd.append(string.ljust(form.getfirst("fname",' '),15)) etc.,...
10
by: Angus Leeming | last post by:
Hello, Could someone explain to me why the Standard conveners chose to typedef std::string rather than derive it from std::basic_string<char, ...>? The result of course is that it is...
2
by: Andrew | last post by:
I have written two classes : a String Class based on the book " C++ in 21 days " and a GenericIpClass listed below : file GenericStringClass.h // Generic String class
29
by: zoro | last post by:
Hi, I am new to C#, coming from Delphi. In Delphi, I am using a 3rd party string handling library that includes some very useful string functions, in particular I'm interested in BEFORE (return...
2
by: Badass Scotsman | last post by:
Hello, Using VB and ASP,NET I would like to be able to search a STRING for a smaller STRING within, based on the characters which appear before and after. For example: String1 = " That was...
15
by: morleyc | last post by:
Hi, i would like to remove a number of characters from my string (\t \r \n which are throughout the string), i know regex can do this but i have no idea how. Any pointers much appreciated. Chris
11
by: ramu | last post by:
Hi, Suppose I have a string like this: "I have a string \"and a inner string\\\" I want to remove space in this string but not in the inner string" In the above string I have to remove...
8
by: drjay1627 | last post by:
hello, This is my 1st post here! *welcome drjay* Thanks! I look answering questions and getting answers to other! Now that we got that out of the way. I'm trying to read in a string and...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.