10 Feb 21 09:56, you wrote to Kai Richter:
It's just a simple bug ...
I suspect the patch below fixes this, but I've not tested it.
It's also necessary to verify it doesn't break when rescanning *.MSG and JAM bases.
I tested it with a JAM base and it still works. But it turned out a
rescan from a JAM base also modifies time stamps:
Original:
Date and time : 09 Feb 21 06:31:33
After rescan from JAM:
Date and time : 09 Feb 21 06:31:32
Which means Squish can be fixed, but JAM has the same problem (I tested JAM with hpt from github master without any patch).
Maybe a problem/bug within SMAPI (JAM jammed into the Squish API)?
14 Feb 21 11:28, you wrote to me:*)(msg->> __ftsc_date));
I tested it with a JAM base and it still works. But it turned out a
rescan from a JAM base also modifies time stamps:
Original:
Date and time : 09 Feb 21 06:31:33
After rescan from JAM:
Date and time : 09 Feb 21 06:31:32
Which means Squish can be fixed, but JAM has the same problem (I
tested JAM with hpt from github master without any patch).
Maybe a problem/bug within SMAPI (JAM jammed into the Squish API)?
api_jam.c:JamReadMsg() has this:
scombo = (SCOMBO *)(&(msg->date_written));
scombo = TmDate_to_DosDate(s_time, scombo);
/* ftsdate = msg->__ftsc_date; */
ftsdate = (unsigned char *)sc_time(scombo, (char
But maybe the correct code should be:
if (*msg->__ftsc_date)
{
ftsdate = msg->__ftsc_date;
}
else
{
scombo = (SCOMBO *)(&(msg->date_written));
scombo = TmDate_to_DosDate(s_time, scombo);
ftsdate = (unsigned char *)sc_time(scombo, (char *)(msg->__ftsc_date)); }
api_jam.c:JamReadMsg() has this:
scombo = (SCOMBO *)(&(msg->date_written));
scombo = TmDate_to_DosDate(s_time, scombo);
/* ftsdate = msg->__ftsc_date; */
ftsdate = (unsigned char *)sc_time(scombo, (char *)(msg->__ftsc_date));
But maybe the correct code should be:
if (*msg->__ftsc_date)
{
ftsdate = msg->__ftsc_date;
}
else
{
scombo = (SCOMBO *)(&(msg->date_written));
scombo = TmDate_to_DosDate(s_time, scombo);
ftsdate = (unsigned char *)sc_time(scombo, (char *)(msg->__ftsc_date));
}
But maybe the correct code should be:
if (*msg->__ftsc_date)
{
ftsdate = msg->__ftsc_date;
}
else
{
scombo = (SCOMBO *)(&(msg->date_written));
scombo = TmDate_to_DosDate(s_time, scombo);
ftsdate = (unsigned char *)sc_time(scombo, (char
*)(msg->__ftsc_date)); }
Mhh, a JAM message base doesn't have an __ftsc_date field, I don't understand this piece of the code.
dosdate->msg_st.time.mm = tmdate->tm_min;
dosdate->msg_st.time.ss = tmdate->tm_sec >> 1;
^^^^^^^^^^^^
}
return dosdate;
}
AFAIK the JAM format doesn't use DOS Time at all. It seems to be an unnecessary lossy conversion.
"ftsdate" variable is assigned but it is never used, so I've already commented it out but not in master branch yet.
Scott's idea of using his lossy timestamps to recreate XMSG->__ftsc_date is nonsense and as you know only has a 50/50 chance of working accurately.
Now, the Squish format stupidly uses those lossy timestamps but there's
no reason the whole API has to. Conceivably that could be fixed with a
bit of work so as not to corrupt Squish bases.
In the mean time JAM's msgh->Hdr.DateWritten is a 32-bit unsigned
integer. (Fortunately being unsigned it will wrap around in 2106, not in 2038.)
The JAM spec says:
"An ulong representing the number of seconds since midnight, January 1, 1970."
Presumably that's 1970-01-01 00:00 UTC, not local time.
That value is then fed into mktime() to return the number of seconds
since 1970-01-01, then a timezone offset is added with gettz().
But why is gettz() called every time JamWriteMsg() is called? Wouldn't that mean HPT adds the local timezone to the DateWritten field every time it tosses a message to a JAM base? That's a bug, isn't it? Unless I'm reading the code wrong.[...]
api_jam.c also hints at supporting the TZUTC kludge, but it does nothing to calculate dates with it. It just stores it as a JAM subfield because the spec says it can.
Scott's idea of using his lossy timestamps to recreate
XMSG->__ftsc_date is nonsense and as you know only has a 50/50
chance of working accurately.
I didn't think he expected it to work accurately, more like it is not relevant to preserve the exact time and 2 second resolution is good enough. The dupe checker in Squish also uses a 2 second granularity.
Now, the Squish format stupidly uses those lossy timestamps but
there's no reason the whole API has to. Conceivably that could be
fixed with a bit of work so as not to corrupt Squish bases.
Not sure if I understand. What kind of potential corruption do you have
in mind?
In the mean time JAM's msgh->Hdr.DateWritten is a 32-bit unsigned
integer. (Fortunately being unsigned it will wrap around in 2106,
not in 2038.)
The JAM spec says:
"An ulong representing the number of seconds since midnight,
January 1, 1970."
Presumably that's 1970-01-01 00:00 UTC, not local time.
I don't think it's meant to be UTC. From the JAM spec:
(1) All timestamps created locally (i.e. those not imported from
other systems) are stored in local time.
The DateWritten field is also used for imported messages. Why should the time ever be converted to UTC? Wouldn't that make everything more complicated? UNIX time in JAM is not a real Unix timestamp, more UNIX-style (UNIXish).
It's been so long since I used the original SquishMail (ie. squish.exe) that I don't recall if rescans were a supported feature.
("squish.exe rescan 3:633/267 fidosoft.husky" maybe?)
[...]The JAM spec says:
"An ulong representing the number of seconds since midnight,
January 1, 1970."
Presumably that's 1970-01-01 00:00 UTC, not local time.
I don't think it's meant to be UTC. From the JAM spec:
You could be right, but at the very least it's ambiguous since AFAIK the convention is for time_t on Linux/BSD be stored as UTC.
But it's necessary to work accurately if you're doing a rescan.
That's the whole point of this bug
The bug is that the normal scan and the rescan created different
DateTime.
I don't understand what you are doing but it looks like you do some re-invention. Isn't it easier to look how the scan.c does the export and use the same code for the rescan?
Isn't it easier to look how the scan.c does the export and use the
same code for the rescan?
To summarise:
"toss" shouldn't need the message base, instead just memcpy()ing the ftscdate field between .PKTs. This is how PassThru areas work but
should also be true for non-PassThru.
Isn't it easier to look how the scan.c does the export and use the
same code for the rescan?
To summarise:
"toss" shouldn't need the message base, instead just memcpy()ing
the ftscdate field between .PKTs. This is how PassThru areas work
but should also be true for non-PassThru.
Thanks, i hadn't that in my mind. I thought htp toss would toss into the messagebase only. To be honest i never paid attention at which run the downlink packages were build. Oh wait, are you talking about toss.c the code but not the function hpt toss?
Sysop: | Gate Keeper |
---|---|
Location: | Shelby, NC |
Users: | 785 |
Nodes: | 20 (0 / 20) |
Uptime: | 212:40:31 |
Calls: | 11,917 |
Calls today: | 3 |
Files: | 5,294 |
D/L today: |
65 files (53,361K bytes) |
Messages: | 553,389 |