summaryrefslogtreecommitdiff
path: root/bordeaux/service/src/android/bordeaux/services/TimeStatsAggregator.java
blob: 86261890a736e9d8f6e774ec548f267d6d613476 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
 * Copyright (C) 2012 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 android.bordeaux.services;

import java.util.Date;
import android.util.Log;
import java.util.HashMap;
import java.util.Map;

class TimeStatsAggregator extends Aggregator {
    final String TAG = "TimeStatsAggregator";
    public static final String CURRENT_TIME = "Current Time";
    final String EARLY_MORNING = "EarlyMorning";
    final String MORNING = "Morning";
    final String NOON = "Noon";
    final String AFTERNOON = "AfterNoon";
    final String NIGHT = "Night";
    final String LATE_NIGHT = "LateNight";

    public String[] getListOfFeatures(){
        String [] list = new String[1];
        list[0] = CURRENT_TIME;
        return list;
    }

    public Map<String,String> getFeatureValue(String featureName) {
        HashMap<String,String> m = new HashMap<String,String>();
        if (featureName.equals(CURRENT_TIME))
            m.put(CURRENT_TIME, getCurrentTimeLabel());
        else
            Log.e(TAG, "There is no Time feature called " + featureName);
        return (Map) m;
    }

    private String getCurrentTimeLabel(){
        Date  d = new Date(System.currentTimeMillis());
        String t = "";  //TODO maybe learn thresholds
        int h = d.getHours();
        if ((h > 5) & (h <= 7) )
            t = EARLY_MORNING;
        else if ((h > 7) & (h <= 11) )
            t = MORNING;
        else if ((h > 11) & (h <= 15))
            t = NOON;
        else if ((h > 15) & (h <= 20))
            t = AFTERNOON;
        else if ((h > 20) & (h <= 24))
            t = NIGHT;
        else if ((h > 0) & (h <= 5))
            t = LATE_NIGHT;
        return t;
    }
}