util.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/isofs/util.c
  3.  */
  4. #include <linux/time.h>
  5. #include <linux/iso_fs.h>
  6. /* 
  7.  * We have to convert from a MM/DD/YY format to the Unix ctime format.
  8.  * We have to take into account leap years and all of that good stuff.
  9.  * Unfortunately, the kernel does not have the information on hand to
  10.  * take into account daylight savings time, but it shouldn't matter.
  11.  * The time stored should be localtime (with or without DST in effect),
  12.  * and the timezone offset should hold the offset required to get back
  13.  * to GMT.  Thus  we should always be correct.
  14.  */
  15. int iso_date(char * p, int flag)
  16. {
  17. int year, month, day, hour, minute, second, tz;
  18. int crtime, days, i;
  19. year = p[0] - 70;
  20. month = p[1];
  21. day = p[2];
  22. hour = p[3];
  23. minute = p[4];
  24. second = p[5];
  25. if (flag == 0) tz = p[6]; /* High sierra has no time zone */
  26. else tz = 0;
  27. if (year < 0) {
  28. crtime = 0;
  29. } else {
  30. int monlen[12] = {31,28,31,30,31,30,31,31,30,31,30,31};
  31. days = year * 365;
  32. if (year > 2)
  33. days += (year+1) / 4;
  34. for (i = 1; i < month; i++)
  35. days += monlen[i-1];
  36. if (((year+2) % 4) == 0 && month > 2)
  37. days++;
  38. days += day - 1;
  39. crtime = ((((days * 24) + hour) * 60 + minute) * 60)
  40. + second;
  41. /* sign extend */
  42. if (tz & 0x80)
  43. tz |= (-1 << 8);
  44. /* 
  45.  * The timezone offset is unreliable on some disks,
  46.  * so we make a sanity check.  In no case is it ever
  47.  * more than 13 hours from GMT, which is 52*15min.
  48.  * The time is always stored in localtime with the
  49.  * timezone offset being what get added to GMT to
  50.  * get to localtime.  Thus we need to subtract the offset
  51.  * to get to true GMT, which is what we store the time
  52.  * as internally.  On the local system, the user may set
  53.  * their timezone any way they wish, of course, so GMT
  54.  * gets converted back to localtime on the receiving
  55.  * system.
  56.  *
  57.  * NOTE: mkisofs in versions prior to mkisofs-1.10 had
  58.  * the sign wrong on the timezone offset.  This has now
  59.  * been corrected there too, but if you are getting screwy
  60.  * results this may be the explanation.  If enough people
  61.  * complain, a user configuration option could be added
  62.  * to add the timezone offset in with the wrong sign
  63.  * for 'compatibility' with older discs, but I cannot see how
  64.  * it will matter that much.
  65.  *
  66.  * Thanks to kuhlmav@elec.canterbury.ac.nz (Volker Kuhlmann)
  67.  * for pointing out the sign error.
  68.  */
  69. if (-52 <= tz && tz <= 52)
  70. crtime -= tz * 15 * 60;
  71. }
  72. return crtime;
  73. }