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
17package com.android.quicksearchbox;
18
19import android.content.Context;
20
21
22/**
23 * Base class for corpus implementations.
24 */
25public abstract class AbstractCorpus implements Corpus {
26
27    private final Context mContext;
28
29    private final Config mConfig;
30
31    public AbstractCorpus(Context context, Config config) {
32        mContext = context;
33        mConfig = config;
34    }
35
36    protected Context getContext() {
37        return mContext;
38    }
39
40    public boolean isCorpusDefaultEnabled() {
41        return mConfig.isCorpusEnabledByDefault(this);
42    }
43
44    public boolean isCorpusHidden() {
45        return mConfig.isCorpusHidden(getName());
46    }
47
48    @Override
49    public String toString() {
50        return getName();
51    }
52
53    @Override
54    public boolean equals(Object o) {
55        if (o != null && getClass().equals(o.getClass())) {
56            return getName().equals(((Corpus) o).getName());
57        } else {
58            return false;
59        }
60    }
61
62    @Override
63    public int hashCode() {
64        return getName().hashCode();
65    }
66
67}
68