1/*
2 * Copyright (C) 2010 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
17package com.android.quicksearchbox;
18
19import android.app.SearchManager;
20import android.content.BroadcastReceiver;
21import android.content.Context;
22import android.content.Intent;
23import android.util.Log;
24
25/**
26 * Listens for broadcasts that require updates to the corpus set.
27 */
28public class CorporaUpdateReceiver extends BroadcastReceiver {
29
30    private static final boolean DBG = false;
31    private static final String TAG = "QSB.CorporaUpdateReceiver";
32
33    @Override
34    public void onReceive(Context context, Intent intent) {
35        String action = intent.getAction();
36        if (SearchManager.INTENT_ACTION_SEARCHABLES_CHANGED.equals(action)
37                || SearchManager.INTENT_ACTION_SEARCH_SETTINGS_CHANGED.equals(action)) {
38            if (DBG) Log.d(TAG, "onReceive(" + intent + ")");
39            updateCorpora(context);
40            SearchWidgetProvider.updateSearchWidgets(context);
41        }
42    }
43
44    private void updateCorpora(Context context) {
45        QsbApplication.get(context).updateCorpora();
46    }
47
48}
49