/* * Copyright (c) 2009, Todoroo Inc * All Rights Reserved * http://www.todoroo.com */ package com.todoroo.andlib.utility; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.Locale; import android.content.Context; import android.text.format.DateFormat; import android.text.format.DateUtils; import com.todoroo.astrid.api.R; public class DateUtilities { /* ====================================================================== * ============================================================ long time * ====================================================================== */ /** Convert unixtime into date */ public static final Date unixtimeToDate(long millis) { if(millis == 0) return null; return new Date(millis); } /** Convert date into unixtime */ public static final long dateToUnixtime(Date date) { if(date == null) return 0; return date.getTime(); } /** * Add the specified amount of months to the given time.
* The day of month will stay the same.
* * @param time the base-time (in milliseconds) to which the amount of months is added * @param interval the amount of months to be added * @return the calculated time in milliseconds */ public static final long addCalendarMonthsToUnixtime(long time, int interval) { Calendar c = Calendar.getInstance(); c.setTimeInMillis(time); c.add(Calendar.MONTH, interval); return c.getTimeInMillis(); } /** Returns unixtime for current time */ public static final long now() { return System.currentTimeMillis(); } /** Returns unixtime one month from now */ public static final long oneMonthFromNow() { Date date = new Date(); date.setMonth(date.getMonth() + 1); return date.getTime(); } /** Represents a single hour */ public static long ONE_HOUR = 3600000L; /** Represents a single day */ public static long ONE_DAY = 24 * ONE_HOUR; /** Represents a single week */ public static long ONE_WEEK = 7 * ONE_DAY; /** Represents a single minute */ public static long ONE_MINUTE = 60000L; /* ====================================================================== * =========================================================== formatters * ====================================================================== */ static Boolean is24HourOverride = null; public static boolean is24HourFormat(Context context) { if(is24HourOverride != null) return is24HourOverride; return DateFormat.is24HourFormat(context); } /** * @param context android context * @param date time to format * @return time, with hours and minutes */ @SuppressWarnings("nls") public static String getTimeString(Context context, Date date) { String value; if (is24HourFormat(context)) { value = "H:mm"; } else if (date.getMinutes() == 0){ value = "h a"; } else { value = "h:mm a"; } return new SimpleDateFormat(value).format(date); } /** * @param context android context * @param date date to format * @return date, with month, day, and year */ @SuppressWarnings("nls") public static String getDateString(Context context, Date date) { String month = DateUtils.getMonthString(date.getMonth() + Calendar.JANUARY, DateUtils.LENGTH_MEDIUM); String value; // united states, you are special if (Locale.US.equals(Locale.getDefault()) || Locale.CANADA.equals(Locale.getDefault())) value = "'#' d yyyy"; else value = "d '#' yyyy"; return new SimpleDateFormat(value).format(date).replace("#", month); } /** * @param context android context * @param date date to format * @return date, with month, day, and year */ @SuppressWarnings("nls") public static String getDateStringHideYear(Context context, Date date) { String month = DateUtils.getMonthString(date.getMonth() + Calendar.JANUARY, DateUtils.LENGTH_MEDIUM); String value; // united states, you are special if (Locale.US.equals(Locale.getDefault()) || Locale.CANADA.equals(Locale.getDefault())) value = "'#' d"; else value = "d '#'"; if (date.getYear() != (new Date()).getYear()) { value = value + "\nyyyy"; } return new SimpleDateFormat(value).format(date).replace("#", month); } /** * @return date format as getDateFormat with weekday */ @SuppressWarnings("nls") public static String getDateStringWithWeekday(Context context, Date date) { String weekday = getWeekday(date); return weekday + ", " + getDateString(context, date); } /** * @return weekday */ public static String getWeekday(Date date) { return DateUtils.getDayOfWeekString(date.getDay() + Calendar.SUNDAY, DateUtils.LENGTH_LONG); } /** * @return weekday */ public static String getWeekdayShort(Date date) { return DateUtils.getDayOfWeekString(date.getDay() + Calendar.SUNDAY, DateUtils.LENGTH_MEDIUM); } /** * @return date format as getDateFormat with weekday */ @SuppressWarnings("nls") public static String getDateStringWithTimeAndWeekday(Context context, Date date) { return getDateStringWithWeekday(context, date) + " " + getTimeString(context, date); } /** * @return date with time at the end */ @SuppressWarnings("nls") public static String getDateStringWithTime(Context context, Date date) { return getDateString(context, date) + " " + getTimeString(context, date); } /** * @return yesterday, today, tomorrow, or null */ public static String getRelativeDay(Context context, long date) { long today = clearTime(new Date()); long input = clearTime(new Date(date)); if(today == input) return context.getString(R.string.today).toLowerCase(); if(today + ONE_DAY == input) return context.getString(R.string.tmrw).toLowerCase(); if(today == input + ONE_DAY) return context.getString(R.string.yest).toLowerCase(); if(today + DateUtilities.ONE_WEEK >= input && today - DateUtilities.ONE_WEEK <= input) return DateUtilities.getWeekdayShort(new Date(date)); return DateUtilities.getDateStringHideYear(context, new Date(date)); } private static long clearTime(Date date) { date.setTime(date.getTime() / 1000L * 1000); date.setHours(0); date.setMinutes(0); date.setSeconds(0); return date.getTime(); } }