aboutsummaryrefslogtreecommitdiffstats
path: root/sdk/src/java/cyanogenmod/alarmclock/ClockContract.java
diff options
context:
space:
mode:
Diffstat (limited to 'sdk/src/java/cyanogenmod/alarmclock/ClockContract.java')
-rw-r--r--sdk/src/java/cyanogenmod/alarmclock/ClockContract.java314
1 files changed, 314 insertions, 0 deletions
diff --git a/sdk/src/java/cyanogenmod/alarmclock/ClockContract.java b/sdk/src/java/cyanogenmod/alarmclock/ClockContract.java
new file mode 100644
index 0000000..63a1d27
--- /dev/null
+++ b/sdk/src/java/cyanogenmod/alarmclock/ClockContract.java
@@ -0,0 +1,314 @@
+/*
+ * Copyright (C) 2013 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.
+ */
+package cyanogenmod.alarmclock;
+
+import android.net.Uri;
+import android.provider.BaseColumns;
+
+/**
+ * <p>
+ * The contract between the clock provider and desk clock. Contains
+ * definitions for the supported URIs and data columns.
+ * </p>
+ * <h3>Overview</h3>
+ * <p>
+ * ClockContract defines the data model of clock related information.
+ * This data is stored in a number of tables:
+ * </p>
+ * <ul>
+ * <li>The {@link AlarmsColumns} table holds the user created alarms</li>
+ * <li>The {@link InstancesColumns} table holds the current state of each
+ * alarm in the AlarmsColumn table.
+ * </li>
+ * <li>The {@link CitiesColumns} table holds all user selectable cities</li>
+ * </ul>
+ *
+ * <p>
+ * Requires {@link cyanogenmod.alarmclock.CyanogenModAlarmClock#READ_ALARMS_PERMISSION}
+ * to read from the provider.
+ * Requires {@link cyanogenmod.alarmclock.CyanogenModAlarmClock#WRITE_ALARMS_PERMISSION} to write
+ * to the provider.
+ * </p>
+ */
+public final class ClockContract {
+ /**
+ * This authority is used for writing to or querying from the clock
+ * provider.
+ */
+ public static final String AUTHORITY = "com.android.deskclock";
+
+ /**
+ * This utility class cannot be instantiated
+ */
+ private ClockContract() {}
+
+ /**
+ * Constants for tables with AlarmSettings.
+ */
+ public interface AlarmSettingColumns extends BaseColumns {
+ /**
+ * This string is used to indicate no ringtone.
+ */
+ public static final Uri NO_RINGTONE_URI = Uri.EMPTY;
+
+ /**
+ * This string is used to indicate no ringtone.
+ */
+ public static final String NO_RINGTONE = NO_RINGTONE_URI.toString();
+
+ /**
+ * True if alarm should vibrate
+ * <p>Type: BOOLEAN</p>
+ */
+ public static final String VIBRATE = "vibrate";
+
+ /**
+ * Alarm label.
+ *
+ * <p>Type: STRING</p>
+ */
+ public static final String LABEL = "label";
+
+ /**
+ * Audio alert to play when alarm triggers. Null entry
+ * means use system default and entry that equal
+ * Uri.EMPTY.toString() means no ringtone.
+ *
+ * <p>Type: STRING</p>
+ */
+ public static final String RINGTONE = "ringtone";
+
+ /**
+ * True if alarm should start off quiet and slowly increase volume
+ * <P>Type: BOOLEAN</P>
+ */
+ public static final String INCREASING_VOLUME = "incvol";
+
+ /**
+ * Profile to change to when alarm triggers
+ * <P>Type: STRING</P>
+ */
+ public static final String PROFILE = "profile";
+ }
+
+ /**
+ * Constants for the Alarms table, which contains the user created alarms.
+ */
+ public interface AlarmsColumns extends AlarmSettingColumns, BaseColumns {
+ /**
+ * The content:// style URL for this table.
+ */
+ public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/alarms");
+
+ /**
+ * Hour in 24-hour localtime 0 - 23.
+ * <p>Type: INTEGER</p>
+ */
+ public static final String HOUR = "hour";
+
+ /**
+ * Minutes in localtime 0 - 59.
+ * <p>Type: INTEGER</p>
+ */
+ public static final String MINUTES = "minutes";
+
+ /**
+ * Days of the week encoded as a bit set.
+ * <p>Type: INTEGER</p>
+ *
+ */
+ public static final String DAYS_OF_WEEK = "daysofweek";
+
+ /**
+ * True if alarm is active.
+ * <p>Type: BOOLEAN</p>
+ */
+ public static final String ENABLED = "enabled";
+
+ /**
+ * Determine if alarm is deleted after it has been used.
+ * <p>Type: INTEGER</p>
+ */
+ public static final String DELETE_AFTER_USE = "delete_after_use";
+ }
+
+ /**
+ * Constants for the Instance table, which contains the state of each alarm.
+ */
+ public interface InstancesColumns extends AlarmSettingColumns, BaseColumns {
+ /**
+ * The content:// style URL for this table.
+ */
+ public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/instances");
+
+
+ /**
+ * Alarm state for rtc power off alarm
+ */
+ public static final int POWER_OFF_ALARM_STATE = -1;
+
+ /**
+ * Alarm state when to show no notification.
+ *
+ * Can transitions to:
+ * LOW_NOTIFICATION_STATE
+ */
+ public static final int SILENT_STATE = 0;
+
+ /**
+ * Alarm state to show low priority alarm notification.
+ *
+ * Can transitions to:
+ * HIDE_NOTIFICATION_STATE
+ * HIGH_NOTIFICATION_STATE
+ * DISMISSED_STATE
+ */
+ public static final int LOW_NOTIFICATION_STATE = 1;
+
+ /**
+ * Alarm state to hide low priority alarm notification.
+ *
+ * Can transitions to:
+ * HIGH_NOTIFICATION_STATE
+ */
+ public static final int HIDE_NOTIFICATION_STATE = 2;
+
+ /**
+ * Alarm state to show high priority alarm notification.
+ *
+ * Can transitions to:
+ * DISMISSED_STATE
+ * FIRED_STATE
+ */
+ public static final int HIGH_NOTIFICATION_STATE = 3;
+
+ /**
+ * Alarm state when alarm is in snooze.
+ *
+ * Can transitions to:
+ * DISMISSED_STATE
+ * FIRED_STATE
+ */
+ public static final int SNOOZE_STATE = 4;
+
+ /**
+ * Alarm state when alarm is being fired.
+ *
+ * Can transitions to:
+ * DISMISSED_STATE
+ * SNOOZED_STATE
+ * MISSED_STATE
+ */
+ public static final int FIRED_STATE = 5;
+
+ /**
+ * Alarm state when alarm has been missed.
+ *
+ * Can transitions to:
+ * DISMISSED_STATE
+ */
+ public static final int MISSED_STATE = 6;
+
+ /**
+ * Alarm state when alarm is done.
+ */
+ public static final int DISMISSED_STATE = 7;
+
+ /**
+ * Alarm state when alarm has been dismissed before its intended firing time.
+ */
+ public static final int PREDISMISSED_STATE = 8;
+
+ /**
+ * Alarm year.
+ *
+ * <p>Type: INTEGER</p>
+ */
+ public static final String YEAR = "year";
+
+ /**
+ * Alarm month in year.
+ *
+ * <p>Type: INTEGER</p>
+ */
+ public static final String MONTH = "month";
+
+ /**
+ * Alarm day in month.
+ *
+ * <p>Type: INTEGER</p>
+ */
+ public static final String DAY = "day";
+
+ /**
+ * Alarm hour in 24-hour localtime 0 - 23.
+ * <p>Type: INTEGER</p>
+ */
+ public static final String HOUR = "hour";
+
+ /**
+ * Alarm minutes in localtime 0 - 59
+ * <p>Type: INTEGER</p>
+ */
+ public static final String MINUTES = "minutes";
+
+ /**
+ * Foreign key to Alarms table
+ * <p>Type: INTEGER (long)</p>
+ */
+ public static final String ALARM_ID = "alarm_id";
+
+ /**
+ * Alarm state
+ * <p>Type: INTEGER</p>
+ */
+ public static final String ALARM_STATE = "alarm_state";
+ }
+
+ /**
+ * Constants for the Cities table, which contains all selectable cities.
+ */
+ public interface CitiesColumns {
+ /**
+ * The content:// style URL for this table.
+ */
+ public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/cities");
+
+ /**
+ * Primary id for city.
+ * <p>Type: STRING</p>
+ */
+ public static final String CITY_ID = "city_id";
+
+ /**
+ * City name.
+ * <p>Type: STRING</p>
+ */
+ public static final String CITY_NAME = "city_name";
+
+ /**
+ * Timezone name of city.
+ * <p>Type: STRING</p>
+ */
+ public static final String TIMEZONE_NAME = "timezone_name";
+
+ /**
+ * Timezone offset.
+ * <p>Type: INTEGER</p>
+ */
+ public static final String TIMEZONE_OFFSET = "timezone_offset";
+ }
+}