1 /* 2 * Copyright (C) 2009 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License 15 */ 16 17 package com.android.calendar.alerts; 18 19 import android.app.IntentService; 20 import android.content.ContentResolver; 21 import android.content.ContentValues; 22 import android.content.Intent; 23 import android.net.Uri; 24 import android.os.IBinder; 25 import android.provider.CalendarContract.CalendarAlerts; 26 27 /** 28 * Service for asynchronously marking all fired alarms as dismissed. 29 */ 30 public class DismissAllAlarmsService extends IntentService { 31 private static final String[] PROJECTION = new String[] { 32 CalendarAlerts.STATE, 33 }; 34 private static final int COLUMN_INDEX_STATE = 0; 35 36 public DismissAllAlarmsService() { 37 super("DismissAllAlarmsService"); 38 } 39 40 @Override 41 public IBinder onBind(Intent intent) { 42 return null; 43 } 44 45 @Override 46 public void onHandleIntent(Intent intent) { 47 // Mark all fired alarms as dismissed 48 Uri uri = CalendarAlerts.CONTENT_URI; 49 String selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED; 50 ContentResolver resolver = getContentResolver(); 51 52 ContentValues values = new ContentValues(); 53 values.put(PROJECTION[COLUMN_INDEX_STATE], CalendarAlerts.STATE_DISMISSED); 54 resolver.update(uri, values, selection, null); 55 56 // Stop this service 57 stopSelf(); 58 } 59 } 60