Remove build dependencies on profile
[platform/core/system/libsvi.git] / src / profiles.h
1 /*
2  * libfeedback
3
4  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the License);
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19
20 #ifndef __PROFILES_H__
21 #define __PROFILES_H__
22
23 #include <stdbool.h>
24 #include "common.h"
25
26 enum priority_level {
27         PRIORITY_MIN = 0,
28         PRIORITY_MIDDLE,
29         PRIORITY_HIGH,
30         PRIORITY_TOP,
31 };
32
33 struct profile_ops {
34         char *(*profile)(void);
35         void (*init) (void);
36         void (*exit) (void);
37         bool (*get_switched_pattern)(int pattern, int *switched);
38         bool (*get_always_alert_case)(int type, int pattern);
39         bool (*get_always_off_case)(int type, int pattern);
40         int (*get_strength_type)(int type, int pattern);
41         int (*get_priority)(int pattern);
42         bool (*is_notification_type)(int pattern);
43         const int max_type;
44         const int max_pattern;
45         const char **str_type;
46         const char *(*str_pattern)(int pattern);
47 };
48
49 #define PROFILE_OPS_REGISTER(ops)       \
50         const struct profile_ops *profile = ops
51
52 extern const struct profile_ops *profile;
53
54 #define CHECK_VIBRATION(type)   (type == FEEDBACK_TYPE_VIBRATION)
55 #define CHECK_SOUND(type)       (type == FEEDBACK_TYPE_SOUND)
56
57 #endif