Search in sources :

Example 1 with Time

use of com.zimbra.common.calendar.ZoneInfoParser.Time in project zm-mailbox by Zimbra.

the class ZoneInfo2iCalendar method toVTimeZoneComp.

/**
     * @param referenceDate
     * @param zline1 ZoneLine for 1st rule applicable after referenceDate
     * @param zline2 ZoneLine for 2nd rule applicable after referenceDate
     * @param obs1 Observances corresponding to zline1
     * @param vtzProps Properties to associate with the VTIMEZONE component
     * @param inDaylightTime  true if referenceDate falls within daylight time by the rules in zline1
     * @return best timezone or null if unable to determine one.
     */
private static VTimeZone toVTimeZoneComp(Calendar referenceDate, ZoneLine zline1, ZoneLine zline2, Observances obs1, PropertyList vtzProps, boolean inDaylightTime) {
    int hintYear = referenceDate.get(Calendar.YEAR);
    Observance obs4zl2;
    Time daylightOffset;
    Time standardOffset = zline2.getGmtOff();
    String tznameFormat = zline2.getAbbrevFormat();
    if (zline2.hasRule()) {
        RuleInfo rl2 = getRuleInfo(hintYear, zline2);
        daylightOffset = (null == rl2.daylight) ? standardOffset : addTimes(standardOffset, rl2.daylight.getSave());
        if (inDaylightTime) {
            obs4zl2 = toObservanceComp(hintYear, rl2.standard, true, /* isStandard */
            standardOffset, daylightOffset, tznameFormat);
            return toVTimeZoneComp(hintYear, new Observances(obs4zl2, obs1.daylight), vtzProps);
        } else {
            if (null == rl2.daylight) {
                return null;
            }
            obs4zl2 = toObservanceComp(hintYear, rl2.daylight, false, /* isStandard */
            standardOffset, daylightOffset, tznameFormat);
            return toVTimeZoneComp(hintYear, new Observances(obs1.std, obs4zl2), vtzProps);
        }
    } else if (zline2.hasSave()) {
        List<String> tokens = Lists.newArrayList();
        Until prevRuleEnd = zline1.getUntil();
        if (zline2.hasUntil()) {
            Until currRuleEnd = zline2.getUntil();
            if (null == currRuleEnd) {
                // Don't think this can happen
                return null;
            }
            String fromYear;
            if (prevRuleEnd != null) {
                fromYear = String.format("%d", prevRuleEnd.getYear());
            } else {
                fromYear = String.format("%d", hintYear);
            }
            String toYear = String.format("%d", currRuleEnd.getYear());
            // NAME
            tokens.add(getObservanceName(tznameFormat, null));
            // FROM
            tokens.add(fromYear);
            // TO
            tokens.add(toYear);
            // TYPE
            tokens.add("-");
            // IN
            tokens.add(ZoneInfoParser.Month.toString(currRuleEnd.getMonth()));
            // ON
            tokens.add(String.format("%s", currRuleEnd.getDay().toString()));
            // AT
            tokens.add(String.format("%s", currRuleEnd.getTime().toString()));
            // SAVE
            tokens.add(zline2.getSave().toString());
            // LETTER/S
            tokens.add("-");
            RuleLine newRule = pseudoZoneLineTokensToRuleLine(tokens, zline2);
            if (null == newRule) {
                return null;
            }
            daylightOffset = addTimes(standardOffset, zline2.getSave());
            obs4zl2 = toObservanceComp(hintYear, newRule, inDaylightTime, /* need the opposite */
            standardOffset, daylightOffset, tznameFormat);
            if (inDaylightTime) {
                return toVTimeZoneComp(hintYear, new Observances(obs4zl2, obs1.daylight), vtzProps);
            } else {
                return toVTimeZoneComp(hintYear, new Observances(obs1.std, obs4zl2), vtzProps);
            }
        } else {
            if (!inDaylightTime) {
                // Only reason for having a save but no until is if changing to standard time only?
                return null;
            }
            if (prevRuleEnd == null) {
                return null;
            }
            String fromYear = String.format("%d", prevRuleEnd.getYear());
            String toYear = "max";
            // NAME
            tokens.add(getObservanceName(tznameFormat, null));
            // FROM
            tokens.add(fromYear);
            // TO
            tokens.add(toYear);
            // TYPE
            tokens.add("-");
            // IN
            tokens.add(ZoneInfoParser.Month.toString(prevRuleEnd.getMonth()));
            // ON
            tokens.add(String.format("%s", prevRuleEnd.getDay().toString()));
            // AT
            tokens.add(String.format("%s", prevRuleEnd.getTime().toString()));
            // SAVE
            tokens.add(zline2.getSave().toString());
            // LETTER/S
            tokens.add("-");
            RuleLine newRule = pseudoZoneLineTokensToRuleLine(tokens, zline2);
            if (null == newRule) {
                return null;
            }
            daylightOffset = standardOffset;
            /* random value - fix later */
            ;
            obs4zl2 = toObservanceComp(hintYear, newRule, true, standardOffset, daylightOffset, tznameFormat);
            TzOffsetFrom stdOffsetFrom = (TzOffsetFrom) obs4zl2.getProperties().getProperty(Property.TZOFFSETFROM);
            TzOffsetTo stdOffsetTo = (TzOffsetTo) obs4zl2.getProperties().getProperty(Property.TZOFFSETTO);
            TzOffsetTo dlOffsetTo = (TzOffsetTo) obs1.daylight.getProperties().getProperty(Property.TZOFFSETTO);
            if (stdOffsetTo.equals(dlOffsetTo)) {
                // New standard time is same as current daylight time - just use observance.
                obs4zl2 = toStandardComp(zline2.getGmtOff(), tznameFormat);
                return toVTimeZoneComp(hintYear, new Observances(obs4zl2, null), vtzProps);
            }
            // Make sure that the zones are consistent with each other
            stdOffsetFrom.setOffset(dlOffsetTo.getOffset());
            TzOffsetFrom dlOffsetFrom = (TzOffsetFrom) obs1.daylight.getProperties().getProperty(Property.TZOFFSETFROM);
            dlOffsetFrom.setOffset(stdOffsetTo.getOffset());
            return toVTimeZoneComp(hintYear, new Observances(obs4zl2, obs1.daylight), vtzProps);
        }
    }
    return null;
}
Also used : TzOffsetFrom(net.fortuna.ical4j.model.property.TzOffsetFrom) TzOffsetTo(net.fortuna.ical4j.model.property.TzOffsetTo) Observance(net.fortuna.ical4j.model.component.Observance) RuleLine(com.zimbra.common.calendar.ZoneInfoParser.RuleLine) DateTime(net.fortuna.ical4j.model.DateTime) Time(com.zimbra.common.calendar.ZoneInfoParser.Time) PropertyList(net.fortuna.ical4j.model.PropertyList) List(java.util.List) ArrayList(java.util.ArrayList) ParameterList(net.fortuna.ical4j.model.ParameterList) Until(com.zimbra.common.calendar.ZoneInfoParser.Until)

Example 2 with Time

use of com.zimbra.common.calendar.ZoneInfoParser.Time in project zm-mailbox by Zimbra.

the class ZoneInfo2iCalendar method toObservances.

private static Observances toObservances(int hintYear, ZoneLine zline) {
    String tznameFormat = zline.getAbbrevFormat();
    if (!zline.hasRule()) {
        return new Observances(toStandardComp(addTimes(zline.getGmtOff(), zline.getSave()), tznameFormat), null);
    }
    RuleInfo ruleInfo = getRuleInfo(hintYear, zline);
    if ((null != ruleInfo.standard) && (null != ruleInfo.daylight)) {
        Time standardOffset = zline.getGmtOff();
        Time daylightOffset = addTimes(standardOffset, ruleInfo.daylight.getSave());
        return new Observances(toObservanceComp(hintYear, ruleInfo.standard, true, standardOffset, daylightOffset, tznameFormat), toObservanceComp(hintYear, ruleInfo.daylight, false, standardOffset, daylightOffset, tznameFormat));
    }
    return new Observances(toStandardComp(zline.getGmtOff(), tznameFormat), null);
}
Also used : DateTime(net.fortuna.ical4j.model.DateTime) Time(com.zimbra.common.calendar.ZoneInfoParser.Time)

Example 3 with Time

use of com.zimbra.common.calendar.ZoneInfoParser.Time in project zm-mailbox by Zimbra.

the class ZoneInfo2iCalendar method toObservanceComp.

private static Observance toObservanceComp(int hintYear, RuleLine rline, boolean isStandard, Time standardOffset, Time daylightOffset, String tznameFormat) {
    PropertyList props = new PropertyList();
    String tzname = getObservanceName(tznameFormat, rline);
    if (tzname != null) {
        props.add(new TzName(tzname));
    }
    Time at = rline.getAt();
    Time onset;
    switch(at.getType()) {
        case STANDARD_TIME:
            if (isStandard) {
                // We're moving from daylight time to standard time.  In iCalendar we want hh:mm:ss in
                // wall clock in the pre-transition time, so it's daylight time.
                // daylight = utc + daylight offset = (standard - standard offset) + daylight offset
                onset = addTimes(subtractTimes(at, standardOffset), daylightOffset);
            } else {
                // We're moving from standard time to daylight time.  In iCalendar we want hh:mm:ss in
                // wall clock in the pre-transition time, so it's standard time.  at is already in
                // standard time.
                onset = at;
            }
            break;
        case UTC_TIME:
            if (isStandard) {
                // We're moving from daylight time to standard time.  In iCalendar we want hh:mm:ss in
                // wall clock in the pre-transition time, so it's daylight time.
                // daylight = utc + daylightOffset.
                onset = addTimes(at, daylightOffset);
            } else {
                // We're moving from standard time to daylight time.  In iCalendar we want hh:mm:ss in
                // wall clock in the pre-transition time, so it's standard time.
                // standard = utc + standard offset.
                onset = addTimes(at, standardOffset);
            }
            break;
        default:
            // WALL_TIME
            // at is already in the iCalendar style.
            onset = at;
            break;
    }
    int hh = onset.getHour();
    int mm = onset.getMinute();
    int ss = onset.getSecond();
    if (hh >= 24) {
        // Hour should be between 0 and 23, but sometimes we can get 24:00:00 from the zoneinfo source.
        // Since hour part in iCalendar only allows 0-23, let's approximate any time with hour >= 24 to
        // 23:59:59.
        hh = 23;
        mm = 59;
        ss = 59;
    }
    // YYYYMMDD fixed to 16010101 (MS Outlook style)
    props.add(getDtStart(String.format("16010101T%02d%02d%02d", hh, mm, ss)));
    Time toOffset, fromOffset;
    if (isStandard) {
        toOffset = standardOffset;
        fromOffset = daylightOffset;
    } else {
        toOffset = daylightOffset;
        fromOffset = standardOffset;
    }
    props.add(new TzOffsetTo(new UtcOffset(getUtcOffset(toOffset))));
    props.add(new TzOffsetFrom(new UtcOffset(getUtcOffset(fromOffset))));
    int month = rline.getIn();
    StringBuilder rruleVal = new StringBuilder();
    rruleVal.append("FREQ=YEARLY;WKST=MO;INTERVAL=1;BYMONTH=").append(month).append(";");
    rruleVal.append(dayToICalRRulePart(hintYear, month, rline.getOn()));
    try {
        RRule rrule = new RRule(new ParameterList(), rruleVal.toString());
        props.add(rrule);
    } catch (ParseException e) {
    }
    if (isStandard) {
        return new Standard(props);
    } else {
        return new Daylight(props);
    }
}
Also used : TzName(net.fortuna.ical4j.model.property.TzName) RRule(net.fortuna.ical4j.model.property.RRule) DateTime(net.fortuna.ical4j.model.DateTime) Time(com.zimbra.common.calendar.ZoneInfoParser.Time) Standard(net.fortuna.ical4j.model.component.Standard) UtcOffset(net.fortuna.ical4j.model.UtcOffset) PropertyList(net.fortuna.ical4j.model.PropertyList) Daylight(net.fortuna.ical4j.model.component.Daylight) TzOffsetTo(net.fortuna.ical4j.model.property.TzOffsetTo) TzOffsetFrom(net.fortuna.ical4j.model.property.TzOffsetFrom) ParameterList(net.fortuna.ical4j.model.ParameterList) ParseException(java.text.ParseException) TZDataParseException(com.zimbra.common.calendar.ZoneInfoParser.TZDataParseException)

Aggregations

Time (com.zimbra.common.calendar.ZoneInfoParser.Time)3 DateTime (net.fortuna.ical4j.model.DateTime)3 ParameterList (net.fortuna.ical4j.model.ParameterList)2 PropertyList (net.fortuna.ical4j.model.PropertyList)2 TzOffsetFrom (net.fortuna.ical4j.model.property.TzOffsetFrom)2 TzOffsetTo (net.fortuna.ical4j.model.property.TzOffsetTo)2 RuleLine (com.zimbra.common.calendar.ZoneInfoParser.RuleLine)1 TZDataParseException (com.zimbra.common.calendar.ZoneInfoParser.TZDataParseException)1 Until (com.zimbra.common.calendar.ZoneInfoParser.Until)1 ParseException (java.text.ParseException)1 ArrayList (java.util.ArrayList)1 List (java.util.List)1 UtcOffset (net.fortuna.ical4j.model.UtcOffset)1 Daylight (net.fortuna.ical4j.model.component.Daylight)1 Observance (net.fortuna.ical4j.model.component.Observance)1 Standard (net.fortuna.ical4j.model.component.Standard)1 RRule (net.fortuna.ical4j.model.property.RRule)1 TzName (net.fortuna.ical4j.model.property.TzName)1