Parse and vibrate using standard pattern
[platform/core/system/feedbackd.git] / src / haptic / haptic.h
1 /*
2  * feedbackd
3  *
4  * Copyright (c) 2012 - 2017 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 __FEEDBACKD_HAPTIC_H__
21 #define __FEEDBACKD_HAPTIC_H__
22
23 #include <stdbool.h>
24 #include "core/common.h"
25 #include "core/list.h"
26 #include "haptic-plugin-intf.h"
27
28 #define HAPTIC_OPS_REGISTER(dev)        \
29 static void __CONSTRUCTOR__ module_init(void)   \
30 {       \
31         add_haptic(dev);        \
32 }       \
33 static void __DESTRUCTOR__ module_exit(void)    \
34 {       \
35         remove_haptic(dev);     \
36 }
37
38 enum haptic_type {
39         HAPTIC_STANDARD,
40         HAPTIC_EXTERNAL,
41 };
42
43 enum priority_level {
44         PRIORITY_MIN = 0,
45         PRIORITY_MIDDLE,
46         PRIORITY_HIGH,
47         PRIORITY_TOP,
48 };
49
50 struct haptic_ops {
51         enum haptic_type type;
52         bool (*is_valid)(void);
53         const struct haptic_plugin_ops *(*load)(void);
54         void (*release)(void);
55 };
56
57 struct haptic_data {
58         dd_list *vibration_data;
59         unsigned int handle;
60         int level;
61         int priority;
62         bool stop;
63         int unlimit;
64 };
65
66 #define INVALID_HANDLE 0
67 extern struct haptic_data cur_h_data;
68
69 void add_haptic(const struct haptic_ops *ops);
70 void remove_haptic(const struct haptic_ops *ops);
71
72 int haptic_probe(void);
73 void haptic_init(void);
74 void haptic_exit(void);
75
76 #endif /* __FEEDBACKD_HAPTIC_H__ */