This repository has been archived by the owner on Aug 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
activity_event_utils.h
80 lines (70 loc) · 2.36 KB
/
activity_event_utils.h
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
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
// Copyright (c) 2015 Intel Corporation
//
// 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.
*/
#ifndef __ACTIVITY_EVENT_UTILS_H__
#define __ACTIVITY_EVENT_UTILS_H__
#include <hardware/activity_recognition.h>
#include "utils.h"
#define MAX_ACTIVITIES 6
#define MAX_EVENTS_PER_ACTIVITY 2
typedef unsigned bool;
#define true 1
#define false 0
/* For each activity in activity_recognition.h we can monitor 2 events at most :
* ENTER and EXIT */
struct activity_event_info {
struct activity_event *event[MAX_EVENTS_PER_ACTIVITY];
int modifier;
int sensor_catalog_index;
int channel_index;
int dev_num;
int event_fd;
int event_count;
bool monitored[MAX_EVENTS_PER_ACTIVITY];
};
struct control_event_data {
uint8_t enable;
uint8_t activity;
uint8_t event;
};
/**
* Creates a control event identifier:
* [unused] EVENT ACTIVITY ENABLE
* 63 ... 24 23 ... 16 15 ... 8 7 ... 0
* @enable: Says if the <activity, event> pair needs to be enabled or disabled (0 or 1)
* @activity: What activity are we working on - index in the list returned by
* get_supported_activities_list()
* @event: What type of event to asociate with the given activity (one of
* the ACTIVITY_EVENT_* enum)
*/
static inline uint64_t get_control_code(uint8_t enable, uint8_t activity, uint8_t event)
{
return ((uint64_t)enable << 56) |
((uint64_t)activity << 48) |
((uint64_t)event << 40);
}
/**
* Parses the given control identifier and retrieves the control data.
* @control_code: the unified control data
* @control_data: extracted data from the control code
*/
static inline void get_control_data(uint64_t control_code,
struct control_event_data *control_data)
{
control_data->enable = (uint8_t)(control_code >> 56);
control_data->activity = (uint8_t)(control_code >> 48 & 0xFF);
control_data->event = (uint8_t)(control_code >> 40 & 0xFF);
}
#endif