vblank: add set_vblank_fps functionality for the given PID
[platform/core/uifw/libtdm.git] / client / tdm_client.h
1 /**************************************************************************
2  *
3  * libtdm
4  *
5  * Copyright 2015 Samsung Electronics co., Ltd. All Rights Reserved.
6  *
7  * Contact: Eunchul Kim <chulspro.kim@samsung.com>,
8  *          JinYoung Jeon <jy0.jeon@samsung.com>,
9  *          Taeheon Kim <th908.kim@samsung.com>,
10  *          YoungJun Cho <yj44.cho@samsung.com>,
11  *          SooChan Lim <sc1.lim@samsung.com>,
12  *          Boram Park <sc1.lim@samsung.com>
13  *
14  * Permission is hereby granted, free of charge, to any person obtaining a
15  * copy of this software and associated documentation files (the
16  * "Software"), to deal in the Software without restriction, including
17  * without limitation the rights to use, copy, modify, merge, publish,
18  * distribute, sub license, and/or sell copies of the Software, and to
19  * permit persons to whom the Software is furnished to do so, subject to
20  * the following conditions:
21  *
22  * The above copyright notice and this permission notice (including the
23  * next paragraph) shall be included in all copies or substantial portions
24  * of the Software.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
27  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
29  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
30  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
31  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
32  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33  *
34 **************************************************************************/
35
36 #ifndef _TDM_CLIENT_H_
37 #define _TDM_CLIENT_H_
38
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42
43 /**
44  * @file tdm_client.h
45  * @brief The header file for a client of TDM.
46  * @par Example
47  * @code
48  * #include <tdm_client.h>    //for a client of TDM
49  * @endcode
50  */
51
52 #include <tdm_client_types.h>
53
54 /**
55  * @brief Create a TDM client object.
56  * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
57  * @return A TDM client object if success. Otherwise, NULL.
58  * @see #tdm_client_destroy
59  */
60 tdm_client*
61 tdm_client_create(tdm_error *error);
62
63 /**
64  * @brief Destroy a TDM client object
65  * @param[in] client A TDM client object
66  * @see #tdm_client_create
67  */
68 void
69 tdm_client_destroy(tdm_client *client);
70
71 /**
72  * @brief Get the file descriptor
73  * @param[in] client A TDM client object
74  * @param[out] fd The file descriptor
75  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
76  * @see #tdm_client_handle_events
77  * @par Example
78  * @code
79  * #include <tdm_client.h>    //for a client of TDM
80  *
81  * err = tdm_client_get_fd(client, &fd);
82  * if (err != TDM_ERROR_NONE) {
83  *     //error handling
84  * }
85  *
86  * fds.events = POLLIN;
87  * fds.fd = fd;
88  * fds.revents = 0;
89  *
90  * while(1) {
91  *    ret = poll(&fds, 1, -1);
92  *    if (ret < 0) {
93  *       if (errno == EINTR || errno == EAGAIN)
94  *          continue;
95  *       else {
96  *          //error handling
97  *       }
98  *    }
99  *
100  *    err = tdm_client_handle_events(client);
101  *    if (err != TDM_ERROR_NONE) {
102  *        //error handling
103  *    }
104  * }
105  * @endcode
106  */
107 tdm_error
108 tdm_client_get_fd(tdm_client *client, int *fd);
109
110 /**
111  * @brief Handle the events of the given file descriptor
112  * @param[in] client A TDM client object
113  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
114  * @see #tdm_client_get_fd
115  */
116 tdm_error
117 tdm_client_handle_events(tdm_client *client);
118
119 /**
120  * @brief @b Deprecated. Wait for VBLANK.
121  * @deprecated
122  * @details After interval vblanks, a client vblank handler will be called.
123  * If 'sw_timer' param is 1 in case of DPMS off, TDM will use the SW timer and
124  * call a client vblank handler. Otherwise, this function will return error.
125  * @param[in] client A TDM client object
126  * @param[in] name The name of a TDM output
127  * @param[in] sw_timer 0: not using SW timer, 1: using SW timer
128  * @param[in] interval vblank interval
129  * @param[in] sync 0: asynchronous, 1:synchronous
130  * @param[in] func A client vblank handler
131  * @param[in] user_data The user data
132  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
133  * @see #tdm_client_vblank_handler
134  */
135 tdm_error
136 tdm_client_wait_vblank(tdm_client *client, char *name,
137                                            int sw_timer, int interval, int sync,
138                                            tdm_client_vblank_handler2 func, void *user_data);
139
140 /**
141  * @brief Set the client vblank fps for the given PID and name.
142  * @param[in] client A TDM client object
143  * @param[in] pid The process ID
144  * @param[in] name The client vblank name
145  * @param[in] fps The client vblank fps
146  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
147  */
148 tdm_error
149 tdm_client_set_client_vblank_fps(tdm_client *client, pid_t pid, const char *name, unsigned int fps);
150
151 /**
152  * @brief Get the client output object which has the given name.
153  * @details
154  * The client output name can be @b 'primary' or @b 'default' to get the main output.
155  * @param[in] client The TDM client object
156  * @param[in] name The name of the TDM client output object
157  * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
158  * @return A client output object if success. Otherwise, NULL.
159  */
160 tdm_client_output*
161 tdm_client_get_output(tdm_client *client, char *name, tdm_error *error);
162
163 /**
164  * @brief Add the client output change handler
165  * @details The handler will be called when the status of a
166  * client output object is changed. connection, DPMS, etc.
167  * @param[in] output The client output object
168  * @param[in] func The client output change handler
169  * @param[in] user_data The user data
170  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
171  * @par Example
172  * @code
173  * #include <tdm_client.h>    //for a client of TDM
174  *
175  * static void
176  * _client_output_handler(tdm_client_output *output, tdm_output_change_type type,
177  *                        tdm_value value, void *user_data)
178  * {
179  *     char *conn_str[3] = {"disconnected", "connected", "mode_setted"};
180  *     char *dpms_str[4] = {"on", "standy", "suspend", "off"};
181  *
182  *     if (type == TDM_OUTPUT_CHANGE_CONNECTION)
183  *         printf("output %s.\n", conn_str[value.u32]);
184  *     else if (type == TDM_OUTPUT_CHANGE_DPMS)
185  *         printf("dpms %s.\n", dpms_str[value.u32]);
186  * }
187  * ...
188  * tdm_client_output_add_change_handler(output, _client_output_handler, NULL);
189  * ...
190  * tdm_client_output_remove_change_handler(output, _client_output_handler, NULL);
191  *
192  * @endcode
193  */
194 tdm_error
195 tdm_client_output_add_change_handler(tdm_client_output *output,
196                                                                          tdm_client_output_change_handler func,
197                                                                          void *user_data);
198
199 /**
200  * @brief Remove the client output change handler
201  * @param[in] output The client output object
202  * @param[in] func The client output change handler
203  * @param[in] user_data The user data
204  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
205  */
206 void
207 tdm_client_output_remove_change_handler(tdm_client_output *output,
208                                                                                 tdm_client_output_change_handler func,
209                                                                                 void *user_data);
210
211 /**
212  * @brief Get the vertical refresh rate of the given client output
213  * @param[in] output The client output object
214  * @param[out] refresh The refresh rate
215  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
216  */
217 tdm_error
218 tdm_client_output_get_refresh_rate(tdm_client_output *output, unsigned int *refresh);
219
220 /**
221  * @brief Get the connection status of the given client output
222  * @param[in] output The client output object
223  * @param[out] status The connection status
224  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
225  */
226 tdm_error
227 tdm_client_output_get_conn_status(tdm_client_output *output, tdm_output_conn_status *status);
228
229 /**
230  * @brief Get the DPMS value of the given client output
231  * @param[in] output The client output object
232  * @param[out] dpms The DPMS value
233  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
234  */
235 tdm_error
236 tdm_client_output_get_dpms(tdm_client_output *output, tdm_output_dpms *dpms);
237
238 /**
239  * @brief Create the client vblank object of the given client output
240  * @param[in] output The client output object
241  * @param[out] error #TDM_ERROR_NONE if success. Otherwise, error value.
242  * @return A client vblank object if success. Otherwise, NULL.
243  */
244 tdm_client_vblank*
245 tdm_client_output_create_vblank(tdm_client_output *output, tdm_error *error);
246
247 /**
248  * @brief Destroy the client vblank object
249  * @param[in] vblank The client vblank object
250  */
251 void
252 tdm_client_vblank_destroy(tdm_client_vblank *vblank);
253
254 /**
255  * @brief Set the name to the client vblank object
256  * @param[in] vblank The client vblank object
257  * @param[in] name The client vblank name
258  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
259  */
260 tdm_error
261 tdm_client_vblank_set_name(tdm_client_vblank *vblank, const char *name);
262
263 /**
264  * @brief Set the sync value to the client vblank object
265  * @details
266  * If sync == 1, the user client vblank handler of #tdm_client_vblank_wait
267  * will be called before #tdm_client_vblank_wait returns the result. If sync == 0,
268  * the user client vblank handler of #tdm_client_vblank_wait will be called
269  * asynchronously after #tdm_client_vblank_wait returns. Default is @b asynchronous.
270  * @param[in] vblank The client vblank object
271  * @param[in] sync 0: asynchronous, 1:synchronous
272  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
273  */
274 tdm_error
275 tdm_client_vblank_set_sync(tdm_client_vblank *vblank, unsigned int sync);
276
277 /**
278  * @brief Set the fps to the client vblank object
279  * @details Default is the @b vertical @b refresh @b rate of the given client output.
280  * @param[in] vblank The client vblank object
281  * @param[in] fps more than 0
282  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
283  */
284 tdm_error
285 tdm_client_vblank_set_fps(tdm_client_vblank *vblank, unsigned int fps);
286
287 /**
288  * @brief Set the offset(milli-second) to the client vblank object
289  * @details Default is @b 0.
290  * @param[in] vblank The client vblank object
291  * @param[in] offset_ms the offset(milli-second)
292  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
293  */
294 tdm_error
295 tdm_client_vblank_set_offset(tdm_client_vblank *vblank, int offset_ms);
296
297 /**
298  * @brief Enable/Disable the fake vblank to the client vblank object
299  * @details
300  * If enable_fake == 0, #tdm_client_vblank_wait will return TDM_ERROR_DPMS_OFF
301  * when DPMS off. Otherwise, #tdm_client_vblank_wait will return TDM_ERROR_NONE
302  * as success. Once #tdm_client_vblank_wait returns TDM_ERROR_NONE, the user client
303  * vblank handler(#tdm_client_vblank_handler) SHOULD be called after the given
304  * interval of #tdm_client_vblank_wait. Default is @b disable.
305  * @param[in] vblank The client vblank object
306  * @param[in] enable_fake 1:enable, 0:disable
307  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
308  */
309 tdm_error
310 tdm_client_vblank_set_enable_fake(tdm_client_vblank *vblank, unsigned int enable_fake);
311
312 /**
313  * @brief Wait for a vblank
314  * @details
315  * This function will return TDM_ERROR_DPMS_OFF when DPMS off. However,
316  * #tdm_client_vblank_wait will return TDM_ERROR_NONE as success if
317  * #tdm_client_vblank_set_enable_fake sets true. Once #tdm_client_vblank_wait
318  * returns TDM_ERROR_NONE, the user client vblank handler(#tdm_client_vblank_handler)
319  * SHOULD be called after the given interval. \n
320  * The sequence value of tdm_client_vblank_handler is the relative value of fps.
321  * If fps = 10, this sequence value should be increased by 10 during 1 second.
322  * @param[in] vblank The client vblank object
323  * @param[in] interval The vblank interval
324  * @param[in] func The user client vblank handler
325  * @param[in] user_data The user data
326  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
327  * @par Example
328  * @code
329  * #include <tdm_client.h>    //for a client of TDM
330  *
331  * static void
332  * _client_vblank_handler(tdm_client_vblank *vblank, tdm_error error, unsigned int sequence,
333  *                        unsigned int tv_sec, unsigned int tv_usec, void *user_data)
334  * {
335  *     if (error != TDM_ERROR_NONE)
336  *         //error handling
337  * }
338  *
339  * {
340  *     tdm_client_output *output;
341  *     tdm_client_vblank *vblank;
342  *     tdm_error error;
343  *     struct pollfd fds;
344  *     int fd = -1;
345  *
346  *     cliet = tdm_client_create(&error);
347  *     if (error != TDM_ERROR_NONE)
348  *         //error handling
349  *
350  *     output = tdm_client_get_output(client, NULL, &error);
351  *     if (error != TDM_ERROR_NONE)
352  *         //error handling
353  *
354  *     vblank = tdm_client_output_create_vblank(output, &error);
355  *     if (error != TDM_ERROR_NONE)
356  *         //error handling
357  *
358  *     tdm_client_vblank_set_enable_fake(vblank, enable_fake); //default: disable
359  *     tdm_client_vblank_set_sync(vblank, 0); //default: async
360  *     tdm_client_vblank_set_fps(vblank, fps); //default: refresh rate of output
361  *     tdm_client_vblank_set_offset(vblank, offset); //default: 0
362  *
363  *     error = tdm_client_get_fd(data->client, &fd);
364  *     if (error != TDM_ERROR_NONE)
365  *         //error handling
366  *
367  *     fds.events = POLLIN;
368  *     fds.fd = fd;
369  *     fds.revents = 0;
370  *
371  *     while (1) {
372  *         int ret;
373  *
374  *         error = tdm_client_vblank_wait(vblank, interval,
375  *                                        _client_vblank_handler, NULL);
376  *         if (error != TDM_ERROR_NONE)
377  *             //error handling
378  *
379  *         ret = poll(&fds, 1, -1);
380  *         if (ret < 0) {
381  *             if (errno == EINTR || errno == EAGAIN)  // normal case
382  *                 continue;
383  *             else
384  *                 //error handling
385  *         }
386  *
387  *         error = tdm_client_handle_events(client);
388  *         if (error != TDM_ERROR_NONE)
389  *             //error handling
390  *     }
391  *
392  *     tdm_client_vblank_destroy(vblank);
393  *     tdm_client_destroy(client);
394  * }
395  * @endcode
396  */
397 tdm_error
398 tdm_client_vblank_wait(tdm_client_vblank *vblank, unsigned int interval, tdm_client_vblank_handler func, void *user_data);
399
400 /**
401  * @brief Wait for a vblank with the target sequence number
402  * @details
403  * This function will return TDM_ERROR_DPMS_OFF when DPMS off. However,
404  * #tdm_client_vblank_wait will return TDM_ERROR_NONE as success if
405  * #tdm_client_vblank_set_enable_fake sets true. Once #tdm_client_vblank_wait_seq
406  * returns TDM_ERROR_NONE, the user client vblank handler(#tdm_client_vblank_handler)
407  * SHOULD be called on reaching the target sequence.
408  * @param[in] vblank The client vblank object
409  * @param[in] sequence The target sequence number
410  * @param[in] func The user client vblank handler
411  * @param[in] user_data The user data
412  * @return #TDM_ERROR_NONE if success. Otherwise, error value.
413  */
414 tdm_error
415 tdm_client_vblank_wait_seq(tdm_client_vblank *vblank, unsigned int sequence, tdm_client_vblank_handler func, void *user_data);
416
417 #ifdef __cplusplus
418 }
419 #endif
420
421 #endif /* _TDM_CLIENT_H_ */