Home | History | Annotate | Download | only in calendar
      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;
     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.Calendar.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     @SuppressWarnings("deprecation")
     46     @Override
     47     public void onHandleIntent(Intent intent) {
     48         // Mark all fired alarms as dismissed
     49         Uri uri = CalendarAlerts.CONTENT_URI;
     50         String selection = CalendarAlerts.STATE + "=" + CalendarAlerts.FIRED;
     51         ContentResolver resolver = getContentResolver();
     52 
     53         ContentValues values = new ContentValues();
     54         values.put(PROJECTION[COLUMN_INDEX_STATE], CalendarAlerts.DISMISSED);
     55         resolver.update(uri, values, selection, null);
     56 
     57         // Stop this service
     58         stopSelf();
     59     }
     60 }
     61