FileDocCategorySizeDatePackage
DowntimeCalendar.javaAPI DocAndroid 5.1 API3776Thu Mar 12 22:22:42 GMT 2015com.android.server.notification

DowntimeCalendar

public class DowntimeCalendar extends Object
Copyright (c) 2014, The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Fields Summary
private final android.util.ArraySet
mDays
private final Calendar
mCalendar
private android.service.notification.ZenModeConfig.DowntimeInfo
mInfo
Constructors Summary
Methods Summary
private longaddDays(long time, int days)

        mCalendar.setTimeInMillis(time);
        mCalendar.add(Calendar.DATE, days);
        return mCalendar.getTimeInMillis();
    
private intgetDayOfWeek(long time)

        mCalendar.setTimeInMillis(time);
        return mCalendar.get(Calendar.DAY_OF_WEEK);
    
public longgetNextTime(long now, int hr, int min)

        final long time = getTime(now, hr, min);
        return time <= now ? addDays(time, 1) : time;
    
private longgetTime(long millis, int hour, int min)

        mCalendar.setTimeInMillis(millis);
        mCalendar.set(Calendar.HOUR_OF_DAY, hour);
        mCalendar.set(Calendar.MINUTE, min);
        mCalendar.set(Calendar.SECOND, 0);
        mCalendar.set(Calendar.MILLISECOND, 0);
        return mCalendar.getTimeInMillis();
    
public booleanisInDowntime(long time)

        if (mInfo == null || mDays.size() == 0) return false;
        final long start = getTime(time, mInfo.startHour, mInfo.startMinute);
        long end = getTime(time, mInfo.endHour, mInfo.endMinute);
        if (end <= start) {
            end = addDays(end, 1);
        }
        return isInDowntime(-1, time, start, end) || isInDowntime(0, time, start, end);
    
private booleanisInDowntime(int daysOffset, long time, long start, long end)

        final int n = Calendar.SATURDAY;
        final int day = ((getDayOfWeek(time) - 1) + (daysOffset % n) + n) % n + 1;
        start = addDays(start, daysOffset);
        end = addDays(end, daysOffset);
        return mDays.contains(day) && time >= start && time < end;
    
public longnextDowntimeStart(long time)

        if (mInfo == null || mDays.size() == 0) return Long.MAX_VALUE;
        final long start = getTime(time, mInfo.startHour, mInfo.startMinute);
        for (int i = 0; i < Calendar.SATURDAY; i++) {
            final long t = addDays(start, i);
            if (t > time && isInDowntime(t)) {
                return t;
            }
        }
        return Long.MAX_VALUE;
    
public voidsetDowntimeInfo(android.service.notification.ZenModeConfig.DowntimeInfo info)

        if (Objects.equals(mInfo, info)) return;
        mInfo = info;
        updateDays();
    
public voidsetTimeZone(java.util.TimeZone tz)

        mCalendar.setTimeZone(tz);
    
public java.lang.StringtoString()


    
       
        return "DowntimeCalendar[mDays=" + mDays + "]";
    
private voidupdateDays()

        mDays.clear();
        if (mInfo != null) {
            final int[] days = ZenModeConfig.tryParseDays(mInfo.mode);
            for (int i = 0; days != null && i < days.length; i++) {
                mDays.add(days[i]);
            }
        }