web-dev-qa-db-fra.com

D'où viennent les 75 secondes supplémentaires?

Lors de la rédaction de tests unitaires sur une calculatrice du jour Julien, j’ai constaté que les dates antérieures au 2 décembre 1847 étaient mal initialisées par NSDate. Ils semblent avoir 75 secondes ajoutées. Je n'ai rien trouvé qui indique la date (ce qui est bien après la date butoir du calendrier grégorien). Est-ce un bug ou y at-il un ajustement du calendrier historique que je n'ai pas rencontré?

int main(int argc, const char * argv[])
{
    @autoreleasepool {

        NSCalendar *cal = [NSCalendar currentCalendar];
        NSDateComponents *dateComps = [NSDateComponents new];
        dateComps.year = 1847;
        dateComps.month = 12;
        dateComps.day    = 1;
        NSDate *d1 = [cal dateFromComponents:dateComps];
        NSLog(@"d1 = %@", d1);

        dateComps = [NSDateComponents new];
        dateComps.year = 1847;
        dateComps.month = 12;
        dateComps.day    = 2;
        NSDate *d2 = [cal dateFromComponents:dateComps];
        NSLog(@"d2 = %@", d2);
    }
    return 0;
}

Sortie:

d1 = 1847-12-01 00:01:15 +0000

d2 = 1847-12-02 00:00:00 +0000

45
Vince O'Sullivan

Selon http://www.timeanddate.com/worldclock/clockchange.html?n=136&year=1847 , il y avait un décalage de 75 secondes à ce moment-là.

À Londres, lorsque l'heure locale était sur le point d'arriver à minuit le mercredi 1 er décembre 1847, l'heure était avancée au mercredi 1er décembre 1847 à 12 h 01 min 15 s.

92
Richard Krajunus

En réponse à le message de Richard Krajunus , voici quelques informations supplémentaires de la base de données zoneinfo utilisées par la plupart des ordinateurs pour suivre ces types de modifications:

# From Paul Eggert (1993-11-18):
#
# Howse writes that Britain was the first country to use standard time.
# The railways cared most about the inconsistencies of local mean time,
# and it was they who forced a uniform time on the country.
# The original idea was credited to Dr. William Hyde Wollaston (1766-1828)
# and was popularized by Abraham Follett Osler (1808-1903).
# The first railway to adopt London time was the Great Western Railway
# in November 1840; other railways followed suit, and by 1847 most
# (though not all) railways used London time.  On 1847-09-22 the
# Railway Clearing House, an industry standards body, recommended that GMT be
# adopted at all stations as soon as the General Post Office permitted it.
# The transition occurred on 12-01 for the L&NW, the Caledonian,
# and presumably other railways; the January 1848 Bradshaw's lists many
# railways as using GMT.  By 1855 the vast majority of public
# clocks in Britain were set to GMT (though some, like the great clock
# on Tom Tower at Christ Church, Oxford, were fitted with two minute hands,
# one for local time and one for GMT).  The last major holdout was the legal
# system, which stubbornly stuck to local time for many years, leading
# to oddities like polls opening at 08:13 and closing at 16:13.
# The legal system finally switched to GMT when the Statutes (Definition
# of Time) Act took effect; it received the Royal Assent on 1880-08-02.
#
# In the tables below, we condense this complicated story into a single
# transition date for London, namely 1847-12-01.  We don't know as much
# about Dublin, so we use 1880-08-02, the legal transition time.

Désolé, je n'ai pas pu répondre en utilisant un commentaire dans ce fil; StackOverflow ne me considère pas encore digne de cela.

22
Ricky Romero

Est-ce un bug ou existe-t-il un ajustement du calendrier historique que je n'ai pas rencontré?

À plusieurs reprises, le calendrier a été ... corrigé dans le passé.

Vérifiez les sections "adoption" des articles de Wikipédia pour Julian et Gregorian calendriers. 

Toutefois, l'instance NSDate doit toujours indiquer la date correcte pour le fuseau horaire avec lequel elle a été initialisée.

1
greymouser

NSDateComponents utilisent votre fuseau horaire local. Essayez de régler le fuseau horaire sur UTC?

NSCalendar *cal = [NSCalendar currentCalendar];
NSDateComponents *dateComps = [NSDateComponents new];
dateComps.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"UTC"];
dateComps.year = 1847;
dateComps.month = 12;
dateComps.day    = 1;
NSDate *d1 = [cal dateFromComponents:dateComps];
NSLog(@"d1 = %@", d1);

dateComps = [NSDateComponents new];
dateComps.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"UTC"];
dateComps.year = 1847;
dateComps.month = 12;
dateComps.day    = 2;
NSDate *d2 = [cal dateFromComponents:dateComps];
NSLog(@"d2 = %@", d2);

[19875:60b] d1 = 1847-12-01 00:00:00 +0000
[19875:60b] d2 = 1847-12-02 00:00:00 +0000
0
Eugene