Add notification type check for mobile
[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 struct profile_ops {
27         const char *profile;
28         void (*init) (void);
29         void (*exit) (void);
30         bool (*get_switched_pattern)(int pattern, int *switched);
31         bool (*get_always_alert_case)(int type, int pattern);
32         bool (*get_always_off_case)(int type, int pattern);
33         int (*get_strength_type)(int type, int pattern);
34         bool (*is_notification_type)(int pattern);
35         const int max_type;
36         const int max_pattern;
37         const char **str_type;
38         const char **str_pattern;
39 };
40
41 #define PROFILE_OPS_REGISTER(ops)       \
42         const struct profile_ops *profile = ops
43
44 extern const struct profile_ops *profile;
45
46 #define CHECK_VIBRATION(type)   (type == FEEDBACK_TYPE_VIBRATION)
47 #define CHECK_SOUND(type)       (type == FEEDBACK_TYPE_SOUND)
48
49 #endif