1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
|
/*
* $Id: arjtypes.c,v 1.9 2005/06/23 10:00:54 andrew_belov Exp $
* ---------------------------------------------------------------------------
* This module provides some multiplatform property types which cover both DOS
* (as internally involved in ARJ) and UNIX requirements.
*
*/
#include <time.h>
#include "arj.h"
DEBUGHDR(__FILE__) /* Debug information block */
/* Timestamp macros */
#define get_tx(m,d,h,n) (((unsigned long)(m)<<21)+((unsigned long)(d)<<16)+((unsigned long)(h)<<11)+((n)<<5))
#define get_tstamp(y,m,d,h,n,s) ((((unsigned long)((y)-1980))<<25)+get_tx((m),(d),(h),(n))+((s)/2))
#define ts_year(ts) ((unsigned int)(((ts)>>25)&0x7f)+1980)
#define ts_month(ts) ((unsigned int)((ts)>>21)&0x0f) /* 1..12 means Jan..Dec */
#define ts_day(ts) ((unsigned int)((ts)>>16)&0x1f) /* 1..31 means 1st..31st */
#define ts_hour(ts) ((unsigned int)((ts)>>11)&0x1f)
#define ts_min(ts) ((unsigned int)((ts)>>5)&0x3f)
#define ts_sec(ts) ((unsigned int)(((ts)&0x1f)*2))
static char monthdays[12]={31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
/* Q&D helper macro */
#define is_unix(host_os) (host_os==OS_UNIX||host_os==OS_NEXT)
/* Timestamp storage structures */
#if SFX_LEVEL>=ARJSFX
static char time_list_format[]="%04u-%02u-%02u %02u:%02u:%02u";
#endif
/*
* File mode routines
*/
/* Parses a file mode specifier from the archive. The idea is to allow
creation of DOS attributes under UNIX, but no features exist for
DOS->UNIX conversion. */
void fm_store(struct file_mode *dest, int host_os, int mode)
{
if(host_os==OS_SPECIAL)
dest->dos=dest->native=mode;
if(is_unix(OS))
{
dest->native=mode;
dest->dos=FATTR_ARCH;
if(is_unix(OS)&&!(mode&FATTR_IWUSR))
dest->dos|=FATTR_RDONLY;
}
else /* Assume a DOS-style system */
dest->dos=dest->native=mode;
}
/* Retrieves a native file mode corresponding to the host OS */
unsigned int fm_native(struct file_mode *fm, int host_os)
{
return(is_unix(host_os)?fm->native:fm->dos);
}
/*
* Timestamp routines
*/
#ifdef LOCALTIME_WORKAROUND
/* Folds a timestamp into the range handled by LIBC routines, returning a
modified timestamp and a number of years to compensate. */
static unsigned int fold_timestamp(unsigned long *tt)
{
unsigned long v, d;
d=(unsigned long)(*tt)/86400;
if(d>=47482&&d<=47846)
{
/* 2100 -> 1993 */
*tt-=39081*86400UL;
return(2100-1993);
}
else if(d>=47847)
{
/* 2101... -> 2005... */
*tt-=35063*86400UL;
return(2101-2005);
}
else
{
/* Wrap into 28-year cycles (1970...1997) */
v=((unsigned long)*tt)/((28*365+7)*86400);
*tt=((unsigned long)*tt)%((28*365+7)*86400);
return(v*28);
}
/* NOTREACHED */
}
/* The ARJ workaround for localtime */
struct tm *arj_localtime(const time_t *ts)
{
unsigned int v;
unsigned long tt;
struct tm *rc;
tt=*ts;
v=fold_timestamp(&tt);
rc=localtime((time_t *)&tt);
if(rc!=NULL)
rc->tm_year+=v;
return(rc);
}
#endif
/* Returns 1 if there's a leap year */
static int isleapyear(int year)
{
if(year%400==0)
return(1);
if(year%100==0)
return(0);
if(year%4==0)
return(1);
return(0);
}
/* Converts a UNIX timestamp to the DOS style */
static unsigned long ts_unix2dos(const long ts)
{
struct tm *stm;
stm=arj_localtime((time_t*)&ts);
return(get_tstamp(stm->tm_year+1900, stm->tm_mon+1, stm->tm_mday,
stm->tm_hour, stm->tm_min, stm->tm_sec));
}
/* Creates a Unix timestamp from the given date and time */
static unsigned long mk_unixtime(int y, int m, int d, int hh, int mm, int ss)
{
unsigned long u=0, ts;
unsigned int i, v;
/* Clash with NetBSD/x86-64 patch: leaving rc as unsigned long still permits
to escape the year 2038 problem in favor of year 2106 problem, while a
dedicated time_t structure can be expected as a 64-bit value on relevant
platforms -- ASR fix 25/01/2004 */
unsigned long rc;
time_t tt;
long tzshift, shiftd1, shiftd2;
struct tm *stm;
if(y>=2001)
{
i=y-2001;
u=11323;
/* The following piece of code is rather paranoid in 16/32-bit world, where the
timestamps are limited to year 2108. */
#if defined(__32BIT__)||defined(TILED)
if(i>=400)
{
u+=1022679L*(i/400);
i%=400;
}
#endif
if(i>=100)
{
u+=36524L*(i/100);
i%=100;
}
u+=1461L*(i/4);
u+=365L*(i%4);
}
else if(y>=1973)
u=1096+(y-1973)/4*1461L+((y-1973)%4)*365L;
else
u=(y-1970)*365L;
for(i=1; i<m; i++)
{
u+=(int)monthdays[i-1];
if(i==2)
u+=isleapyear(y);
}
rc=86400*(unsigned long)(u+d-1)+(unsigned long)hh*3600+(unsigned long)mm*60+(unsigned long)ss;
stm=arj_localtime((const long *)&rc);
debug_assert(stm!=NULL); /* LIBCS.DLL returns NULL for unixtime beyond
0x7FFFFFFF */
tzshift=(long)stm->tm_hour*3600+(long)stm->tm_min*60;
shiftd1=stm->tm_mday;
ts=rc;
#ifdef LOCALTIME_WORKAROUND
v=fold_timestamp(&ts);
stm=gmtime((const long *)&ts);
debug_assert(stm!=NULL);
stm->tm_year+=v;
#else
stm=gmtime((const long *)&ts);
#endif
shiftd2=stm->tm_mday;
/* Local time overruns GMT, add 24 hours for safety */
if(shiftd1<shiftd2&&shiftd1==1&&shiftd2>=28)
tzshift+=86400;
else if(shiftd1>shiftd2&&shiftd1>=28&&shiftd2==1)
tzshift-=86400;
else if(shiftd1>shiftd2)
tzshift+=86400;
else if(shiftd1<shiftd2)
tzshift-=86400;
tzshift-=(long)stm->tm_hour*3600+(long)stm->tm_min*60;
tzshift%=86400;
/* Fix the timezone if it does not roll over the zero */
return((tzshift>0&&rc<tzshift)?rc:rc-tzshift);
}
/* Converts a DOS timestamp to the UNIX representation */
static unsigned long ts_dos2unix(unsigned long ts)
{
unsigned int y, m, d, hh, mm, ss;
if(ts==0)
return(0);
y=ts_year(ts);
m=ts_month(ts);
d=ts_day(ts);
hh=ts_hour(ts);
mm=ts_min(ts);
ss=ts_sec(ts);
/* TODO: These assertions must be replaced by run-time check for incorrect timestamps
like 31/15/2063 or 00/00/1980, since month array is 1...12 only. */
#ifdef DEBUG
debug_assert(m>=1&&m<=12);
debug_assert(d>=1&&d<=31);
#endif
return(mk_unixtime(y, m, d, hh, mm, ss));
}
/* Stores a timestamp */
void ts_store(struct timestamp *dest, int host_os, unsigned long value)
{
if(host_os==OS_SPECIAL)
dest->dos=dest->unixtime=value;
else if(is_unix(host_os))
{
dest->unixtime=value;
dest->dos=ts_unix2dos(value);
}
else
{
dest->dos=value;
dest->unixtime=ts_dos2unix(value);
}
}
/* Retrieves a native timestamp corresponding to the host OS */
unsigned long ts_native(struct timestamp *ts, int host_os)
{
return(is_unix(host_os)?ts->unixtime:ts->dos);
}
/* Compares two timestamps */
int ts_cmp(struct timestamp *ts1, struct timestamp *ts2)
{
unsigned long tsn1, tsn2;
tsn1=ts_native(ts1, OS);
tsn2=ts_native(ts2, OS);
if(tsn1<tsn2)
return(-1);
else if(tsn1==tsn2)
return(0);
else
return(1);
}
#if SFX_LEVEL>=ARJ||defined(REARJ)
/* Produces an ARJ timestamp from the given date */
void make_timestamp(struct timestamp *dest, int y, int m, int d, int hh, int mm, int ss)
{
dest->unixtime=mk_unixtime(y, m, d, hh, mm, ss);
dest->dos=ts_unix2dos(dest->unixtime);
}
#endif
#if SFX_LEVEL>=ARJSFX
/* Restores the given timestamp to character form */
void timestamp_to_str(char *str, struct timestamp *ts)
{
struct tm *stm;
stm=arj_localtime((time_t *)&ts->unixtime);
/* Workaround for a MS C v 7.0 CRT bug */
#if TARGET==DOS&&COMPILER==MSC&&_MSC_VER==700
if(stm->tm_year<70) /* 31 -> 101 */
stm->tm_year+=70;
#endif
sprintf(str, time_list_format, stm->tm_year+1900, stm->tm_mon+1, stm->tm_mday,
stm->tm_hour, stm->tm_min, stm->tm_sec);
}
#endif
|