datetime.c 3.12 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* datetime.c - Module for common datetime function.  */
/*
 *  GRUB  --  GRand Unified Bootloader
 *  Copyright (C) 2008  Free Software Foundation, Inc.
 *
 *  GRUB is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  GRUB is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <grub/datetime.h>
21
#include <grub/i18n.h>
22

23
static const char *const grub_weekday_names[] =
24
{
25 26 27 28 29 30 31
  N_("Sunday"),
  N_("Monday"),
  N_("Tuesday"),
  N_("Wednesday"),
  N_("Thursday"),
  N_("Friday"),
  N_("Saturday"),
32 33 34 35 36
};

int
grub_get_weekday (struct grub_datetime *datetime)
{
37
  unsigned a, y, m;
38

39 40 41 42
  if (datetime->month <= 2)
    a = 1;
  else
    a = 0;
43 44 45 46 47 48
  y = datetime->year - a;
  m = datetime->month + 12 * a - 2;

  return (datetime->day + y + y / 4 - y / 100 + y / 400 + (31 * m / 12)) % 7;
}

49
const char *
50 51
grub_get_weekday_name (struct grub_datetime *datetime)
{
52
  return _ (grub_weekday_names[grub_get_weekday (datetime)]);
53 54 55 56 57
}

#define SECPERMIN 60
#define SECPERHOUR (60*SECPERMIN)
#define SECPERDAY (24*SECPERHOUR)
58 59
#define DAYSPERYEAR 365
#define DAYSPER4YEARS (4*DAYSPERYEAR+1)
60 61 62 63 64 65


void
grub_unixtime2datetime (grub_int32_t nix, struct grub_datetime *datetime)
{
  int i;
66 67
  grub_uint8_t months[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  /* In the period of validity of unixtime all years divisible by 4
68
     are bissextile*/
69
  /* Convenience: let's have 3 consecutive non-bissextile years
70 71 72 73 74 75
     at the beginning of the counting date. So count from 1901. */
  int days_epoch;
  /* Number of days since 1st Januar, 1901.  */
  unsigned days;
  /* Seconds into current day.  */
  unsigned secs_in_day;
76 77
  /* Transform C divisions and modulos to mathematical ones */
  if (nix < 0)
78 79 80 81 82
    days_epoch = -(((unsigned) (SECPERDAY-nix-1)) / SECPERDAY);
  else
    days_epoch = ((unsigned) nix) / SECPERDAY;
  secs_in_day = nix - days_epoch * SECPERDAY;
  days = days_epoch + 69 * DAYSPERYEAR + 17;
83

84 85
  datetime->year = 1901 + 4 * (days / DAYSPER4YEARS);
  days %= DAYSPER4YEARS;
86 87
  /* On 31st December of bissextile years 365 days from the beginning
     of the year elapsed but year isn't finished yet */
88
  if (days / DAYSPERYEAR == 4)
89 90
    {
      datetime->year += 3;
91
      days -= 3*DAYSPERYEAR;
92 93 94
    }
  else
    {
95 96
      datetime->year += days / DAYSPERYEAR;
      days %= DAYSPERYEAR;
97
    }
98
  for (i = 0; i < 12
99 100 101 102
	 && days >= (i==1 && datetime->year % 4 == 0
		      ? 29 : months[i]); i++)
    days -= (i==1 && datetime->year % 4 == 0
			    ? 29 : months[i]);
103
  datetime->month = i + 1;
104 105 106 107 108
  datetime->day = 1 + days;
  datetime->hour = (secs_in_day / SECPERHOUR);
  secs_in_day %= SECPERHOUR;
  datetime->minute = secs_in_day / SECPERMIN;
  datetime->second = secs_in_day % SECPERMIN;
109
}