Improve thread handling
[platform/core/api/camera.git] / src / camera.c
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <unistd.h>
22 #include <mm.h>
23 #include <mm_types.h>
24 #include <mm_camcorder.h>
25 #include <muse_camera_msg.h>
26 #include <camera_private.h>
27 #include <muse_client.h>
28 #include <dlog.h>
29 #include <gio/gio.h>
30 #include <dlfcn.h>
31
32 #ifdef LOG_TAG
33 #undef LOG_TAG
34 #endif
35 #define LOG_TAG         "TIZEN_N_CAMERA"
36 #define MODULE_NAME     "camera"
37 #define LIB_CAMERA_DEVICE_MANAGER PATH_LIBDIR"/libcamera_device_manager.so"
38 #define CAMERA_CHECK_DEVICE_MANAGER \
39         do {\
40                 if (access(LIB_CAMERA_DEVICE_MANAGER, F_OK) != 0) {\
41                         CAM_LOG_ERROR("no camera device maanger[errno:%d]", errno);\
42                         return CAMERA_ERROR_NOT_SUPPORTED;\
43                 }\
44         } while (0)
45 #define CAMERA_CHECK_HANDLE_RETURN(pc) \
46         do {\
47                 if (!pc || !pc->cb_info) {\
48                         CAM_LOG_ERROR("NULL handle[%p]", pc);\
49                         return;\
50                 }\
51         } while (0)
52 #define CAMERA_CHECK_HANDLE_RETURN_VAL(pc, val) \
53         do {\
54                 if (!pc || !pc->cb_info) {\
55                         CAM_LOG_ERROR("NULL handle[%p]", pc);\
56                         return (val);\
57                 }\
58         } while (0)
59
60 /* for camera device manager */
61 typedef struct _cdm_symbol_table {
62         void **func_ptr;
63         const char *func_name;
64 } cdm_symbol_table;
65
66 /* for device changed callback */
67 static GMutex g_cam_dev_state_changed_cb_lock;
68 static GList *g_cam_dev_state_changed_cb_list;
69 static int g_cam_dev_state_changed_cb_id;
70 static GDBusConnection *g_cam_dev_state_changed_cb_conn;
71 static guint g_cam_dev_state_changed_cb_subscribe_id;
72 static GMutex g_cam_idle_event_lock;
73
74 /* log level */
75 static int g_camera_log_level = CAMERA_LOG_LEVEL_INFO;
76
77 static bool __camera_import_tbm_fd(tbm_bufmgr bufmgr, int fd, tbm_bo *bo, tbm_bo_handle *bo_handle);
78 static void __camera_release_imported_bo(tbm_bo *bo);
79
80 static int __camera_create_media_packet(camera_cb_info_s *cb_info, MMCamcorderVideoStreamDataType *stream,
81         camera_media_packet_data *mp_data, media_packet_h *packet);
82 static int __camera_create_media_packet_data(int ret_fd, int *tfd, int num_buffer_fd, tbm_bo bo,
83         tbm_bo *buffer_bo, tbm_bo data_bo, camera_media_packet_data **mp_data);
84 static void __camera_release_media_packet_data(camera_media_packet_data *mp_data, camera_cb_info_s *cb_info);
85
86 static gboolean __camera_allocate_preview_buffer(camera_h camera);
87 static void __camera_release_preview_buffer(camera_h camera);
88 static void __camera_release_tfd(int tfd[MUSE_NUM_FD]);
89
90 static bool __create_msg_handler_thread(camera_msg_handler_info_s *handler_info,
91         int type, const char *thread_name, camera_cb_info_s *cb_info);
92 static void __destroy_msg_handler_thread(camera_msg_handler_info_s *handler_info);
93
94
95 //LCOV_EXCL_START
96 static gboolean __camera_allocate_preview_buffer(camera_h camera)
97 {
98         int i = 0;
99         int ret = CAMERA_ERROR_NONE;
100         int format = CAMERA_PIXEL_FORMAT_INVALID;
101         int width = 0;
102         int height = 0;
103         int buffer_size = 0;
104         camera_cli_s *pc = (camera_cli_s *)camera;
105         camera_cb_info_s *cb_info = NULL;
106
107         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, FALSE);
108
109         cb_info = pc->cb_info;
110
111         CAM_LOG_INFO("Enter");
112
113         /* get preview info and calculate size */
114         ret = camera_get_preview_format(camera, &format);
115         if (ret != CAMERA_ERROR_NONE) {
116                 CAM_LOG_ERROR("get preview format failed 0x%x", ret);
117                 return FALSE;
118         }
119
120         ret = camera_get_preview_resolution(camera, &width, &height);
121         if (ret != CAMERA_ERROR_NONE) {
122                 CAM_LOG_ERROR("get preview resolution failed 0x%x", ret);
123                 return FALSE;
124         }
125
126         CAM_LOG_INFO("preview %dx%d, format %d", width, height, format);
127
128         switch (format) {
129         case CAMERA_PIXEL_FORMAT_INVZ:
130                 buffer_size = width * height;
131                 break;
132         case CAMERA_PIXEL_FORMAT_NV12:
133         case CAMERA_PIXEL_FORMAT_I420:
134                 buffer_size = (width * height * 3) >> 1;
135                 break;
136         case CAMERA_PIXEL_FORMAT_YUYV:
137         case CAMERA_PIXEL_FORMAT_UYVY:
138                 buffer_size = width * height * 2;
139                 break;
140         default:
141                 CAM_LOG_ERROR("unhandled format %d", format);
142                 goto _ALLOCATE_PREVIEW_BUFFER_FAILED;
143         }
144
145         CAM_LOG_INFO("buffer size %d, num %d", buffer_size, MUSE_NUM_FD);
146
147         for (i = 0 ; i < MUSE_NUM_FD ; i++) {
148                 cb_info->bos[i] = tbm_bo_alloc(cb_info->bufmgr, buffer_size, TBM_BO_DEFAULT);
149                 if (!cb_info->bos[i]) {
150                         CAM_LOG_ERROR("bo alloc failed [%d,i:%d]", buffer_size, i);
151                         goto _ALLOCATE_PREVIEW_BUFFER_FAILED;
152                 }
153
154                 cb_info->fds[i] = tbm_bo_export_fd(cb_info->bos[i]);
155                 if (cb_info->fds[i] < 0) {
156                         CAM_LOG_ERROR("export fd failed [%d,i:%d] errno %d", buffer_size, i, errno);
157                         goto _ALLOCATE_PREVIEW_BUFFER_FAILED;
158                 }
159
160                 CAM_LOG_INFO("bo %p, fd %d", cb_info->bos[i], cb_info->fds[i]);
161         }
162
163         CAM_LOG_INFO("Done");
164
165         return TRUE;
166
167 _ALLOCATE_PREVIEW_BUFFER_FAILED:
168         __camera_release_preview_buffer(camera);
169         return FALSE;
170 }
171
172
173 static void __camera_release_preview_buffer(camera_h camera)
174 {
175         int i = 0;
176         camera_cli_s *pc = (camera_cli_s *)camera;
177         camera_cb_info_s *cb_info = NULL;
178
179         CAMERA_CHECK_HANDLE_RETURN(pc);
180
181         CAM_LOG_INFO("Enter");
182
183         cb_info = pc->cb_info;
184
185         /* close exported fd and bos */
186         for (i = 0 ; i < MUSE_NUM_FD ; i++) {
187                 CAM_LOG_INFO("unref bo %p, close fd %d", cb_info->bos[i], cb_info->fds[i]);
188
189                 if (cb_info->bos[i]) {
190                         tbm_bo_unref(cb_info->bos[i]);
191                         cb_info->bos[i] = NULL;
192                 } else {
193                         break;
194                 }
195
196                 if (CAMERA_IS_FD_VALID(cb_info->fds[i])) {
197                         close(cb_info->fds[i]);
198                         cb_info->fds[i] = CAMERA_FD_INIT;
199                 }
200         }
201
202         CAM_LOG_INFO("Done");
203 }
204 //LCOV_EXCL_STOP
205
206 static void __camera_release_tfd(int tfd[MUSE_NUM_FD])
207 {
208         int i;
209
210         if (!tfd) {
211                 CAM_LOG_WARNING("NULL tfd");
212                 return;
213         }
214
215         for (i = 0 ; i < MUSE_NUM_FD ; i++) {
216                 if (!CAMERA_IS_FD_VALID(tfd[i]))
217                         break;
218
219                 close(tfd[i]);
220                 tfd[i] = CAMERA_FD_INIT;
221         }
222 }
223
224
225 void _camera_update_api_waiting(camera_cb_info_s *cb_info, int api, int value)
226 {
227         if (!cb_info ||
228                 api < 0 || api >= MUSE_CAMERA_API_MAX) {
229                 CAM_LOG_ERROR("invalid param %p %d", cb_info, api);
230                 return;
231         }
232
233         g_mutex_lock(&(cb_info->api_mutex[api]));
234         cb_info->api_waiting[api] += value;
235         g_mutex_unlock(&(cb_info->api_mutex[api]));
236
237         CAM_LOG_DEBUG("api[%d], value[%d], waiting[%d]",
238                 api, value, cb_info->api_waiting[api]);
239 }
240
241
242 static void __camera_device_state_changed_cb(GDBusConnection *connection,
243         const gchar *sender_name, const gchar *object_path, const gchar *interface_name,
244         const gchar *signal_name, GVariant *param, gpointer user_data)
245 {
246         int value = 0;
247         camera_device_e device = CAMERA_DEVICE_CAMERA0;
248         camera_device_state_e state = CAMERA_DEVICE_STATE_NULL;
249         GList *tmp_list = NULL;
250         camera_cb_info *info = NULL;
251
252         g_mutex_lock(&g_cam_dev_state_changed_cb_lock);
253
254         if (!g_cam_dev_state_changed_cb_list || !param) {
255                 CAM_LOG_WARNING("no callback or NULL param %p", param);
256                 goto _DONE;
257         }
258
259         /* get device and state */
260         g_variant_get(param, "(i)", &value);
261
262         device = value >> 16;
263         state = 0x0000ffff & value;
264
265         CAM_LOG_INFO("device %d, state %d", device, state);
266
267         tmp_list = g_cam_dev_state_changed_cb_list;
268
269         do {
270                 info = (camera_cb_info *)tmp_list->data;
271
272                 if (info) {
273                         if (info->callback) {
274                                 CAM_LOG_INFO("start id[%d] callback", info->id);
275                                 ((camera_device_state_changed_cb)info->callback)(device, state, info->user_data);
276                                 CAM_LOG_INFO("returned id[%d] callback", info->id);
277                         } else {
278                                 CAM_LOG_WARNING("NULL callback for id %d", info->id);
279                         }
280                 }
281
282                 tmp_list = tmp_list->next;
283         } while (tmp_list);
284
285 _DONE:
286         g_mutex_unlock(&g_cam_dev_state_changed_cb_lock);
287 }
288
289
290 static void __camera_event_handler_preview(camera_cb_info_s *cb_info, char *recv_msg, int *tfd)
291 {
292         int i = 0;
293         int ret = 0;
294         int ret_fd = CAMERA_FD_INIT;
295         int preview_fd = CAMERA_FD_INIT;
296         int num_buffer_fd = 0;
297         unsigned char *buf_pos = NULL;
298
299         tbm_bo bo = NULL;
300         tbm_bo buffer_bo[BUFFER_MAX_PLANE_NUM] = {NULL, };
301         tbm_bo_handle bo_handle = {.ptr = NULL};
302         tbm_bo_handle buffer_bo_handle[BUFFER_MAX_PLANE_NUM] = {{.ptr = NULL}, };
303         tbm_bo data_bo = NULL;
304         tbm_bo_handle data_bo_handle = {.ptr = NULL};
305
306         camera_msg_param param;
307         camera_preview_data_s frame;
308         MMCamcorderVideoStreamDataType *stream = NULL;
309         camera_media_packet_data *mp_data = NULL;
310         media_packet_h pkt = NULL;
311
312         /* tfd[0]: MMCamcorderVideoStreamDataType
313            tfd[1]: data_bo or zero copy bo[0]
314            tfd[2]: zero copy bo[1]
315            tfd[3]: zero copy bo[2] */
316
317         if (!cb_info || !recv_msg || !tfd) {
318                 CAM_LOG_ERROR("invalid param %p %p %p", cb_info, recv_msg, tfd);
319                 return;
320         }
321
322         muse_camera_msg_get(preview_fd, recv_msg);
323         muse_camera_msg_get(num_buffer_fd, recv_msg);
324
325         CAM_LOG_DEBUG("preview_fd %d, num_buffer_fd %d", preview_fd, num_buffer_fd);
326
327         memset(&frame, 0x0, sizeof(camera_preview_data_s));
328
329         if (tfd[0] < 0) {
330                 CAM_LOG_ERROR("invalid fd %d", tfd[0]);
331                 return;
332         }
333
334         ret_fd = preview_fd;
335         CAMERA_MSG_PARAM_SET(param, INT, ret_fd);
336
337         if (num_buffer_fd < 0 || num_buffer_fd > BUFFER_MAX_PLANE_NUM) {
338                 CAM_LOG_ERROR("invalid num buffer fd %d", num_buffer_fd);
339                 goto _PREVIEW_CB_HANDLER_DONE;
340         }
341
342         /* import tbm bo and get virtual address */
343         if (!__camera_import_tbm_fd(cb_info->bufmgr, tfd[0], &bo, &bo_handle)) {
344                 CAM_LOG_ERROR("failed to import fd %d", tfd[0]);
345                 goto _PREVIEW_CB_HANDLER_DONE;
346         }
347
348         buf_pos = (unsigned char *)bo_handle.ptr;
349
350         /* get stream info */
351         stream = (MMCamcorderVideoStreamDataType *)buf_pos;
352
353         if (num_buffer_fd == 0 && CAMERA_IS_FD_VALID(tfd[1])) {
354                 /* import tbm data_bo and get virtual address */
355                 if (!__camera_import_tbm_fd(cb_info->bufmgr, tfd[1], &data_bo, &data_bo_handle)) {
356                         CAM_LOG_ERROR("failed to import data fd %d", tfd[1]);
357                         goto _PREVIEW_CB_HANDLER_DONE;
358                 }
359
360                 if (stream->data_type == MM_CAM_STREAM_DATA_ENCODED)
361                         stream->data.encoded.data = data_bo_handle.ptr;
362         } else {
363                 for (i = 0 ; i < num_buffer_fd ; i++) {
364                         /* import buffer bo and get virtual address */
365                         if (!__camera_import_tbm_fd(cb_info->bufmgr, tfd[i + 1], &buffer_bo[i], &buffer_bo_handle[i])) {
366                                 CAM_LOG_ERROR("failed to import buffer fd %d", tfd[i + 1]);
367                                 goto _PREVIEW_CB_HANDLER_DONE;
368                         }
369                 }
370
371                 if (stream->data_type == MM_CAM_STREAM_DATA_ENCODED)
372                         stream->data.encoded.data = buffer_bo_handle[0].ptr;
373         }
374
375         /* preview callback */
376         if (cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_PREVIEW] ||
377                 cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW]) {
378                 camera_create_preview_frame(stream, num_buffer_fd, buffer_bo_handle, &data_bo_handle, &frame);
379
380                 /* set stream data for camera_get_preview_frame_rotation() */
381                 cb_info->stream_data = stream;
382
383                 if (stream->extra_stream_id < 0) {
384                         if (cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_PREVIEW])
385                                 ((camera_preview_cb)cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_PREVIEW])(&frame,
386                                         cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_PREVIEW]);
387                 } else {
388                         if (cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW])
389                                 ((camera_extra_preview_cb)cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW])(&frame,
390                                         stream->extra_stream_id, cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW]);
391                 }
392
393                 cb_info->stream_data = NULL;
394         }
395
396         if (stream->extra_stream_id >= 0)
397                 goto _PREVIEW_CB_HANDLER_DONE;
398
399         /* make media packet with below cases.
400          * 1. media_packet_preview_cb is set
401          * 2. EVAS display rendering
402          * 3. media bridge is set
403          */
404         if (cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW] ||
405                 cb_info->is_evas_render ||
406                 cb_info->bridge) {
407                 ret = __camera_create_media_packet_data(ret_fd, tfd, num_buffer_fd, bo, buffer_bo, data_bo, &mp_data);
408                 if (ret != CAMERA_ERROR_NONE) {
409                         CAM_LOG_ERROR("__camera_create_media_packet_data failed[0x%x]", ret);
410                         goto _PREVIEW_CB_HANDLER_DONE;
411                 }
412
413                 ret = __camera_create_media_packet(cb_info, stream, mp_data, &pkt);
414                 if (ret != CAMERA_ERROR_NONE) {
415                         CAM_LOG_ERROR("__camera_create_media_packet failed[0x%x]", ret);
416                         __camera_release_media_packet_data(mp_data, cb_info);
417                         mp_data = NULL;
418                         goto _PREVIEW_CB_HANDLER_DONE;
419                 }
420         }
421
422         /* 1. media packet preview callback */
423         if (cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]) {
424                 media_packet_ref(pkt);
425                 ((camera_media_packet_preview_cb)cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW])(pkt,
426                         cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]);
427         }
428
429         /* 2. call evas renderer */
430         if (cb_info->is_evas_render) {
431                 if (cb_info->run_evas_render) {
432                         media_packet_ref(pkt);
433                         ret = mm_display_interface_evas_render(cb_info->dp_interface, pkt);
434                         if (ret != MM_ERROR_NONE) {
435                                 CAM_LOG_ERROR("mm_display_interface_evas_render failed[0x%x]", ret);
436                                 media_packet_unref(pkt);
437                         }
438                 } else {
439                         CAM_LOG_WARNING("evas renderer is stopped, skip this buffer...");
440                 }
441         }
442
443 //LCOV_EXCL_START
444         /* 3. media bridge */
445         g_mutex_lock(&cb_info->bridge_lock);
446
447         if (cb_info->bridge) {
448                 media_packet_ref(pkt);
449                 ret = media_bridge_push_packet(cb_info->bridge, pkt);
450                 if (ret != MEDIA_BRIDGE_ERROR_NONE) {
451                         CAM_LOG_ERROR("push packet to bridge failed[0x%x]", ret);
452                         media_packet_unref(pkt);
453                 }
454         }
455 //LCOV_EXCL_STOP
456
457         g_mutex_unlock(&cb_info->bridge_lock);
458
459 _PREVIEW_CB_HANDLER_DONE:
460         /* send PREVIEW_CB_RETURN message if zero copy buffer is used(num_buffer_fd is bigger than 0)
461            and preview callback(normal or media packet) is set. */
462         if (num_buffer_fd > 0 &&
463                 (cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_PREVIEW] ||
464                  cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]))
465                 _camera_msg_send(MUSE_CAMERA_API_PREVIEW_CB_RETURN, NULL, cb_info, NULL, 0);
466
467         if (pkt) {
468                 media_packet_unref(pkt);
469                 return;
470         }
471
472         /* return buffer */
473         _camera_msg_send_param1(MUSE_CAMERA_API_RETURN_BUFFER, cb_info, NULL, &param, 0);
474
475         CAM_LOG_DEBUG("return buffer Done[tfd:%d, ret fd:%d]", tfd[0], ret_fd);
476
477         /* release imported bo and fd */
478         __camera_release_imported_bo(&data_bo);
479         __camera_release_imported_bo(&bo);
480
481         for (i = 0 ; i < num_buffer_fd && i < BUFFER_MAX_PLANE_NUM ; i++)
482                 __camera_release_imported_bo(&buffer_bo[i]);
483
484         __camera_release_tfd(tfd);
485 }
486
487
488 static void __camera_event_handler_capture(camera_cb_info_s *cb_info, char *recv_msg, int *tfd)
489 {
490         int tfd_index = 0;
491         int capture_fd_main = 0;
492         int capture_fd_post = 0;
493         int capture_fd_thumb = 0;
494         unsigned char *buf_pos = NULL;
495
496         camera_image_data_s *rImage = NULL;
497         camera_image_data_s *rPostview = NULL;
498         camera_image_data_s *rThumbnail = NULL;
499
500         tbm_bo bo_main = NULL;
501         tbm_bo bo_post = NULL;
502         tbm_bo bo_thumb = NULL;
503         tbm_bo_handle bo_main_handle = {.ptr = NULL};
504         tbm_bo_handle bo_post_handle = {.ptr = NULL};
505         tbm_bo_handle bo_thumb_handle = {.ptr = NULL};
506
507         if (!cb_info || !recv_msg || !tfd) {
508                 CAM_LOG_ERROR("invalid param %p %p %p", cb_info, recv_msg, tfd);
509                 return;
510         }
511
512         muse_camera_msg_get(capture_fd_main, recv_msg);
513         muse_camera_msg_get(capture_fd_post, recv_msg);
514         muse_camera_msg_get(capture_fd_thumb, recv_msg);
515
516         CAM_LOG_INFO("capture fd %d %d %d, received fd %d %d %d",
517                 capture_fd_main, capture_fd_post, capture_fd_thumb,
518                 tfd[0], tfd[1], tfd[2]);
519
520         if (capture_fd_main < 0 || tfd[tfd_index] < 0) {
521                 CAM_LOG_ERROR("invalid main fd %d %d", capture_fd_main, tfd[tfd_index]);
522                 goto _CAPTURE_CB_HANDLER_DONE;
523         }
524
525         if (cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_CAPTURE] == NULL) {
526                 CAM_LOG_WARNING("NULL callback");
527                 goto _CAPTURE_CB_HANDLER_DONE;
528         }
529
530         /* import tbm bo and get virtual address */
531         if (!__camera_import_tbm_fd(cb_info->bufmgr, tfd[tfd_index], &bo_main, &bo_main_handle)) {
532                 CAM_LOG_ERROR("failed to import fd [%d] for main", tfd[tfd_index]);
533                 goto _CAPTURE_CB_HANDLER_DONE;
534         }
535
536         buf_pos = (unsigned char *)bo_main_handle.ptr;
537         rImage = (camera_image_data_s *)buf_pos;
538         rImage->data = buf_pos + sizeof(camera_image_data_s);
539         if (rImage->exif && rImage->exif_size > 0) {
540                 rImage->exif = rImage->data + rImage->size;
541         } else {
542                 rImage->exif = NULL;
543                 rImage->exif_size = 0;
544         }
545
546         CAM_LOG_INFO("image info %dx%d, size %d, EXIF info %p, size %d",
547                 rImage->width, rImage->height, rImage->size, rImage->exif, rImage->exif_size);
548
549 //LCOV_EXCL_START
550         if (CAMERA_IS_FD_VALID(capture_fd_post)) {
551                 /* import tbm bo and get virtual address */
552                 tfd_index++;
553                 if (__camera_import_tbm_fd(cb_info->bufmgr, tfd[tfd_index], &bo_post, &bo_post_handle)) {
554                         buf_pos = (unsigned char *)bo_post_handle.ptr;
555                         rPostview = (camera_image_data_s *)buf_pos;
556                         CAM_LOG_INFO("rPostview->size : %d", rPostview->size);
557                         rPostview->data = buf_pos + sizeof(camera_image_data_s);
558                 } else {
559                         CAM_LOG_ERROR("failed to import fd [i:%d][%d] for postview", tfd_index, tfd[tfd_index]);
560                 }
561         }
562
563         if (CAMERA_IS_FD_VALID(capture_fd_thumb)) {
564                 /* import tbm bo and get virtual address */
565                 tfd_index++;
566                 if (__camera_import_tbm_fd(cb_info->bufmgr, tfd[tfd_index], &bo_thumb, &bo_thumb_handle)) {
567                         buf_pos = (unsigned char *)bo_thumb_handle.ptr;
568                         rThumbnail = (camera_image_data_s *)buf_pos;
569                         CAM_LOG_INFO("rThumbnail->size : %d", rThumbnail->size);
570                         rThumbnail->data = buf_pos + sizeof(camera_image_data_s);
571                 } else {
572                         CAM_LOG_ERROR("failed to import fd [%d] for thumbnail", tfd[tfd_index]);
573                 }
574         }
575 //LCOV_EXCL_STOP
576
577         ((camera_capturing_cb)cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_CAPTURE])(rImage,
578                 rPostview, rThumbnail, cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_CAPTURE]);
579
580 _CAPTURE_CB_HANDLER_DONE:
581         /* return buffer */
582         if (CAMERA_IS_FD_VALID(capture_fd_main)) {
583                 __camera_release_imported_bo(&bo_main);
584                 _camera_msg_return_buffer(capture_fd_main, cb_info);
585         }
586
587         if (CAMERA_IS_FD_VALID(capture_fd_post)) {
588                 __camera_release_imported_bo(&bo_post);
589                 _camera_msg_return_buffer(capture_fd_post, cb_info);
590         }
591
592         if (CAMERA_IS_FD_VALID(capture_fd_thumb)) {
593                 __camera_release_imported_bo(&bo_thumb);
594                 _camera_msg_return_buffer(capture_fd_thumb, cb_info);
595         }
596
597         __camera_release_tfd(tfd);
598
599         CAM_LOG_INFO("return buffer done");
600 }
601
602
603 //LCOV_EXCL_START
604 static void __camera_event_handler_face_detection(camera_cb_info_s *cb_info, char *recv_msg, int *tfd)
605 {
606         int count = 0;
607         int face_fd = CAMERA_FD_INIT;
608         camera_detected_face_s *faces = NULL;
609
610         tbm_bo bo = NULL;
611         tbm_bo_handle bo_handle = {.ptr = NULL};
612
613         if (!cb_info || !recv_msg || !tfd) {
614                 CAM_LOG_ERROR("invalid param %p %p %p", cb_info, recv_msg, tfd);
615                 return;
616         }
617
618         muse_camera_msg_get(count, recv_msg);
619         muse_camera_msg_get(face_fd, recv_msg);
620
621         if (count >= 0 && cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]) {
622                 CAM_LOG_INFO("FACE_DETECTION - count %d, fd %d", count, tfd[0]);
623
624                 if (CAMERA_IS_FD_VALID(tfd[0])) {
625                         if (__camera_import_tbm_fd(cb_info->bufmgr, tfd[0], &bo, &bo_handle)) {
626                                 /* set face info */
627                                 faces = bo_handle.ptr;
628                         }
629
630                         close(tfd[0]);
631                         tfd[0] = CAMERA_FD_INIT;
632                 }
633
634                 ((camera_face_detected_cb)cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION])(faces,
635                         count, cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]);
636
637                 /* release bo */
638                 __camera_release_imported_bo(&bo);
639         } else {
640                 CAM_LOG_WARNING("skip face detection message [count %d, fd %d, cb %p]",
641                         count, tfd[0], cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]);
642         }
643
644         /* return buffer */
645         _camera_msg_return_buffer(face_fd, cb_info);
646 }
647 //LCOV_EXCL_STOP
648
649
650 static bool __camera_import_tbm_fd(tbm_bufmgr bufmgr, int fd, tbm_bo *bo, tbm_bo_handle *bo_handle)
651 {
652         tbm_bo tmp_bo = NULL;
653         tbm_bo_handle tmp_bo_handle = {NULL, };
654
655         if (!bufmgr || !bo || !bo_handle || fd < 0) {
656                 CAM_LOG_ERROR("invalid parameter - %p %p %p, fd %d",
657                      bufmgr, bo, bo_handle, fd);
658                 return false;
659         }
660
661         tmp_bo = tbm_bo_import_fd(bufmgr, (tbm_fd)fd);
662         if (tmp_bo == NULL) {
663                 CAM_LOG_ERROR("import failed - fd %d", fd);
664                 return false;
665         }
666
667         tmp_bo_handle = tbm_bo_map(tmp_bo, TBM_DEVICE_CPU, TBM_OPTION_READ);
668         if (tmp_bo_handle.ptr == NULL) {
669                 CAM_LOG_ERROR("map failed %p", tmp_bo);
670                 tbm_bo_unref(tmp_bo);
671                 tmp_bo = NULL;
672                 return false;
673         }
674
675         tbm_bo_unmap(tmp_bo);
676
677         /* set bo and bo_handle */
678         *bo = tmp_bo;
679         *bo_handle = tmp_bo_handle;
680
681         CAM_LOG_VERBOSE("fd[%d] -> bo[%p]", fd, tmp_bo);
682
683         return true;
684 }
685
686 static void __camera_release_imported_bo(tbm_bo *bo)
687 {
688         if (!bo || !(*bo)) {
689                 CAM_LOG_DEBUG("NULL bo");
690                 return;
691         }
692
693         tbm_bo_unref(*bo);
694         *bo = NULL;
695 }
696
697
698 static bool __is_supported(camera_h camera, muse_camera_api_e api)
699 {
700         int ret = CAMERA_ERROR_NONE;
701         camera_cli_s *pc = (camera_cli_s *)camera;
702
703         if (!pc || !pc->cb_info) {
704                 CAM_LOG_ERROR("api[%d] NULL handle[%p]", api, pc);
705                 set_last_result(CAMERA_ERROR_INVALID_PARAMETER);
706                 return false;
707         }
708
709         CAM_LOG_INFO("Enter - api[%d]", api);
710
711         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
712
713         CAM_LOG_INFO("Leave - api[%d], ret[%d]", api, ret);
714
715         return !!ret;
716 }
717
718
719 static int __set_mode(camera_h camera, muse_camera_api_e api, int set_mode)
720 {
721         int ret = CAMERA_ERROR_NONE;
722         camera_cli_s *pc = (camera_cli_s *)camera;
723         camera_msg_param param;
724
725         if (!pc || !pc->cb_info) {
726                 CAM_LOG_ERROR("api[%d] NULL handle[%p]", api, pc);
727                 return CAMERA_ERROR_INVALID_PARAMETER;
728         }
729
730         CAM_LOG_INFO("Enter - api[%d], mode[%d]", api, set_mode);
731
732         CAMERA_MSG_PARAM_SET(param, INT, set_mode);
733
734         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
735
736         CAM_LOG_INFO("Leave - api[%d], ret[0x%x]", api, ret);
737
738         return ret;
739 }
740
741
742 static int __set_enable(camera_h camera, muse_camera_api_e api, int set_enable)
743 {
744         int ret = CAMERA_ERROR_NONE;
745         camera_cli_s *pc = (camera_cli_s *)camera;
746         camera_msg_param param;
747
748         if (!pc || !pc->cb_info) {
749                 CAM_LOG_ERROR("api[%d] NULL handle[%p]", api, pc);
750                 return CAMERA_ERROR_INVALID_PARAMETER;
751         }
752
753         CAM_LOG_INFO("Enter - api[%d], enable[%d]", api, set_enable);
754
755         CAMERA_MSG_PARAM_SET(param, INT, set_enable);
756
757         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
758
759         CAM_LOG_INFO("Leave - api[%d], ret[0x%x]", api, ret);
760
761         return ret;
762 }
763
764
765 static void __send_message_get_return(camera_cb_info_s *cb_info, muse_camera_api_e api, char *msg, int time_out, int *ret)
766 {
767         int send_ret = 0;
768
769         if (!msg) {
770                 CAM_LOG_ERROR("api[%d] message failed", api);
771                 if (ret)
772                         *ret = CAMERA_ERROR_OUT_OF_MEMORY;
773
774                 return;
775         }
776
777         CAM_LOG_INFO("api[%d], message[%s]", api, msg);
778
779         if (cb_info->is_server_connected) {
780                 _camera_update_api_waiting(cb_info, api, 1);
781
782                 g_mutex_lock(&cb_info->fd_lock);
783                 send_ret = muse_core_msg_send(cb_info->fd, msg);
784                 g_mutex_unlock(&cb_info->fd_lock);
785         }
786
787         if (send_ret < 0) {
788                 CAM_LOG_ERROR("message send failed");
789                 if (ret)
790                         *ret = CAMERA_ERROR_INVALID_OPERATION;
791         } else {
792                 if (ret)
793                         *ret = _camera_client_wait_for_cb_return(api, cb_info, time_out);
794         }
795
796         _camera_update_api_waiting(cb_info, api, -1);
797
798         muse_core_msg_free(msg);
799
800         CAM_LOG_INFO("api[%d] ret[0x%x]", api, ret ? *ret : 0x0);
801 }
802
803
804 int _camera_client_wait_for_cb_return(muse_camera_api_e api, camera_cb_info_s *cb_info, int time_out)
805 {
806         int ret = CAMERA_ERROR_NONE;
807         gint64 end_time;
808
809         if (!cb_info->is_server_connected) {
810                 CAM_LOG_ERROR("server is disconnected");
811                 return CAMERA_ERROR_SERVICE_DISCONNECTED;
812         }
813
814         g_mutex_lock(&(cb_info->api_mutex[api]));
815
816         CAM_LOG_INFO("api [%d], timeout [%d sec]", api, time_out);
817
818         end_time = g_get_monotonic_time() + time_out * G_TIME_SPAN_SECOND;
819
820         while (!cb_info->api_activating[api]) {
821                 if (time_out == CAMERA_CB_NO_TIMEOUT) {
822                         g_cond_wait(&(cb_info->api_cond[api]), &(cb_info->api_mutex[api]));
823                         CAM_LOG_WARNING("api %d returned 0x%x", api, cb_info->api_ret[api]);
824                 } else if (!g_cond_wait_until(&(cb_info->api_cond[api]), &(cb_info->api_mutex[api]), end_time)) {
825                         CAM_LOG_ERROR("api %d TIMED OUT!", api);
826                         ret = CAMERA_ERROR_INVALID_OPERATION;
827                         goto _CB_RETURN_END;
828                 }
829
830                 if (!cb_info->is_server_connected) {
831                         ret = CAMERA_ERROR_SERVICE_DISCONNECTED;
832                         goto _CB_RETURN_END;
833                 }
834
835                 if (!cb_info->api_activating[api])
836                         CAM_LOG_WARNING("invalid signal received, wait again...");
837         }
838
839         ret = cb_info->api_ret[api];
840         cb_info->api_activating[api] = FALSE;
841
842 _CB_RETURN_END:
843         g_mutex_unlock(&(cb_info->api_mutex[api]));
844
845         if (ret != CAMERA_ERROR_NONE)
846                 CAM_LOG_ERROR("api %d : error 0x%x", api, ret);
847
848         return ret;
849 }
850
851
852 void _camera_msg_send(int api, int *fds, camera_cb_info_s *cb_info,
853         int *ret, int timeout)
854 {
855         char *msg = NULL;
856
857         if (!cb_info) {
858                 CAM_LOG_ERROR("NULL info - api %d", api);
859
860                 if (ret)
861                         *ret = CAMERA_ERROR_INVALID_PARAMETER;
862
863                 return;
864         }
865
866         msg = muse_core_msg_new(api, NULL);
867
868         __send_message_get_return(cb_info, api, msg, timeout, ret);
869 }
870
871
872 void _camera_msg_send_param1(int api, camera_cb_info_s *cb_info,
873         int *ret, camera_msg_param *param, int timeout)
874 {
875         int array_length;
876         char *msg = NULL;
877
878         if (!cb_info || !param) {
879                 CAM_LOG_ERROR("invalid pointer : api %d - %p %p", api, cb_info, param);
880
881                 if (ret)
882                         *ret = CAMERA_ERROR_INVALID_PARAMETER;
883
884                 return;
885         }
886
887         CAM_LOG_DEBUG("type[%d], name[%s]", param->type, param->name);
888
889         switch (param->type) {
890         case MUSE_TYPE_INT:
891                 msg = muse_core_msg_new(api,
892                         param->type, param->name, param->value.value_INT,
893                         NULL);
894                 break;
895         case MUSE_TYPE_STRING:
896                 msg = muse_core_msg_new(api,
897                         param->type, param->name, param->value.value_STRING,
898                         NULL);
899                 break;
900         case MUSE_TYPE_ARRAY:
901                 array_length = param->value_size / sizeof(int) + \
902                         (param->value_size % sizeof(int) ? 1 : 0);
903
904                 msg = muse_core_msg_new(api,
905                         param->type, param->name, array_length, param->value.value_ARRAY,
906                         NULL);
907                 break;
908         default:
909                 CAM_LOG_ERROR("unknown type %d", param->type);
910                 break;
911         }
912
913         __send_message_get_return(cb_info, api, msg, timeout, ret);
914 }
915
916
917 void _camera_msg_send_param2_int(int api, camera_cb_info_s *cb_info,
918         int *ret, camera_msg_param *param0, camera_msg_param *param1, int timeout)
919 {
920         char *msg = NULL;
921
922         if (!cb_info || !param0 || !param1) {
923                 CAM_LOG_ERROR("invalid ptr %p %p %p : api %d",
924                         cb_info, param0, param1, api);
925
926                 if (ret)
927                         *ret = CAMERA_ERROR_INVALID_PARAMETER;
928
929                 return;
930         }
931
932         CAM_LOG_DEBUG("api[%d], param0[%s:%d], param1[%s:%d]",
933                 api,
934                 param0->name, param0->value.value_INT,
935                 param1->name, param1->value.value_INT);
936
937         msg = muse_core_msg_new(api,
938                 param0->type, param0->name, param0->value.value_INT,
939                 param1->type, param1->name, param1->value.value_INT,
940                 NULL);
941
942         __send_message_get_return(cb_info, api, msg, timeout, ret);
943 }
944
945
946 void _camera_msg_return_buffer(int ret_fd, camera_cb_info_s *cb_info)
947 {
948         camera_msg_param param;
949
950         if (ret_fd < 0) {
951                 CAM_LOG_WARNING("invalid fd %d", ret_fd);
952                 return;
953         }
954
955         CAMERA_MSG_PARAM_SET(param, INT, ret_fd);
956
957         _camera_msg_send_param1(MUSE_CAMERA_API_RETURN_BUFFER, cb_info, NULL, &param, 0);
958 }
959
960
961 int _camera_get_tbm_format(int in_format, uint32_t *out_format)
962 {
963         if (in_format <= MM_PIXEL_FORMAT_INVALID ||
964             in_format >= MM_PIXEL_FORMAT_NUM ||
965             out_format == NULL) {
966                 CAM_LOG_ERROR("INVALID_PARAMETER : in_format %d, out_format ptr %p", in_format, out_format);
967                 return CAMERA_ERROR_INVALID_PARAMETER;
968         }
969
970         switch (in_format) {
971         case MM_PIXEL_FORMAT_NV12:
972         case MM_PIXEL_FORMAT_NV12T:
973                 *out_format = TBM_FORMAT_NV12;
974                 break;
975 //LCOV_EXCL_START
976         case MM_PIXEL_FORMAT_NV16:
977                 *out_format = TBM_FORMAT_NV16;
978                 break;
979         case MM_PIXEL_FORMAT_NV21:
980                 *out_format = TBM_FORMAT_NV21;
981                 break;
982         case MM_PIXEL_FORMAT_YUYV:
983                 *out_format = TBM_FORMAT_YUYV;
984                 break;
985         case MM_PIXEL_FORMAT_UYVY:
986         case MM_PIXEL_FORMAT_ITLV_JPEG_UYVY:
987                 *out_format = TBM_FORMAT_UYVY;
988                 break;
989         case MM_PIXEL_FORMAT_422P:
990                 *out_format = TBM_FORMAT_YUV422;
991                 break;
992         case MM_PIXEL_FORMAT_I420:
993                 *out_format = TBM_FORMAT_YUV420;
994                 break;
995         case MM_PIXEL_FORMAT_YV12:
996                 *out_format = TBM_FORMAT_YVU420;
997                 break;
998         case MM_PIXEL_FORMAT_RGB565:
999                 *out_format = TBM_FORMAT_RGB565;
1000                 break;
1001         case MM_PIXEL_FORMAT_RGB888:
1002                 *out_format = TBM_FORMAT_RGB888;
1003                 break;
1004         case MM_PIXEL_FORMAT_RGBA:
1005                 *out_format = TBM_FORMAT_RGBA8888;
1006                 break;
1007         case MM_PIXEL_FORMAT_ARGB:
1008                 *out_format = TBM_FORMAT_ARGB8888;
1009                 break;
1010         default:
1011                 CAM_LOG_ERROR("invalid in_format %d", in_format);
1012                 return CAMERA_ERROR_INVALID_PARAMETER;
1013 //LCOV_EXCL_STOP
1014         }
1015
1016         return CAMERA_ERROR_NONE;
1017 }
1018
1019
1020 int _camera_get_media_packet_mimetype(int in_format, media_format_mimetype_e *mimetype)
1021 {
1022         if (in_format <= MM_PIXEL_FORMAT_INVALID ||
1023             in_format >= MM_PIXEL_FORMAT_NUM ||
1024             mimetype == NULL) {
1025                 CAM_LOG_ERROR("INVALID_PARAMETER : in_format %d, mimetype ptr %p", in_format, mimetype);
1026                 return CAMERA_ERROR_INVALID_PARAMETER;
1027         }
1028
1029         switch (in_format) {
1030         case MM_PIXEL_FORMAT_NV12:
1031         case MM_PIXEL_FORMAT_NV12T:
1032                 *mimetype = MEDIA_FORMAT_NV12;
1033                 break;
1034 //LCOV_EXCL_START
1035         case MM_PIXEL_FORMAT_NV16:
1036                 *mimetype = MEDIA_FORMAT_NV16;
1037                 break;
1038         case MM_PIXEL_FORMAT_NV21:
1039                 *mimetype = MEDIA_FORMAT_NV21;
1040                 break;
1041         case MM_PIXEL_FORMAT_YUYV:
1042                 *mimetype = MEDIA_FORMAT_YUYV;
1043                 break;
1044         case MM_PIXEL_FORMAT_UYVY:
1045         case MM_PIXEL_FORMAT_ITLV_JPEG_UYVY:
1046                 *mimetype = MEDIA_FORMAT_UYVY;
1047                 break;
1048         case MM_PIXEL_FORMAT_422P:
1049                 *mimetype = MEDIA_FORMAT_422P;
1050                 break;
1051         case MM_PIXEL_FORMAT_I420:
1052                 *mimetype = MEDIA_FORMAT_I420;
1053                 break;
1054         case MM_PIXEL_FORMAT_YV12:
1055                 *mimetype = MEDIA_FORMAT_YV12;
1056                 break;
1057         case MM_PIXEL_FORMAT_RGB565:
1058                 *mimetype = MEDIA_FORMAT_RGB565;
1059                 break;
1060         case MM_PIXEL_FORMAT_RGB888:
1061                 *mimetype = MEDIA_FORMAT_RGB888;
1062                 break;
1063         case MM_PIXEL_FORMAT_RGBA:
1064                 *mimetype = MEDIA_FORMAT_RGBA;
1065                 break;
1066         case MM_PIXEL_FORMAT_ARGB:
1067                 *mimetype = MEDIA_FORMAT_ARGB;
1068                 break;
1069         case MM_PIXEL_FORMAT_ENCODED_H264:
1070                 /* TODO: How can we determine the profile for H.264 format? */
1071                 *mimetype = MEDIA_FORMAT_H264_SP;
1072                 break;
1073         case MM_PIXEL_FORMAT_ENCODED_MJPEG:
1074                 *mimetype = MEDIA_FORMAT_MJPEG;
1075                 break;
1076         case MM_PIXEL_FORMAT_ENCODED_VP8:
1077                 *mimetype = MEDIA_FORMAT_VP8;
1078                 break;
1079         case MM_PIXEL_FORMAT_ENCODED_VP9:
1080                 *mimetype = MEDIA_FORMAT_VP9;
1081                 break;
1082         default:
1083                 CAM_LOG_ERROR("unsupported format[%d]", in_format);
1084                 return CAMERA_ERROR_NOT_SUPPORTED;
1085 //LCOV_EXCL_STOP
1086         }
1087
1088         return CAMERA_ERROR_NONE;
1089 }
1090
1091
1092 static int __camera_create_media_packet_data(int ret_fd, int *tfd, int num_buffer_fd, tbm_bo bo,
1093         tbm_bo *buffer_bo, tbm_bo data_bo, camera_media_packet_data **mp_data)
1094 {
1095         int i = 0;
1096         int ret = CAMERA_ERROR_NONE;
1097         camera_media_packet_data *new_mp_data = NULL;
1098
1099         if (!tfd || !mp_data) {
1100                 CAM_LOG_ERROR("NULL param[%p,%p]", tfd, mp_data);
1101                 return CAMERA_ERROR_INVALID_PARAMETER;
1102         }
1103
1104         new_mp_data = g_new0(camera_media_packet_data, 1);
1105
1106         new_mp_data->ret_fd = ret_fd;
1107         new_mp_data->fd = tfd[0];
1108         new_mp_data->num_buffer_fd = num_buffer_fd;
1109         new_mp_data->bo = bo;
1110
1111         CAM_LOG_VERBOSE("tfd[%d], ret fd[%d]", new_mp_data->fd, new_mp_data->ret_fd);
1112
1113         if (data_bo) {
1114                 /* non-zero copy */
1115                 new_mp_data->data_bo = data_bo;
1116                 new_mp_data->data_fd = tfd[1];
1117
1118                 CAM_LOG_VERBOSE("bo[%p], fd[%d]",
1119                         new_mp_data->data_bo, new_mp_data->data_fd);
1120         } else {
1121                 /* zero copy */
1122                 for (i = 0 ; i < num_buffer_fd ; i++) {
1123                         new_mp_data->buffer_bo[i] = buffer_bo[i];
1124                         new_mp_data->buffer_fd[i] = (tbm_fd)tfd[i + 1];
1125
1126                         CAM_LOG_VERBOSE("    [%d] bo[%p], fd[%d]",
1127                                 i, new_mp_data->buffer_bo[i], new_mp_data->buffer_fd[i]);
1128                 }
1129
1130                 for (i = num_buffer_fd ; i < MUSE_NUM_FD ; i++)
1131                         new_mp_data->buffer_fd[i] = CAMERA_FD_INIT;
1132
1133                 new_mp_data->data_fd = CAMERA_FD_INIT;
1134         }
1135
1136         *mp_data = new_mp_data;
1137
1138         CAM_LOG_DEBUG("mp_data %p", new_mp_data);
1139
1140         return ret;
1141 }
1142
1143 static void __camera_release_media_packet_data(camera_media_packet_data *mp_data, camera_cb_info_s *cb_info)
1144 {
1145         int i = 0;
1146
1147         if (!mp_data || !cb_info) {
1148                 CAM_LOG_ERROR("NULL pointer %p %p", mp_data, cb_info);
1149                 return;
1150         }
1151
1152         CAM_LOG_VERBOSE("tfd[%d], ret fd[%d]", mp_data->fd, mp_data->ret_fd);
1153
1154         /* release imported bo and close fd */
1155         for (i = 0 ; i < mp_data->num_buffer_fd ; i++) {
1156                 CAM_LOG_VERBOSE("    release buffer[%d] fd[%d],bo[%p]",
1157                         i, mp_data->buffer_fd[i], mp_data->buffer_bo[i]);
1158
1159                 tbm_bo_unref(mp_data->buffer_bo[i]);
1160
1161                 if (CAMERA_IS_FD_VALID(mp_data->buffer_fd[i]))
1162                         close(mp_data->buffer_fd[i]);
1163                 else
1164                         CAM_LOG_WARNING("invalid fd[%d] for buffer[%d]", mp_data->buffer_fd[i], i);
1165         }
1166
1167         if (mp_data->data_bo) {
1168                 CAM_LOG_VERBOSE("release data_fd[%d],data_bo[%p]",
1169                         mp_data->data_fd, mp_data->data_bo);
1170
1171                 tbm_bo_unref(mp_data->data_bo);
1172
1173                 if (CAMERA_IS_FD_VALID(mp_data->data_fd))
1174                         close(mp_data->data_fd);
1175                 else
1176                         CAM_LOG_WARNING("invalid data_fd[%d]", mp_data->data_fd);
1177         }
1178
1179         CAM_LOG_VERBOSE("release fd[%d],bo[%p]", mp_data->fd, mp_data->bo);
1180
1181         tbm_bo_unref(mp_data->bo);
1182
1183         if (CAMERA_IS_FD_VALID(mp_data->fd))
1184                 close(mp_data->fd);
1185         else
1186                 CAM_LOG_WARNING("invalid fd[%d]", mp_data->fd);
1187
1188         /* return buffer */
1189         _camera_msg_return_buffer(mp_data->ret_fd, cb_info);
1190
1191         g_free(mp_data);
1192 }
1193
1194
1195 static tbm_surface_h __camera_get_tbm_surface(MMCamcorderVideoStreamDataType *stream, camera_media_packet_data *mp_data)
1196 {
1197         int i = 0;
1198         int ret = CAMERA_ERROR_NONE;
1199         uint32_t tbm_format = 0;
1200         tbm_bo bos[BUFFER_MAX_PLANE_NUM] = {NULL, };
1201         tbm_surface_info_s tsurf_info;
1202
1203         if (!stream || !mp_data) {
1204                 CAM_LOG_ERROR("NULL param [%p,%p]", stream, mp_data);
1205                 return NULL;
1206         }
1207
1208         if (mp_data->num_buffer_fd < 1 && !mp_data->data_bo) {
1209                 CAM_LOG_ERROR("No valid data");
1210                 return NULL;
1211         }
1212
1213         ret = _camera_get_tbm_format(stream->format, &tbm_format);
1214         if (ret != CAMERA_ERROR_NONE)
1215                 return NULL;
1216
1217         memset(&tsurf_info, 0x0, sizeof(tbm_surface_info_s));
1218
1219         if (mp_data->num_buffer_fd > 0) {
1220                 for (i = 0 ; i < mp_data->num_buffer_fd ; i++)
1221                         bos[i] = mp_data->buffer_bo[i];
1222         } else {
1223                 bos[0] = mp_data->data_bo;
1224         }
1225
1226         tsurf_info.width = stream->width;
1227         tsurf_info.height = stream->height;
1228         tsurf_info.format = tbm_format;
1229         tsurf_info.bpp = tbm_surface_internal_get_bpp(tbm_format);
1230         tsurf_info.num_planes = tbm_surface_internal_get_num_planes(tbm_format);
1231
1232         switch (tbm_format) {
1233         case TBM_FORMAT_NV12:   /* fall through */
1234         case TBM_FORMAT_NV21:   /* fall through */
1235         case TBM_FORMAT_YUV420: /* fall through */
1236         case TBM_FORMAT_YVU420: /* fall through */
1237         case TBM_FORMAT_UYVY:   /* fall through */
1238         case TBM_FORMAT_YUYV:
1239                 for (i = 0 ; i < (int)tsurf_info.num_planes ; i++) {
1240                         tsurf_info.planes[i].stride = stream->stride[i];
1241                         tsurf_info.planes[i].size = stream->stride[i] * stream->elevation[i];
1242                         if (i != 0 && mp_data->num_buffer_fd <= 1)
1243                                 tsurf_info.planes[i].offset = tsurf_info.planes[i - 1].offset + tsurf_info.planes[i - 1].size;
1244                         tsurf_info.size += tsurf_info.planes[i].size;
1245
1246                         CAM_LOG_VERBOSE("[plane:%d] st[%d], el[%d], size[%d]",
1247                                 i, stream->stride[i], stream->elevation[i], tsurf_info.planes[i].size);
1248                 }
1249                 break;
1250 //LCOV_EXCL_START
1251         case TBM_FORMAT_RGB565:     /* fall through */
1252         case TBM_FORMAT_RGB888:     /* fall through */
1253         case TBM_FORMAT_RGBA8888:   /* fall through */
1254         case TBM_FORMAT_ARGB8888:
1255                 tsurf_info.planes[0].size = stream->data.rgb.length_data;
1256                 tsurf_info.planes[0].offset = 0;
1257                 tsurf_info.size = stream->data.rgb.length_data;
1258                 break;
1259         default:
1260                 CAM_LOG_ERROR("Not supported format[%d]", stream->format);
1261                 return NULL;
1262 //LCOV_EXCL_STOP
1263         }
1264
1265         return tbm_surface_internal_create_with_bos(&tsurf_info, bos,
1266                 mp_data->num_buffer_fd > 0 ? mp_data->num_buffer_fd : 1);
1267 }
1268
1269
1270 static int __camera_update_media_packet_format(camera_cb_info_s *cb_info, MMCamcorderVideoStreamDataType *stream)
1271 {
1272         int ret = CAMERA_ERROR_NONE;
1273         int pkt_fmt_width = 0;
1274         int pkt_fmt_height = 0;
1275         bool make_pkt_fmt = false;
1276         media_format_mimetype_e mimetype = MEDIA_FORMAT_NV12;
1277         media_format_mimetype_e pkt_fmt_mimetype = MEDIA_FORMAT_NV12;
1278
1279         if (!cb_info || !stream) {
1280                 CAM_LOG_ERROR("invalid parameter - %p, %p", cb_info, stream);
1281                 return CAMERA_ERROR_INVALID_PARAMETER;
1282         }
1283
1284         ret = _camera_get_media_packet_mimetype(stream->format, &mimetype);
1285         if (ret != CAMERA_ERROR_NONE)
1286                 return ret;
1287
1288         /* check media packet format */
1289         if (cb_info->pkt_fmt) {
1290                 media_format_get_video_info(cb_info->pkt_fmt,
1291                         &pkt_fmt_mimetype, &pkt_fmt_width, &pkt_fmt_height, NULL, NULL);
1292
1293                 CAM_LOG_INFO("pkt_fmt %dx%d - stream %dx%d",
1294                         pkt_fmt_width, pkt_fmt_height, stream->width, stream->height);
1295
1296                 if (pkt_fmt_mimetype != mimetype ||
1297                         pkt_fmt_width != stream->width ||
1298                         pkt_fmt_height != stream->height) {
1299                         CAM_LOG_WARNING("change fmt[previous:0x%x,%dx%d]",
1300                                         pkt_fmt_mimetype, pkt_fmt_width, pkt_fmt_height);
1301
1302                         media_format_unref(cb_info->pkt_fmt);
1303                         cb_info->pkt_fmt = NULL;
1304                         make_pkt_fmt = true;
1305                 }
1306         } else {
1307                 make_pkt_fmt = true;
1308         }
1309
1310         /* create packet format */
1311         if (make_pkt_fmt) {
1312                 CAM_LOG_WARNING("make new fmt - 0x%x, %dx%d",
1313                         mimetype, stream->width, stream->height);
1314
1315                 ret = media_format_create(&cb_info->pkt_fmt);
1316                 if (ret != MEDIA_FORMAT_ERROR_NONE) {
1317                         CAM_LOG_ERROR("media_format_create failed 0x%x", ret);
1318                         return CAMERA_ERROR_INVALID_OPERATION;
1319                 }
1320
1321                 ret = media_format_set_video_mime(cb_info->pkt_fmt, mimetype);
1322                 ret |= media_format_set_video_width(cb_info->pkt_fmt, stream->width);
1323                 ret |= media_format_set_video_height(cb_info->pkt_fmt, stream->height);
1324                 if (ret != MEDIA_FORMAT_ERROR_NONE) {
1325                         CAM_LOG_ERROR("media format set failed 0x%x", ret);
1326                         return CAMERA_ERROR_INVALID_OPERATION;
1327                 }
1328         }
1329
1330         return CAMERA_ERROR_NONE;
1331 }
1332
1333
1334 static int __camera_create_media_packet(camera_cb_info_s *cb_info, MMCamcorderVideoStreamDataType *stream,
1335         camera_media_packet_data *mp_data, media_packet_h *packet)
1336 {
1337         media_packet_h pkt = NULL;
1338         tbm_surface_h tsurf = NULL;
1339         int ret = CAMERA_ERROR_NONE;
1340
1341         if (!cb_info || !stream || !mp_data || !packet) {
1342                 CAM_LOG_ERROR("invalid parameter - %p, %p, %p, %p",
1343                         cb_info, stream, mp_data, packet);
1344                 return CAMERA_ERROR_INVALID_PARAMETER;
1345         }
1346
1347         ret = __camera_update_media_packet_format(cb_info, stream);
1348         if (ret != CAMERA_ERROR_NONE)
1349                 return ret;
1350
1351         if (stream->data_type == MM_CAM_STREAM_DATA_ENCODED) {
1352                 ret = media_packet_new_from_external_memory(cb_info->pkt_fmt,
1353                         stream->data.encoded.data, stream->data.encoded.length_data,
1354                         (media_packet_dispose_cb)_camera_media_packet_dispose, (void *)cb_info,
1355                         &pkt);
1356         } else {
1357                 tsurf = __camera_get_tbm_surface(stream, mp_data);
1358                 if (!tsurf) {
1359                         CAM_LOG_ERROR("get tbm surface failed");
1360                         ret = CAMERA_ERROR_INVALID_OPERATION;
1361                         goto _PACKET_CREATE_FAILED;
1362                 }
1363
1364                 ret = media_packet_new_from_tbm_surface(cb_info->pkt_fmt,
1365                         tsurf, (media_packet_dispose_cb)_camera_media_packet_dispose,
1366                         (void *)cb_info, &pkt);
1367         }
1368
1369         if (ret != MEDIA_PACKET_ERROR_NONE) {
1370                 CAM_LOG_ERROR("media_packet_new[t:%d] failed 0x%x", stream->data_type, ret);
1371                 goto _PACKET_CREATE_FAILED;
1372         }
1373
1374         ret = media_packet_set_extra(pkt, (void *)mp_data);
1375         if (ret != MEDIA_PACKET_ERROR_NONE) {
1376                 CAM_LOG_ERROR("media_packet_set_extra failed");
1377                 goto _PACKET_CREATE_FAILED;
1378         }
1379
1380         /* set timestamp : msec -> nsec */
1381         if (media_packet_set_pts(pkt, (uint64_t)(stream->timestamp) * 1000000) != MEDIA_PACKET_ERROR_NONE)
1382                 CAM_LOG_WARNING("media_packet_set_pts failed");
1383
1384         if (media_packet_set_rotate_method(pkt, (media_packet_rotate_method_e)stream->rotation) != MEDIA_PACKET_ERROR_NONE)
1385                 CAM_LOG_WARNING("media_packet_set_rotate_method failed");
1386
1387         CAM_LOG_VERBOSE("new media packet[%p], tbm surface[%p]", pkt, tsurf);
1388
1389         *packet = pkt;
1390
1391         return CAMERA_ERROR_NONE;
1392
1393 _PACKET_CREATE_FAILED:
1394         if (tsurf)
1395                 tbm_surface_destroy(tsurf);
1396         if (pkt)
1397                 media_packet_unref(pkt);
1398
1399         return CAMERA_ERROR_INVALID_OPERATION;
1400 }
1401
1402 void _camera_media_packet_dispose(media_packet_h pkt, void *user_data)
1403 {
1404         int ret = 0;
1405         camera_cb_info_s *cb_info = (camera_cb_info_s *)user_data;
1406         camera_media_packet_data *mp_data = NULL;
1407         tbm_surface_h tsurf = NULL;
1408
1409         if (!pkt || !cb_info) {
1410                 CAM_LOG_ERROR("NULL pointer %p %p", pkt, cb_info);
1411                 return;
1412         }
1413
1414         ret = media_packet_get_extra(pkt, (void **)&mp_data);
1415         if (ret != MEDIA_PACKET_ERROR_NONE || !mp_data) {
1416                 CAM_LOG_ERROR("media_packet_get_extra failed 0x%x", ret);
1417                 return;
1418         }
1419
1420         ret = media_packet_get_tbm_surface(pkt, &tsurf);
1421
1422         CAM_LOG_VERBOSE("media packet[%p] - mp_data[%p],tsurf[%p]",
1423                 pkt, mp_data, tsurf);
1424
1425         if (tsurf)
1426                 tbm_surface_destroy(tsurf);
1427
1428         g_mutex_lock(&cb_info->mp_data_mutex);
1429         __camera_release_media_packet_data(mp_data, cb_info);
1430         g_mutex_unlock(&cb_info->mp_data_mutex);
1431 }
1432
1433 static void __camera_client_user_callback(camera_cb_info_s *cb_info, char *recv_msg, muse_camera_event_e event, int *tfd)
1434 {
1435         int param1 = 0;
1436         int param2 = 0;
1437
1438         if (!recv_msg || event >= MUSE_CAMERA_EVENT_TYPE_NUM) {
1439                 CAM_LOG_ERROR("invalid parameter - camera msg %p, event %d", recv_msg, event);
1440                 return;
1441         }
1442
1443         CAM_LOG_DEBUG("get camera msg[%s], event[%d]", recv_msg, event);
1444
1445         g_mutex_lock(&cb_info->user_cb_mutex[event]);
1446
1447         if (cb_info->user_cb[event] == NULL) {
1448                 if (event != MUSE_CAMERA_EVENT_TYPE_PREVIEW &&
1449                         event != MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW &&
1450                         event != MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION &&
1451                         event != MUSE_CAMERA_EVENT_TYPE_CAPTURE) {
1452                         g_mutex_unlock(&cb_info->user_cb_mutex[event]);
1453                         CAM_LOG_WARNING("NULL callback for event %d, return here", event);
1454                         return;
1455                 }
1456
1457                 /* return buffer message should be sent for some events.
1458                  - MUSE_CAMERA_EVENT_TYPE_PREVIEW
1459                  - MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW
1460                  - MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION
1461                  - MUSE_CAMERA_EVENT_TYPE_CAPTURE
1462                 */
1463         }
1464
1465         switch (event) {
1466         case MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE:
1467                 {
1468                         int previous = 0;
1469                         int current = 0;
1470                         int by_policy = 0;
1471
1472                         muse_camera_msg_get(previous, recv_msg);
1473                         muse_camera_msg_get(current, recv_msg);
1474                         muse_camera_msg_get(by_policy, recv_msg);
1475
1476                         CAM_LOG_INFO("STATE CHANGE - previous %d, current %d, by_policy %d",
1477                                 previous, current, by_policy);
1478
1479                         ((camera_state_changed_cb)cb_info->user_cb[event])((camera_state_e)previous,
1480                                 (camera_state_e)current, (bool)by_policy, cb_info->user_data[event]);
1481                 }
1482                 break;
1483         case MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE:
1484                 {
1485                         int state = 0;
1486
1487                         muse_camera_msg_get(state, recv_msg);
1488
1489                         CAM_LOG_INFO("FOCUS state - %d", state);
1490
1491                         ((camera_focus_changed_cb)cb_info->user_cb[event])((camera_focus_state_e)state, cb_info->user_data[event]);
1492                 }
1493                 break;
1494         case MUSE_CAMERA_EVENT_TYPE_CAPTURE_COMPLETE:
1495                 CAM_LOG_INFO("CAPTURE_COMPLETED");
1496                 ((camera_capture_completed_cb)cb_info->user_cb[event])(cb_info->user_data[event]);
1497                 break;
1498         case MUSE_CAMERA_EVENT_TYPE_PREVIEW:
1499         case MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW:
1500                 __camera_event_handler_preview(cb_info, recv_msg, tfd);
1501                 break;
1502 //LCOV_EXCL_START
1503         case MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS:
1504                 {
1505                         int percent = 0;
1506
1507                         muse_camera_msg_get(percent, recv_msg);
1508
1509                         CAM_LOG_INFO("HDR progress - %d %%", percent);
1510
1511                         ((camera_attr_hdr_progress_cb)cb_info->user_cb[event])(percent, cb_info->user_data[event]);
1512                 }
1513                 break;
1514         case MUSE_CAMERA_EVENT_TYPE_INTERRUPTED:
1515                 {
1516                         int policy = 0;
1517                         int previous = 0;
1518                         int current = 0;
1519
1520                         muse_camera_msg_get(policy, recv_msg);
1521                         muse_camera_msg_get(previous, recv_msg);
1522                         muse_camera_msg_get(current, recv_msg);
1523
1524                         CAM_LOG_WARNING("INTERRUPTED - policy %d, state %d -> %d", policy, previous, current);
1525
1526                         ((camera_interrupted_cb)cb_info->user_cb[event])((camera_policy_e)policy,
1527                                 (camera_state_e)previous, (camera_state_e)current, cb_info->user_data[event]);
1528                 }
1529                 break;
1530         case MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED:
1531                 {
1532                         int policy = 0;
1533                         int state = 0;
1534
1535                         muse_camera_msg_get(policy, recv_msg);
1536                         muse_camera_msg_get(state, recv_msg);
1537
1538                         CAM_LOG_WARNING("INTERRUPT_STARTED - policy %d, state %d", policy, state);
1539
1540                         ((camera_interrupt_started_cb)cb_info->user_cb[event])((camera_policy_e)policy,
1541                                 (camera_state_e)state, cb_info->user_data[event]);
1542                 }
1543                 break;
1544         case MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION:
1545                 __camera_event_handler_face_detection(cb_info, recv_msg, tfd);
1546                 break;
1547         case MUSE_CAMERA_EVENT_TYPE_ERROR:
1548                 {
1549                         int error = 0;
1550                         int current_state = 0;
1551
1552                         muse_camera_msg_get(error, recv_msg);
1553                         muse_camera_msg_get(current_state, recv_msg);
1554
1555                         CAM_LOG_ERROR("ERROR - error 0x%x, current_state %d", error, current_state);
1556
1557                         ((camera_error_cb)cb_info->user_cb[event])((camera_error_e)error,
1558                                 (camera_state_e)current_state, cb_info->user_data[event]);
1559                 }
1560                 break;
1561 //LCOV_EXCL_STOP
1562         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PREVIEW_RESOLUTION:
1563                 /* fall through */
1564         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_CAPTURE_RESOLUTION:
1565                 muse_camera_msg_get(param1, recv_msg);
1566                 muse_camera_msg_get(param2, recv_msg);
1567
1568                 CAM_LOG_DEBUG("event[%d] SUPPORTED[%d],[%d]", event, param1, param2);
1569
1570                 if (((camera_supported_cb_param2)cb_info->user_cb[event])(param1, param2, cb_info->user_data[event]) == false) {
1571                         cb_info->user_cb[event] = NULL;
1572                         cb_info->user_data[event] = NULL;
1573                         CAM_LOG_WARNING("stop foreach callback for event %d", event);
1574                 }
1575                 break;
1576         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_CAPTURE_FORMAT:
1577                 /* fall through */
1578         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PREVIEW_FORMAT:
1579                 /* fall through */
1580         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_AF_MODE:
1581                 /* fall through */
1582         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_EXPOSURE_MODE:
1583                 /* fall through */
1584         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_ISO:
1585                 /* fall through */
1586         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_WHITEBALANCE:
1587                 /* fall through */
1588         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_EFFECT:
1589                 /* fall through */
1590         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_SCENE_MODE:
1591                 /* fall through */
1592         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FLASH_MODE:
1593                 /* fall through */
1594         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FPS:
1595                 /* fall through */
1596         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FPS_BY_RESOLUTION:
1597                 /* fall through */
1598         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_STREAM_FLIP:
1599                 /* fall through */
1600         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_STREAM_ROTATION:
1601                 /* fall through */
1602 //LCOV_EXCL_START
1603         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_THEATER_MODE:
1604                 /* fall through */
1605         case MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PTZ_TYPE:
1606                 muse_camera_msg_get(param1, recv_msg);
1607
1608                 CAM_LOG_DEBUG("event[%d], SUPPORTED[%d] ", event, param1);
1609
1610                 if (((camera_supported_cb_param1)cb_info->user_cb[event])(param1, cb_info->user_data[event]) == false) {
1611                         cb_info->user_cb[event] = NULL;
1612                         cb_info->user_data[event] = NULL;
1613                         CAM_LOG_WARNING("stop foreach callback for event %d", event);
1614                 }
1615                 break;
1616 //LCOV_EXCL_STOP
1617         case MUSE_CAMERA_EVENT_TYPE_CAPTURE:
1618                 __camera_event_handler_capture(cb_info, recv_msg, tfd);
1619                 break;
1620         default:
1621                 CAM_LOG_WARNING("unhandled event %d", event);
1622                 break;
1623         }
1624
1625         g_mutex_unlock(&cb_info->user_cb_mutex[event]);
1626 }
1627
1628 static gboolean __camera_idle_event_callback(gpointer data)
1629 {
1630         camera_cb_info_s *cb_info = NULL;
1631         camera_idle_event_s *cam_idle_event = (camera_idle_event_s *)data;
1632
1633         if (cam_idle_event == NULL) {
1634                 CAM_LOG_ERROR("cam_idle_event is NULL");
1635                 return FALSE;
1636         }
1637
1638         /* lock event */
1639         g_mutex_lock(&g_cam_idle_event_lock);
1640
1641         cb_info = cam_idle_event->cb_info;
1642         if (cb_info == NULL) {
1643                 CAM_LOG_WARNING("camera cb_info is NULL. event %p %d", cam_idle_event, cam_idle_event->event);
1644                 g_mutex_unlock(&g_cam_idle_event_lock);
1645                 goto IDLE_EVENT_CALLBACK_DONE;
1646         }
1647
1648         /* remove event from list */
1649         if (cb_info->idle_event_list)
1650                 cb_info->idle_event_list = g_list_remove(cb_info->idle_event_list, (gpointer)cam_idle_event);
1651
1652         g_mutex_unlock(&g_cam_idle_event_lock);
1653
1654         /* user callback */
1655         __camera_client_user_callback(cb_info, cam_idle_event->recv_msg, cam_idle_event->event, cam_idle_event->tfd);
1656
1657 IDLE_EVENT_CALLBACK_DONE:
1658         /* release event */
1659         g_free(cam_idle_event);
1660         cam_idle_event = NULL;
1661
1662         return FALSE;
1663 }
1664
1665 static gpointer __camera_msg_handler_func(gpointer data)
1666 {
1667         int api = 0;
1668         int type = 0;
1669         camera_message_s *cam_msg = NULL;
1670         camera_idle_event_s *cam_idle_event = NULL;
1671         camera_msg_handler_info_s *handler_info = (camera_msg_handler_info_s *)data;
1672         camera_cb_info_s *cb_info = NULL;
1673         GThread *thread = NULL;
1674
1675         if (!handler_info || !handler_info->cb_info) {
1676                 CAM_LOG_ERROR("NULL handler %p", handler_info);
1677                 return NULL;
1678         }
1679
1680         cb_info = (camera_cb_info_s *)handler_info->cb_info;
1681         type = handler_info->type;
1682         thread = handler_info->thread;
1683
1684         CAM_LOG_INFO("t:%d start[thread:%p]", type, thread);
1685
1686         g_mutex_lock(&handler_info->mutex);
1687
1688         while (g_atomic_int_get(&handler_info->running)) {
1689                 if (g_queue_is_empty(handler_info->queue)) {
1690                         CAM_LOG_VERBOSE("t[%d] signal wait...", type);
1691                         g_cond_wait(&handler_info->cond, &handler_info->mutex);
1692                         CAM_LOG_VERBOSE("t[%d] signal received", type);
1693
1694                         if (g_atomic_int_get(&handler_info->running) == 0) {
1695                                 CAM_LOG_INFO("t:%d stop event thread", type);
1696                                 break;
1697                         }
1698                 }
1699
1700                 cam_msg = (camera_message_s *)g_queue_pop_head(handler_info->queue);
1701
1702                 g_mutex_unlock(&handler_info->mutex);
1703
1704                 if (cam_msg == NULL) {
1705                         CAM_LOG_ERROR("t:%d NULL message", type);
1706                         g_mutex_lock(&handler_info->mutex);
1707                         continue;
1708                 }
1709
1710                 api = cam_msg->api;
1711
1712                 if (api < MUSE_CAMERA_API_MAX) {
1713                         int ret = 0;
1714
1715                         g_mutex_lock(&cb_info->api_mutex[api]);
1716
1717                         if (muse_camera_msg_get(ret, cam_msg->recv_msg)) {
1718                                 if (cb_info->api_waiting[api] > 0) {
1719                                         cb_info->api_ret[api] = ret;
1720                                         cb_info->api_activating[api] = TRUE;
1721
1722                                         CAM_LOG_DEBUG("t[%d] camera api[%d] - return[0x%x]", type, api, ret);
1723
1724                                         g_cond_broadcast(&cb_info->api_cond[api]);
1725                                 } else {
1726                                         CAM_LOG_WARNING("no waiting for this api [%d]", api);
1727                                 }
1728                         } else {
1729                                 CAM_LOG_ERROR("t:%d failed to get camera ret for api %d, msg %s", type, api, cam_msg->recv_msg);
1730                         }
1731
1732                         g_mutex_unlock(&cb_info->api_mutex[api]);
1733                 } else if (api == MUSE_CAMERA_CB_EVENT) {
1734                         if (cam_msg->event == MUSE_CAMERA_EVENT_TYPE_INTERRUPTED) {
1735                                 CAM_LOG_WARNING("INTERRUPTED, release thread for preview cb");
1736                                 __destroy_msg_handler_thread(&cb_info->preview_cb_info);
1737                         }
1738
1739                         switch (cam_msg->event_class) {
1740                         case MUSE_CAMERA_EVENT_CLASS_THREAD_SUB:
1741                                 __camera_client_user_callback(cb_info, cam_msg->recv_msg, cam_msg->event, cam_msg->tfd);
1742                                 break;
1743                         case MUSE_CAMERA_EVENT_CLASS_THREAD_MAIN:
1744                                 cam_idle_event = g_new0(camera_idle_event_s, 1);
1745                                 if (cam_idle_event == NULL) {
1746                                         CAM_LOG_ERROR("t:%d cam_idle_event alloc failed", type);
1747                                         break;
1748                                 }
1749
1750                                 cam_idle_event->event = cam_msg->event;
1751                                 cam_idle_event->cb_info = cb_info;
1752
1753                                 strncpy(cam_idle_event->recv_msg, cam_msg->recv_msg, sizeof(cam_idle_event->recv_msg));
1754                                 memcpy(cam_idle_event->tfd, cam_msg->tfd, sizeof(cam_idle_event->tfd));
1755
1756                                 CAM_LOG_DEBUG("t[%d] add camera event[%d, %p] to IDLE",
1757                                         type, cam_msg->event, cam_idle_event);
1758
1759                                 g_mutex_lock(&g_cam_idle_event_lock);
1760                                 cb_info->idle_event_list = g_list_append(cb_info->idle_event_list, (gpointer)cam_idle_event);
1761                                 g_mutex_unlock(&g_cam_idle_event_lock);
1762
1763                                 g_idle_add_full(G_PRIORITY_DEFAULT,
1764                                         (GSourceFunc)__camera_idle_event_callback,
1765                                         (gpointer)cam_idle_event,
1766                                         NULL);
1767                                 break;
1768                         default:
1769                                 CAM_LOG_ERROR("t:%d not handled event class %d", type, cam_msg->event_class);
1770                                 break;
1771                         }
1772                 } else {
1773                         CAM_LOG_ERROR("t:%d unknown camera api[%d] message[%s]", type, api, cam_msg->recv_msg);
1774                 }
1775
1776                 g_free(cam_msg);
1777                 cam_msg = NULL;
1778
1779                 g_mutex_lock(&handler_info->mutex);
1780         }
1781
1782         /* remove remained event */
1783         while (!g_queue_is_empty(handler_info->queue)) {
1784                 cam_msg = (camera_message_s *)g_queue_pop_head(handler_info->queue);
1785                 if (cam_msg) {
1786                         CAM_LOG_INFO("t:%d remove message %p", type, cam_msg);
1787                         __camera_release_tfd(cam_msg->tfd);
1788                         g_free(cam_msg);
1789                 } else {
1790                         CAM_LOG_WARNING("t:%d NULL message", type);
1791                 }
1792         }
1793
1794         g_mutex_unlock(&handler_info->mutex);
1795
1796         CAM_LOG_INFO("t:%d return[thread:%p]", type, thread);
1797
1798         return NULL;
1799 }
1800
1801
1802 static void __camera_deactivate_idle_event_all(camera_cb_info_s *cb_info)
1803 {
1804         camera_idle_event_s *cam_idle_event = NULL;
1805         GList *list = NULL;
1806
1807         if (cb_info == NULL) {
1808                 CAM_LOG_ERROR("cb_info is NULL");
1809                 return;
1810         }
1811
1812         g_mutex_lock(&g_cam_idle_event_lock);
1813
1814         if (cb_info->idle_event_list == NULL) {
1815                 CAM_LOG_INFO("No remained idle event");
1816                 g_mutex_unlock(&g_cam_idle_event_lock);
1817                 return;
1818         }
1819
1820         list = cb_info->idle_event_list;
1821
1822         while (list) {
1823                 cam_idle_event = list->data;
1824                 list = g_list_next(list);
1825
1826                 if (!cam_idle_event) {
1827                         CAM_LOG_WARNING("Fail to remove idle event. The event is NULL");
1828                         continue;
1829                 }
1830
1831                 if (g_idle_remove_by_data(cam_idle_event)) {
1832                         CAM_LOG_WARNING("remove idle event %p done", cam_idle_event);
1833
1834                         cb_info->idle_event_list = g_list_remove(cb_info->idle_event_list, (gpointer)cam_idle_event);
1835
1836                         g_free(cam_idle_event);
1837                         cam_idle_event = NULL;
1838
1839                         continue;
1840                 }
1841
1842                 CAM_LOG_WARNING("set NULL cb_info for event %p %d, it will be freed on idle callback",
1843                         cam_idle_event, cam_idle_event->event);
1844
1845                 cam_idle_event->cb_info = NULL;
1846
1847                 cb_info->idle_event_list = g_list_remove(cb_info->idle_event_list, (gpointer)cam_idle_event);
1848         }
1849
1850         g_list_free(cb_info->idle_event_list);
1851         cb_info->idle_event_list = NULL;
1852
1853         g_mutex_unlock(&g_cam_idle_event_lock);
1854 }
1855
1856
1857 static void __camera_add_msg_to_queue(camera_cb_info_s *cb_info, int api, int event, int event_class, char *msg, int *tfd)
1858 {
1859         camera_message_s *cam_msg = NULL;
1860
1861         if (!cb_info || !msg) {
1862                 CAM_LOG_ERROR("NULL pointer %p %p", cb_info, msg);
1863                 return;
1864         }
1865
1866         cam_msg = g_new0(camera_message_s, 1);
1867         if (!cam_msg) {
1868                 CAM_LOG_ERROR("failed to alloc cam_msg for [%s]", msg);
1869                 return;
1870         }
1871
1872         cam_msg->api = api;
1873         cam_msg->event = event;
1874         cam_msg->event_class = event_class;
1875
1876         if (tfd)
1877                 memcpy(cam_msg->tfd, tfd, sizeof(cam_msg->tfd));
1878
1879         strncpy(cam_msg->recv_msg, msg, sizeof(cam_msg->recv_msg) - 1);
1880
1881         CAM_LOG_DEBUG("add message to queue : api[%d], event[%d], event_class[%d]",
1882                 api, event, event_class);
1883
1884         if (event == MUSE_CAMERA_EVENT_TYPE_PREVIEW) {
1885                 if (!cb_info->preview_cb_info.thread) {
1886                         LOGI("The thread for preview cb is not created yet, create it now");
1887                         if (!__create_msg_handler_thread(&cb_info->preview_cb_info,
1888                                         CAMERA_MESSAGE_HANDLER_TYPE_PREVIEW_CB, "cam:preview_cb", cb_info)) {
1889                                 CAM_LOG_ERROR("failed to create thread for preview cb");
1890                                 g_free(cam_msg);
1891                                 return;
1892                         }
1893                 }
1894
1895                 g_mutex_lock(&cb_info->preview_cb_info.mutex);
1896                 g_queue_push_tail(cb_info->preview_cb_info.queue, (gpointer)cam_msg);
1897                 g_cond_signal(&cb_info->preview_cb_info.cond);
1898                 g_mutex_unlock(&cb_info->preview_cb_info.mutex);
1899         } else if (event == MUSE_CAMERA_EVENT_TYPE_CAPTURE) {
1900                 g_mutex_lock(&cb_info->capture_cb_info.mutex);
1901                 g_queue_push_tail(cb_info->capture_cb_info.queue, (gpointer)cam_msg);
1902                 g_cond_signal(&cb_info->capture_cb_info.cond);
1903                 g_mutex_unlock(&cb_info->capture_cb_info.mutex);
1904         } else {
1905                 g_mutex_lock(&cb_info->msg_handler_info.mutex);
1906                 g_queue_push_tail(cb_info->msg_handler_info.queue, (gpointer)cam_msg);
1907                 g_cond_signal(&cb_info->msg_handler_info.cond);
1908                 g_mutex_unlock(&cb_info->msg_handler_info.mutex);
1909         }
1910
1911         cam_msg = NULL;
1912 }
1913
1914
1915 static void __camera_process_msg(camera_cb_info_s *cb_info, char *msg, int *tfd)
1916 {
1917         int ret = CAMERA_ERROR_NONE;
1918         int api = -1;
1919         int api_class = -1;
1920         int event = -1;
1921         int event_class = -1;
1922         int get_type = -1;
1923         int get_index = -1;
1924
1925         if (!cb_info || !msg) {
1926                 CAM_LOG_ERROR("invalid ptr %p %p", cb_info, msg);
1927                 return;
1928         }
1929
1930         CAM_LOG_DEBUG("msg[%s]", msg);
1931
1932         if (!muse_camera_msg_get(api, msg)) {
1933                 CAM_LOG_ERROR("failed to get camera api");
1934                 return;
1935         }
1936
1937         if (api == MUSE_CAMERA_CB_EVENT) {
1938                 if (!muse_camera_msg_get(event, msg) ||
1939                         !muse_camera_msg_get(event_class, msg)) {
1940                         CAM_LOG_ERROR("failed to get camera event or event_class [%s]", msg);
1941                         return;
1942                 }
1943         } else {
1944                 if (!muse_camera_msg_get(api_class, msg)) {
1945                         CAM_LOG_ERROR("failed to get camera api_class [%s]", msg);
1946                         return;
1947                 }
1948         }
1949
1950         if (api_class == MUSE_CAMERA_API_CLASS_IMMEDIATE) {
1951                 if (api >= MUSE_CAMERA_API_MAX) {
1952                         CAM_LOG_ERROR("invalid api %d", api);
1953                         return;
1954                 }
1955
1956                 if (!muse_camera_msg_get(ret, msg)) {
1957                         CAM_LOG_ERROR("failed to get camera ret");
1958                         return;
1959                 }
1960
1961                 g_mutex_lock(&cb_info->api_mutex[api]);
1962
1963                 switch (api) {
1964                 case MUSE_CAMERA_API_CREATE:
1965                         if (ret != CAMERA_ERROR_NONE) {
1966                                 g_atomic_int_set(&cb_info->msg_recv_running, 0);
1967                                 CAM_LOG_ERROR("camera create error 0x%x. close client cb handler", ret);
1968                         }
1969                         break;
1970                 case MUSE_CAMERA_API_DESTROY:
1971                         if (ret == CAMERA_ERROR_NONE) {
1972                                 g_atomic_int_set(&cb_info->msg_recv_running, 0);
1973                                 CAM_LOG_INFO("camera destroy done. close client cb handler");
1974                         }
1975                         break;
1976                 default:
1977                         muse_camera_msg_get(get_type, msg);
1978                         if (get_type != MUSE_CAMERA_GET_TYPE_NONE) {
1979                                 if (get_type != MUSE_CAMERA_GET_TYPE_ARRAY)
1980                                         muse_camera_msg_get(get_index, msg);
1981
1982                                 switch (get_type) {
1983                                 case MUSE_CAMERA_GET_TYPE_INT:
1984                                         muse_core_msg_deserialize("get_value", msg, NULL, NULL, MUSE_TYPE_INT, &cb_info->get_int[get_index]);
1985                                         break;
1986                                 case MUSE_CAMERA_GET_TYPE_INT_PAIR:
1987                                         muse_core_msg_deserialize("get_value0", msg, NULL, NULL, MUSE_TYPE_INT, &cb_info->get_int_pair[get_index][0]);
1988                                         muse_core_msg_deserialize("get_value1", msg, NULL, NULL, MUSE_TYPE_INT, &cb_info->get_int_pair[get_index][1]);
1989                                         break;
1990                                 case MUSE_CAMERA_GET_TYPE_ARRAY:
1991                                         switch (api) {
1992                                         case MUSE_CAMERA_API_GET_DISPLAY_ROI_AREA:
1993                                                 muse_core_msg_deserialize("get_value",
1994                                                         msg, NULL, NULL, MUSE_TYPE_ARRAY, cb_info->get_display_roi_area);
1995                                                 CAM_LOG_INFO("get display roi %d,%d,%dx%d",
1996                                                         cb_info->get_display_roi_area[0],
1997                                                         cb_info->get_display_roi_area[1],
1998                                                         cb_info->get_display_roi_area[2],
1999                                                         cb_info->get_display_roi_area[3]);
2000                                                 break;
2001                                         case MUSE_CAMERA_API_ATTR_GET_GEOTAG:
2002                                                 muse_core_msg_deserialize("get_value",
2003                                                         msg, NULL, NULL, MUSE_TYPE_ARRAY, cb_info->get_geotag);
2004                                                 CAM_LOG_INFO("get geotag %lf, %lf, %lf",
2005                                                         cb_info->get_geotag[0], cb_info->get_geotag[1], cb_info->get_geotag[2]);
2006                                                 break;
2007                                         case MUSE_CAMERA_API_GET_EXTRA_PREVIEW_STREAM_FORMAT:
2008                                                 muse_core_msg_deserialize("get_value",
2009                                                         msg, NULL, NULL, MUSE_TYPE_ARRAY, cb_info->get_extra_preview_stream_format);
2010                                                 CAM_LOG_INFO("get extra preview stream format %d,%dx%d,%d",
2011                                                         cb_info->get_extra_preview_stream_format[0],
2012                                                         cb_info->get_extra_preview_stream_format[1],
2013                                                         cb_info->get_extra_preview_stream_format[2],
2014                                                         cb_info->get_extra_preview_stream_format[3]);
2015                                                 break;
2016                                         default:
2017                                                 CAM_LOG_WARNING("unknown api[%d]", api);
2018                                                 break;
2019                                         }
2020                                         break;
2021                                 case MUSE_CAMERA_GET_TYPE_STRING:
2022                                         muse_core_msg_deserialize("get_value", msg, NULL, NULL, MUSE_TYPE_STRING, cb_info->get_string[get_index]);
2023                                         break;
2024                                 default:
2025                                         CAM_LOG_WARNING("unknown type %d", get_type);
2026                                         break;
2027                                 }
2028                         }
2029                         break;
2030                 }
2031
2032                 if (cb_info->api_waiting[api] > 0) {
2033                         cb_info->api_ret[api] = ret;
2034                         cb_info->api_activating[api] = TRUE;
2035
2036                         g_cond_broadcast(&cb_info->api_cond[api]);
2037                 } else {
2038                         CAM_LOG_WARNING("no waiting for this api [%d]", api);
2039                 }
2040
2041                 g_mutex_unlock(&cb_info->api_mutex[api]);
2042         } else if (api_class == MUSE_CAMERA_API_CLASS_THREAD_SUB || api == MUSE_CAMERA_CB_EVENT) {
2043                 __camera_add_msg_to_queue(cb_info, api, event, event_class, msg, tfd);
2044         } else {
2045                 CAM_LOG_WARNING("unknown camera api %d, class %d", api, api_class);
2046         }
2047 }
2048
2049
2050 static gpointer __camera_msg_recv_func(gpointer data)
2051 {
2052         int i = 0;
2053         int recv_length = 0;
2054         int tfd[MUSE_NUM_FD] = {CAMERA_FD_INIT, CAMERA_FD_INIT, CAMERA_FD_INIT, CAMERA_FD_INIT};
2055         char *recv_msg = NULL;
2056         camera_cb_info_s *cb_info = (camera_cb_info_s *)data;
2057
2058         if (!cb_info) {
2059                 CAM_LOG_ERROR("cb_info NULL");
2060                 return NULL;
2061         }
2062
2063         CAM_LOG_INFO("start - fd : %d", cb_info->fd);
2064
2065         recv_msg = cb_info->recv_msg;
2066
2067         while (g_atomic_int_get(&cb_info->msg_recv_running)) {
2068                 for (i = 0 ; i < MUSE_NUM_FD ; i++)
2069                         tfd[i] = CAMERA_FD_INIT;
2070
2071                 recv_length = muse_core_msg_recv_fd(cb_info->fd, recv_msg, MUSE_MSG_MAX_LENGTH, tfd);
2072                 if (recv_length <= 0) {
2073                         cb_info->is_server_connected = FALSE;
2074                         CAM_LOG_ERROR("receive msg failed - server disconnected");
2075                         break;
2076                 }
2077
2078                 if (CAMERA_IS_FD_VALID(tfd[0]))
2079                         CAM_LOG_DEBUG("tfd[%d/%d/%d/%d]", tfd[0], tfd[1], tfd[2], tfd[3]);
2080
2081                 recv_msg[recv_length] = '\0';
2082
2083                 CAM_LOG_VERBOSE("recv msg[%s], length[%d]", recv_msg, recv_length);
2084
2085                 __camera_process_msg(cb_info, recv_msg, tfd);
2086         }
2087
2088         CAM_LOG_INFO("client cb exit - server connected %d", cb_info->is_server_connected);
2089
2090 //LCOV_EXCL_START
2091         if (!cb_info->is_server_connected) {
2092                 char *error_msg = NULL;
2093
2094                 if (cb_info->bufmgr == NULL) {
2095                         CAM_LOG_ERROR("No need to send error(handle is not created)");
2096                         return NULL;
2097                 }
2098
2099                 if (cb_info->fd < 0) {
2100                         CAM_LOG_ERROR("fd is closed in client side");
2101                         return NULL;
2102                 }
2103
2104                 /* send error msg for server disconnection */
2105                 error_msg = muse_core_msg_new(MUSE_CAMERA_CB_EVENT,
2106                         MUSE_TYPE_INT, "error", CAMERA_ERROR_SERVICE_DISCONNECTED,
2107                         MUSE_TYPE_INT, "current_state", CAMERA_STATE_NONE,
2108                         NULL);
2109
2110                 if (!error_msg) {
2111                         CAM_LOG_ERROR("error_msg failed");
2112                         return NULL;
2113                 }
2114
2115                 __camera_add_msg_to_queue(cb_info,
2116                         MUSE_CAMERA_CB_EVENT,
2117                         MUSE_CAMERA_EVENT_TYPE_ERROR,
2118                         MUSE_CAMERA_EVENT_CLASS_THREAD_MAIN,
2119                         error_msg,
2120                         NULL);
2121
2122                 muse_core_msg_free(error_msg);
2123                 error_msg = NULL;
2124
2125                 for (i = 0 ; i < MUSE_CAMERA_API_MAX ; i++) {
2126                         if (cb_info->api_waiting[i])
2127                                 g_cond_broadcast(&cb_info->api_cond[i]);
2128                 }
2129
2130                 CAM_LOG_ERROR("add error msg for service disconnection done");
2131         }
2132 //LCOV_EXCL_STOP
2133
2134         return NULL;
2135 }
2136
2137
2138 static bool __create_msg_handler_thread(camera_msg_handler_info_s *handler_info,
2139         int type, const char *thread_name, camera_cb_info_s *cb_info)
2140 {
2141         if (!handler_info || !thread_name || !cb_info) {
2142                 CAM_LOG_ERROR("t:%d NULL %p %p %p",
2143                         type, handler_info, thread_name, cb_info);
2144                 return false;
2145         }
2146
2147         g_autoptr(GMutexLocker) locker = g_mutex_locker_new(&handler_info->mutex);
2148
2149         if (handler_info->thread) {
2150                 CAM_LOG_WARNING("t:%d thread[%p] is already created", type, handler_info->thread);
2151                 return true;
2152         }
2153
2154         CAM_LOG_INFO("t:%d [%s]", type, thread_name);
2155
2156         handler_info->type = type;
2157         handler_info->queue = g_queue_new();
2158         if (handler_info->queue == NULL) {
2159                 CAM_LOG_ERROR("t:%d queue failed", type);
2160                 return false;
2161         }
2162
2163         handler_info->cb_info = (void *)cb_info;
2164         g_atomic_int_set(&handler_info->running, 1);
2165
2166         handler_info->thread = g_thread_try_new(thread_name,
2167                 __camera_msg_handler_func, (gpointer)handler_info, NULL);
2168         if (handler_info->thread == NULL) {
2169                 CAM_LOG_ERROR("t:%d thread failed", type);
2170
2171                 g_queue_free(handler_info->queue);
2172                 handler_info->queue = NULL;
2173
2174                 return false;
2175         }
2176
2177         CAM_LOG_INFO("t:%d done[thread:%p]", type, handler_info->thread);
2178
2179         return true;
2180 }
2181
2182
2183 static void __destroy_msg_handler_thread(camera_msg_handler_info_s *handler_info)
2184 {
2185         GThread *thread = NULL;
2186
2187         if (!handler_info) {
2188                 CAM_LOG_ERROR("NULL handler");
2189                 return;
2190         }
2191
2192         g_autoptr(GMutexLocker) locker = g_mutex_locker_new(&handler_info->mutex);
2193
2194         if (!handler_info->thread) {
2195                 CAM_LOG_WARNING("thread[t:%d] is not created", handler_info->type);
2196                 return;
2197         }
2198
2199         thread = handler_info->thread;
2200         handler_info->thread = NULL;
2201
2202         CAM_LOG_INFO("t:%d thread[%p]", handler_info->type, thread);
2203
2204         g_atomic_int_set(&handler_info->running, 0);
2205         g_cond_signal(&handler_info->cond);
2206
2207         g_clear_pointer(&locker, g_mutex_locker_free);
2208
2209         g_thread_join(thread);
2210
2211         g_queue_free(handler_info->queue);
2212         handler_info->queue = NULL;
2213
2214         CAM_LOG_INFO("t:%d done", handler_info->type);
2215 }
2216
2217
2218 static void __camera_mutex_cond_init(camera_cb_info_s *cb_info)
2219 {
2220         int i = 0;
2221
2222         if (!cb_info) {
2223                 CAM_LOG_ERROR("NULL cb_info");
2224                 return;
2225         }
2226
2227         for (i = 0 ; i < MUSE_CAMERA_API_MAX ; i++) {
2228                 g_mutex_init(&cb_info->api_mutex[i]);
2229                 g_cond_init(&cb_info->api_cond[i]);
2230         }
2231
2232         for (i = 0 ; i < MUSE_CAMERA_EVENT_TYPE_NUM ; i++)
2233                 g_mutex_init(&cb_info->user_cb_mutex[i]);
2234
2235         g_mutex_init(&cb_info->fd_lock);
2236         g_mutex_init(&cb_info->mp_data_mutex);
2237         g_mutex_init(&cb_info->bridge_lock);
2238
2239         g_mutex_init(&cb_info->msg_handler_info.mutex);
2240         g_mutex_init(&cb_info->preview_cb_info.mutex);
2241         g_mutex_init(&cb_info->capture_cb_info.mutex);
2242         g_cond_init(&cb_info->msg_handler_info.cond);
2243         g_cond_init(&cb_info->preview_cb_info.cond);
2244         g_cond_init(&cb_info->capture_cb_info.cond);
2245
2246         CAM_LOG_INFO("done");
2247 }
2248
2249
2250 static void __camera_mutex_cond_clear(camera_cb_info_s *cb_info)
2251 {
2252         int i = 0;
2253
2254         if (!cb_info) {
2255                 CAM_LOG_ERROR("NULL cb_info");
2256                 return;
2257         }
2258
2259         g_mutex_clear(&cb_info->msg_handler_info.mutex);
2260         g_mutex_clear(&cb_info->preview_cb_info.mutex);
2261         g_mutex_clear(&cb_info->capture_cb_info.mutex);
2262         g_cond_clear(&cb_info->msg_handler_info.cond);
2263         g_cond_clear(&cb_info->preview_cb_info.cond);
2264         g_cond_clear(&cb_info->capture_cb_info.cond);
2265
2266         g_mutex_clear(&cb_info->fd_lock);
2267         g_mutex_clear(&cb_info->mp_data_mutex);
2268         g_mutex_clear(&cb_info->bridge_lock);
2269
2270         for (i = 0 ; i < MUSE_CAMERA_EVENT_TYPE_NUM ; i++)
2271                 g_mutex_clear(&cb_info->user_cb_mutex[i]);
2272
2273         for (i = 0 ; i < MUSE_CAMERA_API_MAX ; i++) {
2274                 g_mutex_clear(&cb_info->api_mutex[i]);
2275                 g_cond_clear(&cb_info->api_cond[i]);
2276         }
2277
2278         CAM_LOG_INFO("done");
2279 }
2280
2281
2282 static camera_cb_info_s *__camera_client_callback_new(gint sockfd)
2283 {
2284         camera_cb_info_s *cb_info = NULL;
2285         gint i = 0;
2286
2287         g_return_val_if_fail(sockfd > 0, NULL);
2288
2289         cb_info = g_new0(camera_cb_info_s, 1);
2290         if (!cb_info) {
2291                 CAM_LOG_ERROR("cb_info failed");
2292                 goto ErrorExit;
2293         }
2294
2295         cb_info->api_waiting[MUSE_CAMERA_API_CREATE] = 1;
2296
2297         __camera_mutex_cond_init(cb_info);
2298
2299         /* message handler thread */
2300         if (!__create_msg_handler_thread(&cb_info->msg_handler_info,
2301                         CAMERA_MESSAGE_HANDLER_TYPE_GENERAL, "cam:msg_handler", cb_info)) {
2302                 CAM_LOG_ERROR("msg_handler_info failed");
2303                 goto ErrorExit;
2304         }
2305
2306         /* message handler thread for capture callback */
2307         if (!__create_msg_handler_thread(&cb_info->capture_cb_info,
2308                         CAMERA_MESSAGE_HANDLER_TYPE_CAPTURE_CB, "cam:capture_cb", cb_info)) {
2309                 CAM_LOG_ERROR("capture_cb_info failed");
2310                 goto ErrorExit;
2311         }
2312
2313         cb_info->fd = sockfd;
2314
2315         /* message receive thread */
2316         g_atomic_int_set(&cb_info->msg_recv_running, 1);
2317         cb_info->msg_recv_thread = g_thread_try_new("cam:msg_recv",
2318                 __camera_msg_recv_func, (gpointer)cb_info, NULL);
2319         if (cb_info->msg_recv_thread == NULL) {
2320                 CAM_LOG_ERROR("message receive thread creation failed");
2321                 goto ErrorExit;
2322         }
2323
2324         /* initialize fd */
2325         for (i = 0 ; i < MUSE_NUM_FD ; i++)
2326                 cb_info->fds[i] = CAMERA_FD_INIT;
2327
2328         cb_info->is_server_connected = TRUE;
2329
2330         return cb_info;
2331 //LCOV_EXCL_START
2332 ErrorExit:
2333         if (cb_info) {
2334                 __destroy_msg_handler_thread(&cb_info->msg_handler_info);
2335                 __destroy_msg_handler_thread(&cb_info->capture_cb_info);
2336
2337                 __camera_mutex_cond_clear(cb_info);
2338
2339                 g_free(cb_info);
2340                 cb_info = NULL;
2341         }
2342
2343         return NULL;
2344 //LCOV_EXCL_STOP
2345 }
2346
2347
2348 static void __camera_client_callback_destroy(camera_cb_info_s *cb_info)
2349 {
2350         if (!cb_info) {
2351                 CAM_LOG_ERROR("NULL cb_info");
2352                 return;
2353         }
2354
2355         CAM_LOG_INFO("msg_recv thread[%p] destroy", cb_info->msg_recv_thread);
2356
2357         g_thread_join(cb_info->msg_recv_thread);
2358         cb_info->msg_recv_thread = NULL;
2359
2360         CAM_LOG_INFO("msg_recv thread removed");
2361
2362         /* destroy msg handler threads */
2363         __destroy_msg_handler_thread(&cb_info->preview_cb_info);
2364         __destroy_msg_handler_thread(&cb_info->msg_handler_info);
2365         __destroy_msg_handler_thread(&cb_info->capture_cb_info);
2366
2367         __camera_mutex_cond_clear(cb_info);
2368
2369         if (CAMERA_IS_FD_VALID(cb_info->fd)) {
2370                 muse_client_close(cb_info->fd);
2371                 cb_info->fd = CAMERA_FD_INIT;
2372         }
2373
2374         if (cb_info->bufmgr) {
2375                 tbm_bufmgr_deinit(cb_info->bufmgr);
2376                 cb_info->bufmgr = NULL;
2377         }
2378         if (cb_info->pkt_fmt) {
2379                 media_format_unref(cb_info->pkt_fmt);
2380                 cb_info->pkt_fmt = NULL;
2381         }
2382
2383         if (cb_info->dp_interface) {
2384                 mm_display_interface_deinit(cb_info->dp_interface);
2385                 cb_info->dp_interface = NULL;
2386         }
2387
2388         g_free(cb_info);
2389 }
2390
2391 //LCOV_EXCL_START
2392 int _camera_start_evas_rendering(camera_h camera)
2393 {
2394         camera_cli_s *pc = (camera_cli_s *)camera;
2395
2396         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2397
2398         CAM_LOG_INFO("start");
2399
2400         if (!pc->cb_info->is_evas_render) {
2401                 CAM_LOG_ERROR("EVAS surface is not set");
2402                 return CAMERA_ERROR_NONE;
2403         }
2404
2405         /* set evas render flag as RUN */
2406         pc->cb_info->run_evas_render = true;
2407
2408         return CAMERA_ERROR_NONE;
2409 }
2410
2411
2412 int _camera_stop_evas_rendering(camera_h camera, bool keep_screen)
2413 {
2414         int ret = CAMERA_ERROR_NONE;
2415         camera_cli_s *pc = (camera_cli_s *)camera;
2416
2417         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2418
2419         CAM_LOG_INFO("stop - keep screen %d", keep_screen);
2420
2421         if (!pc->cb_info->is_evas_render) {
2422                 CAM_LOG_ERROR("EVAS surface is not set");
2423                 return CAMERA_ERROR_NONE;
2424         }
2425
2426         /* set evas render flag as STOP and release buffers */
2427         pc->cb_info->run_evas_render = false;
2428
2429         ret = mm_display_interface_evas_flush(pc->cb_info->dp_interface, keep_screen);
2430         if (ret == MM_ERROR_NONE) {
2431                 ret = CAMERA_ERROR_NONE;
2432         } else {
2433                 CAM_LOG_ERROR("mm_evas_renderer_retrieve_all_packets failed 0x%x", ret);
2434                 ret = CAMERA_ERROR_INVALID_OPERATION;
2435         }
2436
2437         return ret;
2438 }
2439 //LCOV_EXCL_STOP
2440
2441 int _camera_independent_request(int api, int device_type, const char *key, int *value)
2442 {
2443         int ret = CAMERA_ERROR_NONE;
2444         int sock_fd = CAMERA_FD_INIT;
2445         int module_index = -1;
2446         char *msg = NULL;
2447         char recv_msg[MUSE_CAMERA_MSG_MAX_LENGTH] = {'\0',};
2448
2449         /* create muse connection */
2450         if (!key || !value) {
2451                 CAM_LOG_ERROR("NULL pointer");
2452                 return CAMERA_ERROR_INVALID_PARAMETER;
2453         }
2454
2455         sock_fd = muse_client_new();
2456         if (sock_fd < 0) {
2457                 CAM_LOG_ERROR("muse_client_new failed");
2458                 return CAMERA_ERROR_INVALID_OPERATION;
2459         }
2460
2461         if (muse_client_get_module_index(MODULE_NAME, &module_index) != MM_ERROR_NONE) {
2462                 CAM_LOG_ERROR("muse client get module index failed");
2463                 ret = CAMERA_ERROR_INVALID_OPERATION;
2464                 goto _REQUEST_EXIT;
2465         }
2466
2467         msg = muse_core_msg_new(api,
2468                 MUSE_TYPE_INT, "module", module_index,
2469                 MUSE_TYPE_INT, PARAM_DEVICE_TYPE, device_type,
2470                 0);
2471         if (!msg) {
2472                 CAM_LOG_ERROR("msg failed");
2473                 ret = CAMERA_ERROR_OUT_OF_MEMORY;
2474                 goto _REQUEST_EXIT;
2475         }
2476
2477         ret = muse_core_msg_send(sock_fd, msg);
2478
2479         muse_core_msg_free(msg);
2480         msg = NULL;
2481
2482         if (ret < 0) {
2483                 CAM_LOG_ERROR("send msg failed");
2484                 ret = CAMERA_ERROR_INVALID_OPERATION;
2485                 goto _REQUEST_EXIT;
2486         }
2487
2488         ret = muse_core_msg_recv(sock_fd, recv_msg, MUSE_CAMERA_MSG_MAX_LENGTH);
2489         if (ret <= 0) {
2490                 CAM_LOG_ERROR("recv msg failed %d", errno);
2491                 ret = CAMERA_ERROR_INVALID_OPERATION;
2492                 goto _REQUEST_EXIT;
2493         }
2494
2495         if (!muse_camera_msg_get(ret, recv_msg)) {
2496                 CAM_LOG_ERROR("failed to get return value from msg [%s]", recv_msg);
2497                 ret = CAMERA_ERROR_INVALID_OPERATION;
2498                 goto _REQUEST_EXIT;
2499         }
2500
2501         if (ret == CAMERA_ERROR_NONE)
2502                 muse_core_msg_deserialize(key, recv_msg, NULL, NULL, MUSE_TYPE_ANY, value);
2503
2504         CAM_LOG_INFO("api %d - value %d", api, *value);
2505
2506 _REQUEST_EXIT:
2507         if (CAMERA_IS_FD_VALID(sock_fd)) {
2508                 muse_client_close(sock_fd);
2509                 sock_fd = CAMERA_FD_INIT;
2510         }
2511
2512         return ret;
2513 }
2514
2515
2516 int _camera_create_private(camera_device_e device, bool is_network, camera_h *camera)
2517 {
2518         int sock_fd = CAMERA_FD_INIT;
2519         char *send_msg = NULL;
2520         int send_ret = 0;
2521         int ret = CAMERA_ERROR_NONE;
2522         camera_cli_s *pc = NULL;
2523         tbm_bufmgr bufmgr = NULL;
2524
2525         muse_camera_api_e api = MUSE_CAMERA_API_CREATE;
2526         int module_index = -1;
2527         int device_type = (int)device;
2528
2529         CAM_LOG_INFO("device %d, is_network %d", device, is_network);
2530
2531         sock_fd = muse_client_new();
2532         if (sock_fd < 0) {
2533                 CAM_LOG_ERROR("muse_client_new failed - returned fd %d", sock_fd);
2534                 ret = CAMERA_ERROR_INVALID_OPERATION;
2535                 goto ErrorExit;
2536         }
2537
2538         if (muse_client_get_module_index(MODULE_NAME, &module_index) != MM_ERROR_NONE) {
2539                 CAM_LOG_ERROR("muse client get module index failed");
2540                 ret = CAMERA_ERROR_INVALID_OPERATION;
2541                 goto ErrorExit;
2542         }
2543
2544         send_msg = muse_core_msg_new(api,
2545                 MUSE_TYPE_INT, "module", module_index,
2546                 MUSE_TYPE_INT, PARAM_DEVICE_TYPE, device_type,
2547                 MUSE_TYPE_INT, "is_network", (int)is_network,
2548                 0);
2549
2550         if (!send_msg) {
2551                 CAM_LOG_ERROR("NULL msg");
2552                 ret = CAMERA_ERROR_OUT_OF_MEMORY;
2553                 goto ErrorExit;
2554         }
2555
2556         send_ret = muse_core_msg_send(sock_fd, send_msg);
2557
2558         muse_core_msg_free(send_msg);
2559         send_msg = NULL;
2560
2561         if (send_ret < 0) {
2562                 CAM_LOG_ERROR("send msg failed %d", errno);
2563                 ret = CAMERA_ERROR_INVALID_OPERATION;
2564                 goto ErrorExit;
2565         }
2566
2567         pc = g_new0(camera_cli_s, 1);
2568         if (pc == NULL) {
2569                 CAM_LOG_ERROR("camera_cli_s alloc failed");
2570                 ret = CAMERA_ERROR_OUT_OF_MEMORY;
2571                 goto ErrorExit;
2572         }
2573
2574         bufmgr = tbm_bufmgr_init(-1);
2575         if (bufmgr == NULL) {
2576                 CAM_LOG_ERROR("get tbm bufmgr failed");
2577                 ret = CAMERA_ERROR_INVALID_OPERATION;
2578                 goto ErrorExit;
2579         }
2580
2581         pc->cb_info = __camera_client_callback_new(sock_fd);
2582         if (pc->cb_info == NULL) {
2583                 CAM_LOG_ERROR("cb_info alloc failed");
2584                 ret = CAMERA_ERROR_OUT_OF_MEMORY;
2585                 goto ErrorExit;
2586         }
2587
2588         sock_fd = CAMERA_FD_INIT;
2589
2590         CAM_LOG_INFO("cb info : %d", pc->cb_info->fd);
2591
2592         ret = _camera_client_wait_for_cb_return(api, pc->cb_info, CAMERA_CB_TIMEOUT);
2593
2594         pc->cb_info->api_waiting[MUSE_CAMERA_API_CREATE] = 0;
2595
2596         if (ret == CAMERA_ERROR_NONE) {
2597                 int preview_format = CAMERA_PIXEL_FORMAT_INVALID;
2598                 int user_buffer_supported = 0;
2599                 int log_level = CAMERA_LOG_LEVEL_INFO;
2600                 intptr_t handle = 0;
2601
2602                 muse_camera_msg_get_pointer(handle, pc->cb_info->recv_msg);
2603                 if (handle == 0) {
2604                         CAM_LOG_ERROR("Receiving Handle Failed!!");
2605                         ret = CAMERA_ERROR_INVALID_OPERATION;
2606                         goto ErrorExit;
2607                 }
2608
2609                 muse_camera_msg_get(preview_format, pc->cb_info->recv_msg);
2610                 muse_camera_msg_get(user_buffer_supported, pc->cb_info->recv_msg);
2611                 muse_camera_msg_get(log_level, pc->cb_info->recv_msg);
2612
2613                 pc->remote_handle = handle;
2614                 pc->cb_info->bufmgr = bufmgr;
2615                 pc->cb_info->preview_format = preview_format;
2616                 pc->cb_info->dp_info.type = CAMERA_DISPLAY_TYPE_NONE;
2617                 pc->cb_info->user_buffer_supported = (gboolean)user_buffer_supported;
2618                 pc->cb_info->is_network = is_network;
2619                 g_camera_log_level = log_level;
2620
2621                 CAM_LOG_INFO("default preview format %d, user buffer %d, log level %d",
2622                         preview_format, user_buffer_supported, g_camera_log_level);
2623
2624                 if (!camera) {
2625                         CAM_LOG_ERROR("NULL out handle");
2626                         ret= CAMERA_ERROR_INVALID_PARAMETER;
2627                         goto ErrorExit;
2628                 }
2629
2630                 *camera = (camera_h)pc;
2631
2632                 /* get display interface handle */
2633                 if (mm_display_interface_init(&pc->cb_info->dp_interface) != MM_ERROR_NONE)
2634                         CAM_LOG_WARNING("display interface init failed");
2635         } else {
2636                 goto ErrorExit;
2637         }
2638
2639         return ret;
2640 //LCOV_EXCL_START
2641 ErrorExit:
2642         if (bufmgr) {
2643                 tbm_bufmgr_deinit(bufmgr);
2644                 bufmgr = NULL;
2645         }
2646
2647         if (CAMERA_IS_FD_VALID(sock_fd)) {
2648                 muse_client_close(sock_fd);
2649                 sock_fd = CAMERA_FD_INIT;
2650         }
2651
2652         if (pc) {
2653                 if (pc->cb_info) {
2654                         int temp_fd = pc->cb_info->fd;
2655
2656                         /* pc->cb_info->fd should be closed,
2657                            because g_thread_join for msg_recv_thread is not returned
2658                            in __camera_client_callback_destroy. */
2659                         if (CAMERA_IS_FD_VALID(temp_fd)) {
2660                                 pc->cb_info->fd = CAMERA_FD_INIT;
2661                                 muse_client_close(temp_fd);
2662                         }
2663
2664                         __camera_client_callback_destroy(pc->cb_info);
2665                         pc->cb_info = NULL;
2666                 }
2667                 g_free(pc);
2668                 pc = NULL;
2669         }
2670
2671         CAM_LOG_ERROR("camera create error : 0x%x", ret);
2672
2673         return ret;
2674 //LCOV_EXCL_STOP
2675 }
2676
2677
2678 int camera_create(camera_device_e device, camera_h *camera)
2679 {
2680         return _camera_create_private(device, false, camera);
2681 }
2682
2683
2684 int camera_change_device(camera_h camera, camera_device_e device)
2685 {
2686         int i = 0;
2687         int ret = CAMERA_ERROR_NONE;
2688         muse_camera_api_e api = MUSE_CAMERA_API_CHANGE_DEVICE;
2689         camera_cli_s *pc = (camera_cli_s *)camera;
2690         camera_msg_param param;
2691
2692         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2693
2694         CAMERA_MSG_PARAM_SET(param, INT, device);
2695
2696         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
2697
2698         if (ret == CAMERA_ERROR_NONE) {
2699                 /* reset callback and user data */
2700                 for (i = 0 ; i < MUSE_CAMERA_EVENT_TYPE_NUM ; i++) {
2701                         pc->cb_info->user_cb[i] = NULL;
2702                         pc->cb_info->user_data[i] = NULL;
2703                 }
2704         }
2705
2706         return ret;
2707 }
2708
2709
2710 int camera_destroy(camera_h camera)
2711 {
2712         int ret = CAMERA_ERROR_NONE;
2713         muse_camera_api_e api = MUSE_CAMERA_API_DESTROY;
2714         camera_cli_s *pc = (camera_cli_s *)camera;
2715
2716         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2717
2718         CAM_LOG_INFO("Enter");
2719
2720         if (pc->cb_info->is_server_connected)
2721                 _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2722         else
2723                 CAM_LOG_WARNING("server disconnected. release resource without send message.");
2724
2725         if (ret == CAMERA_ERROR_NONE) {
2726                 __camera_deactivate_idle_event_all(pc->cb_info);
2727                 __camera_client_callback_destroy(pc->cb_info);
2728                 pc->cb_info = NULL;
2729
2730                 g_free(pc);
2731                 pc = NULL;
2732         }
2733
2734         CAM_LOG_INFO("ret : 0x%x", ret);
2735
2736         return ret;
2737 }
2738
2739 int camera_start_preview(camera_h camera)
2740 {
2741         int ret = CAMERA_ERROR_NONE;
2742         int *fds = NULL;
2743         muse_camera_api_e api = MUSE_CAMERA_API_START_PREVIEW;
2744         camera_cli_s *pc = (camera_cli_s *)camera;
2745         camera_state_e current_state = CAMERA_STATE_NONE;
2746
2747         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2748
2749         CAM_LOG_INFO("Enter : preview format %d, display type %d",
2750                 pc->cb_info->preview_format, pc->cb_info->dp_info.type);
2751
2752         if (pc->cb_info->preview_format == CAMERA_PIXEL_FORMAT_INVZ &&
2753                 pc->cb_info->dp_info.type != CAMERA_DISPLAY_TYPE_NONE) {
2754                 CAM_LOG_ERROR("CAMERA_DISPLAY_TYPE_NONE[current %d] should be set with INVZ format",
2755                         pc->cb_info->dp_info.type);
2756                 return CAMERA_ERROR_INVALID_OPERATION;
2757         }
2758
2759         ret = camera_get_state(camera, &current_state);
2760         if (ret != CAMERA_ERROR_NONE) {
2761                 CAM_LOG_ERROR("failed to get current state 0x%x", ret);
2762                 return ret;
2763         }
2764
2765         if (current_state == CAMERA_STATE_CREATED) {
2766                 if (!__create_msg_handler_thread(&pc->cb_info->preview_cb_info,
2767                                 CAMERA_MESSAGE_HANDLER_TYPE_PREVIEW_CB, "cam:preview_cb", pc->cb_info)) {
2768                         CAM_LOG_ERROR("preview_cb_info failed");
2769                         return CAMERA_ERROR_INVALID_OPERATION;
2770                 }
2771
2772                 if (pc->cb_info->user_buffer_supported) {
2773                         if (!__camera_allocate_preview_buffer(camera)) {
2774                                 ret = CAMERA_ERROR_INVALID_OPERATION;
2775                                 goto _START_FAILED;
2776                         }
2777
2778                         fds = pc->cb_info->fds;
2779                 }
2780         }
2781
2782         _camera_msg_send(api, fds, pc->cb_info, &ret,
2783 #ifdef TIZEN_FEATURE_NO_TIMEOUT_FOR_PREVIEW
2784                 CAMERA_CB_NO_TIMEOUT);
2785 #else
2786                 (pc->cb_info->is_network ? CAMERA_CB_NETWORK_PREVIEW_TIMEOUT : CAMERA_CB_TIMEOUT));
2787 #endif
2788         if (ret != CAMERA_ERROR_NONE)
2789                 goto _START_FAILED;
2790
2791         if (pc->cb_info->is_evas_render) {
2792                 ret = _camera_start_evas_rendering(camera);
2793                 if (ret != CAMERA_ERROR_NONE) {
2794                         CAM_LOG_ERROR("stop preview because of error");
2795                         _camera_msg_send(MUSE_CAMERA_API_STOP_PREVIEW, NULL, pc->cb_info, NULL, 0);
2796                         goto _START_FAILED;
2797                 }
2798         }
2799
2800         CAM_LOG_INFO("done");
2801
2802         return CAMERA_ERROR_NONE;
2803
2804 _START_FAILED:
2805         if (current_state == CAMERA_STATE_CREATED) {
2806                 if (pc->cb_info->user_buffer_supported)
2807                         __camera_release_preview_buffer(camera);
2808
2809                 __destroy_msg_handler_thread(&pc->cb_info->preview_cb_info);
2810         }
2811
2812         CAM_LOG_ERROR("failed : 0x%x", ret);
2813
2814         return ret;
2815 }
2816
2817
2818 int camera_stop_preview(camera_h camera)
2819 {
2820         int ret = CAMERA_ERROR_NONE;
2821         camera_cli_s *pc = (camera_cli_s *)camera;
2822         muse_camera_api_e api = MUSE_CAMERA_API_STOP_PREVIEW;
2823         camera_state_e current_state = CAMERA_STATE_NONE;
2824
2825         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2826
2827         CAM_LOG_INFO("Enter");
2828
2829 //LCOV_EXCL_START
2830         if (pc->cb_info->is_evas_render) {
2831                 ret = camera_get_state(camera, &current_state);
2832                 if (ret != CAMERA_ERROR_NONE) {
2833                         CAM_LOG_ERROR("failed to get current state 0x%x", ret);
2834                         return ret;
2835                 }
2836
2837                 if (current_state == CAMERA_STATE_PREVIEW) {
2838                         ret = _camera_stop_evas_rendering(camera, false);
2839                         if (ret != CAMERA_ERROR_NONE)
2840                                 return ret;
2841                 }
2842         }
2843 //LCOV_EXCL_STOP
2844         /* send stop preview message */
2845         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2846
2847         if (ret == CAMERA_ERROR_NONE) {
2848                 if (pc->cb_info->user_buffer_supported)
2849                         __camera_release_preview_buffer(camera);
2850
2851                 /* release remained message for preview callback */
2852                 __destroy_msg_handler_thread(&pc->cb_info->preview_cb_info);
2853         } else if (current_state == CAMERA_STATE_PREVIEW) {
2854                 CAM_LOG_WARNING("restart evas rendering");
2855                 _camera_start_evas_rendering(camera);
2856         }
2857
2858         CAM_LOG_INFO("ret : 0x%x", ret);
2859
2860         return ret;
2861 }
2862
2863
2864 int camera_start_capture(camera_h camera, camera_capturing_cb capturing_cb, camera_capture_completed_cb completed_cb, void *user_data)
2865 {
2866         int ret = CAMERA_ERROR_NONE;
2867         camera_cli_s *pc = (camera_cli_s *)camera;
2868         muse_camera_api_e api = MUSE_CAMERA_API_START_CAPTURE;
2869
2870         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2871
2872         CAM_LOG_INFO("Enter");
2873
2874         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_CAPTURE] = capturing_cb;
2875         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_CAPTURE] = user_data;
2876
2877         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_CAPTURE_COMPLETE] = completed_cb;
2878         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_CAPTURE_COMPLETE] = user_data;
2879
2880         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2881
2882         CAM_LOG_INFO("ret : 0x%x", ret);
2883
2884         return ret;
2885 }
2886
2887
2888 bool camera_is_supported_continuous_capture(camera_h camera)
2889 {
2890         return __is_supported(camera, MUSE_CAMERA_API_SUPPORT_CONTINUOUS_CAPTURE);
2891 }
2892
2893
2894 int camera_start_continuous_capture(camera_h camera, int count, int interval, camera_capturing_cb capturing_cb, camera_capture_completed_cb completed_cb, void *user_data)
2895 {
2896         int ret = CAMERA_ERROR_NONE;
2897         camera_cli_s *pc = (camera_cli_s *)camera;
2898         muse_camera_api_e api = MUSE_CAMERA_API_START_CONTINUOUS_CAPTURE;
2899         camera_msg_param param;
2900         int value = 0;
2901
2902         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2903
2904         CAM_LOG_INFO("Enter");
2905
2906         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_CAPTURE] = capturing_cb;
2907         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_CAPTURE] = user_data;
2908
2909         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_CAPTURE_COMPLETE] = completed_cb;
2910         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_CAPTURE_COMPLETE] = user_data;
2911
2912         value = (count << 16) | interval;
2913         CAMERA_MSG_PARAM_SET(param, INT, value);
2914
2915         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
2916
2917         CAM_LOG_INFO("ret : 0x%x", ret);
2918
2919         return ret;
2920 }
2921
2922
2923 int camera_stop_continuous_capture(camera_h camera)
2924 {
2925         int ret = CAMERA_ERROR_NONE;
2926         camera_cli_s *pc = (camera_cli_s *)camera;
2927         muse_camera_api_e api = MUSE_CAMERA_API_STOP_CONTINUOUS_CAPTURE;
2928
2929         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2930
2931         CAM_LOG_INFO("Enter");
2932
2933         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2934
2935         CAM_LOG_INFO("ret : 0x%x", ret);
2936
2937         return ret;
2938 }
2939
2940
2941 bool camera_is_supported_face_detection(camera_h camera)
2942 {
2943         return __is_supported(camera, MUSE_CAMERA_API_SUPPORT_FACE_DETECTION);
2944 }
2945
2946
2947 bool camera_is_supported_zero_shutter_lag(camera_h camera)
2948 {
2949         return __is_supported(camera, MUSE_CAMERA_API_SUPPORT_ZERO_SHUTTER_LAG);
2950 }
2951
2952
2953 bool camera_is_supported_media_packet_preview_cb(camera_h camera)
2954 {
2955         return __is_supported(camera, MUSE_CAMERA_API_SUPPORT_MEDIA_PACKET_PREVIEW_CB);
2956 }
2957
2958
2959 bool camera_is_supported_extra_preview(camera_h camera)
2960 {
2961         return __is_supported(camera, MUSE_CAMERA_API_SUPPORT_EXTRA_PREVIEW);
2962 }
2963
2964
2965 int camera_get_device_count(camera_h camera, int *device_count)
2966 {
2967         int ret = CAMERA_ERROR_NONE;
2968         camera_cli_s *pc = (camera_cli_s *)camera;
2969         muse_camera_api_e api = MUSE_CAMERA_API_GET_DEVICE_COUNT;
2970
2971         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2972
2973         CAM_LOG_INFO("Enter");
2974
2975         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2976
2977         if (ret == CAMERA_ERROR_NONE)
2978                 *device_count = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DEVICE_COUNT];
2979
2980         CAM_LOG_INFO("ret : 0x%x", ret);
2981
2982         return ret;
2983 }
2984
2985 int camera_start_face_detection(camera_h camera, camera_face_detected_cb callback, void *user_data)
2986 {
2987         int ret = CAMERA_ERROR_NONE;
2988         camera_cli_s *pc = (camera_cli_s *)camera;
2989         muse_camera_api_e api = MUSE_CAMERA_API_START_FACE_DETECTION;
2990
2991         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2992
2993         CAM_LOG_INFO("Enter");
2994
2995         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2996
2997         if (ret == CAMERA_ERROR_NONE) {
2998                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]);
2999
3000                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION] = callback;
3001                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION] = user_data;
3002
3003                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]);
3004         }
3005
3006         CAM_LOG_INFO("ret : 0x%x", ret);
3007
3008         return ret;
3009 }
3010
3011 int camera_stop_face_detection(camera_h camera)
3012 {
3013         int ret = CAMERA_ERROR_NONE;
3014         camera_cli_s *pc = (camera_cli_s *)camera;
3015         muse_camera_api_e api = MUSE_CAMERA_API_STOP_FACE_DETECTION;
3016
3017         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3018
3019         CAM_LOG_INFO("Enter");
3020
3021         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3022
3023         if (ret == CAMERA_ERROR_NONE) {
3024                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]);
3025
3026                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION] = NULL;
3027                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION] = NULL;
3028
3029                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]);
3030         }
3031
3032         CAM_LOG_INFO("ret : 0x%x", ret);
3033
3034         return ret;
3035 }
3036
3037 int camera_get_state(camera_h camera, camera_state_e *state)
3038 {
3039         int ret = CAMERA_ERROR_NONE;
3040         camera_cli_s *pc = (camera_cli_s *)camera;
3041         muse_camera_api_e api = MUSE_CAMERA_API_GET_STATE;
3042
3043         if (!pc || !pc->cb_info || !state) {
3044                 CAM_LOG_ERROR("NULL pointer %p %p", pc, state);
3045                 return CAMERA_ERROR_INVALID_PARAMETER;
3046         }
3047
3048         CAM_LOG_INFO("Enter");
3049
3050         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3051
3052         if (ret == CAMERA_ERROR_NONE)
3053                 *state = (camera_state_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_STATE];
3054
3055         CAM_LOG_INFO("ret : 0x%x", ret);
3056
3057         return ret;
3058 }
3059
3060 int camera_start_focusing(camera_h camera, bool continuous)
3061 {
3062         int ret = CAMERA_ERROR_NONE;
3063         camera_cli_s *pc = (camera_cli_s *)camera;
3064         muse_camera_api_e api = MUSE_CAMERA_API_START_FOCUSING;
3065         camera_msg_param param;
3066         int is_continuous = (int)continuous;
3067
3068         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3069
3070         CAM_LOG_INFO("Enter");
3071
3072         CAMERA_MSG_PARAM_SET(param, INT, is_continuous);
3073
3074         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3075
3076         CAM_LOG_INFO("ret : 0x%x", ret);
3077
3078         return ret;
3079 }
3080
3081 int camera_cancel_focusing(camera_h camera)
3082 {
3083         int ret = CAMERA_ERROR_NONE;
3084         camera_cli_s *pc = (camera_cli_s *)camera;
3085         muse_camera_api_e api = MUSE_CAMERA_API_CANCEL_FOCUSING;
3086
3087         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3088
3089         CAM_LOG_INFO("Enter, remote_handle : %td", pc->remote_handle);
3090
3091         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3092
3093         CAM_LOG_INFO("ret : 0x%x", ret);
3094
3095         return ret;
3096 }
3097
3098
3099 int _camera_set_display(camera_h camera, mm_display_type_e type, void *display)
3100 {
3101         int mm_ret = MM_ERROR_NONE;
3102         int ret = CAMERA_ERROR_NONE;
3103         camera_cli_s *pc = (camera_cli_s *)camera;
3104         camera_cb_info_s *cb_info = NULL;
3105         camera_state_e current_state = CAMERA_STATE_NONE;
3106         camera_msg_param param;
3107         muse_camera_api_e api = MUSE_CAMERA_API_SET_DISPLAY;
3108         muse_camera_display_info_s *dp_info = NULL;
3109
3110         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3111
3112         if (type > MM_DISPLAY_TYPE_OVERLAY_EXT) {
3113                 CAM_LOG_ERROR("invalid type %d", type);
3114                 return CAMERA_ERROR_INVALID_PARAMETER;
3115         }
3116
3117         if (type != MM_DISPLAY_TYPE_NONE && display == NULL) {
3118                 CAM_LOG_ERROR("display type[%d] is not NONE, but display handle is NULL", type);
3119                 return CAMERA_ERROR_INVALID_PARAMETER;
3120         }
3121
3122         cb_info = (camera_cb_info_s *)pc->cb_info;
3123         dp_info = &cb_info->dp_info;
3124
3125         ret = camera_get_state(camera, &current_state);
3126         if (ret != CAMERA_ERROR_NONE) {
3127                 CAM_LOG_ERROR("failed to get current state 0x%x", ret);
3128                 return ret;
3129         }
3130
3131         if (current_state != CAMERA_STATE_CREATED) {
3132                 CAM_LOG_ERROR("INVALID_STATE : current %d", current_state);
3133                 return CAMERA_ERROR_INVALID_STATE;
3134         }
3135
3136         CAM_LOG_INFO("Enter - type : %d, display : %p", type, display);
3137
3138         if (type != MM_DISPLAY_TYPE_NONE) {
3139                 /* check display interface handle */
3140                 if (!cb_info->dp_interface) {
3141                         CAM_LOG_ERROR("display interface not supported");
3142                         return CAMERA_ERROR_NOT_SUPPORTED;
3143                 }
3144
3145                 mm_ret = mm_display_interface_set_display(cb_info->dp_interface, type, display, &dp_info->parent_id);
3146                 if (mm_ret == (int)MM_ERROR_NOT_SUPPORT_API) {
3147                         CAM_LOG_ERROR("[NOT_SUPPORTED] type %d", type);
3148                         return CAMERA_ERROR_NOT_SUPPORTED;
3149                 } else if (mm_ret != MM_ERROR_NONE) {
3150                         CAM_LOG_ERROR("[INVALID_OPERATION] set display failed[0x%x]", mm_ret);
3151                         return CAMERA_ERROR_INVALID_OPERATION;
3152                 }
3153
3154                 if (type == MM_DISPLAY_TYPE_OVERLAY || type == MM_DISPLAY_TYPE_OVERLAY_EXT) {
3155                         mm_ret = mm_display_interface_get_window_rect(cb_info->dp_interface, &dp_info->window_rect);
3156
3157                         CAM_LOG_INFO("ret 0x%x, parent_id %d, window rect %d,%d,%dx%d",
3158                                 ret, dp_info->parent_id, dp_info->window_rect.x, dp_info->window_rect.y,
3159                                 dp_info->window_rect.width, dp_info->window_rect.height);
3160                 } else if (type == MM_DISPLAY_TYPE_EVAS) {
3161 //LCOV_EXCL_START
3162                         camera_flip_e flip = CAMERA_FLIP_NONE;
3163                         camera_display_mode_e mode = CAMERA_DISPLAY_MODE_LETTER_BOX;
3164                         camera_rotation_e rotation = CAMERA_ROTATION_NONE;
3165                         bool visible = 0;
3166                         int x = 0;
3167                         int y = 0;
3168                         int width = 0;
3169                         int height = 0;
3170
3171                         camera_get_display_flip(camera, &flip);
3172                         camera_get_display_mode(camera, &mode);
3173                         camera_get_display_rotation(camera, &rotation);
3174                         camera_is_display_visible(camera, &visible);
3175
3176                         CAM_LOG_INFO("current setting : flip %d, mode %d, rotation %d, visible %d",
3177                                 flip, mode, rotation, visible);
3178
3179                         mm_ret = mm_display_interface_evas_set_flip(cb_info->dp_interface, flip);
3180                         mm_ret |= mm_display_interface_evas_set_mode(cb_info->dp_interface, mode);
3181                         mm_ret |= mm_display_interface_evas_set_rotation(cb_info->dp_interface, rotation);
3182                         mm_ret |= mm_display_interface_evas_set_visible(cb_info->dp_interface, visible);
3183
3184                         if (mode == CAMERA_DISPLAY_MODE_CUSTOM_ROI) {
3185                                 camera_attr_get_display_roi_area(camera, &x, &y, &width, &height);
3186                                 CAM_LOG_INFO("current setting : roi %d,%d,%dx%d", x, y, width, height);
3187                                 mm_ret |= mm_display_interface_evas_set_roi_area(cb_info->dp_interface, x, y, width, height);
3188                         }
3189 //LCOV_EXCL_STOP
3190                 }
3191         }
3192
3193         if (mm_ret != MM_ERROR_NONE) {
3194                 CAM_LOG_ERROR("mm_ret 0x%x failed", mm_ret);
3195                 return CAMERA_ERROR_INVALID_OPERATION;
3196         }
3197
3198         dp_info->type = type;
3199
3200         CAMERA_MSG_PARAM_SET_ARRAY(param, ARRAY, dp_info, sizeof(muse_camera_display_info_s));
3201
3202         _camera_msg_send_param1(api, cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3203
3204         if (ret == CAMERA_ERROR_NONE)
3205                 cb_info->is_evas_render = (type == MM_DISPLAY_TYPE_EVAS) ? TRUE : FALSE;
3206
3207         return ret;
3208 }
3209
3210
3211 int camera_set_display(camera_h camera, camera_display_type_e type, camera_display_h display)
3212 {
3213         CAM_LOG_INFO("type %d, display %p", type, display);
3214         return _camera_set_display(camera, (mm_display_type_e)type, display);
3215 }
3216
3217
3218 int camera_set_preview_resolution(camera_h camera, int width, int height)
3219 {
3220         int ret = CAMERA_ERROR_NONE;
3221         camera_state_e current_state = CAMERA_STATE_NONE;
3222         camera_cli_s *pc = (camera_cli_s *)camera;
3223         muse_camera_api_e api = MUSE_CAMERA_API_SET_PREVIEW_RESOLUTION;
3224         camera_msg_param param;
3225         int value = 0;
3226
3227         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3228
3229         if (pc->cb_info->is_evas_render) {
3230                 ret = camera_get_state(camera, &current_state);
3231                 if (ret != CAMERA_ERROR_NONE) {
3232                         CAM_LOG_ERROR("failed to get current state 0x%x", ret);
3233                         return ret;
3234                 }
3235
3236                 if (current_state == CAMERA_STATE_PREVIEW) {
3237                         ret = _camera_stop_evas_rendering(camera, true);
3238                         if (ret != CAMERA_ERROR_NONE)
3239                                 return ret;
3240                 }
3241         }
3242
3243         value = (width << 16) | height;
3244         CAMERA_MSG_PARAM_SET(param, INT, value);
3245
3246         CAM_LOG_INFO("%dx%d -> 0x%x", width, height, value);
3247
3248         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3249
3250         CAM_LOG_INFO("ret : 0x%x", ret);
3251
3252         if (current_state == CAMERA_STATE_PREVIEW) {
3253                 CAM_LOG_WARNING("restart evas rendering");
3254                 _camera_start_evas_rendering(camera);
3255         }
3256
3257         return ret;
3258 }
3259
3260
3261 int camera_set_capture_resolution(camera_h camera, int width, int height)
3262 {
3263         int ret = CAMERA_ERROR_NONE;
3264         camera_cli_s *pc = (camera_cli_s *)camera;
3265         muse_camera_api_e api = MUSE_CAMERA_API_SET_CAPTURE_RESOLUTION;
3266         camera_msg_param param;
3267         int value = 0;
3268
3269         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3270
3271         CAM_LOG_INFO("Enter");
3272
3273         value = (width << 16) | height;
3274         CAMERA_MSG_PARAM_SET(param, INT, value);
3275
3276         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3277
3278         CAM_LOG_INFO("ret : 0x%x", ret);
3279
3280         return ret;
3281 }
3282
3283
3284 int camera_set_capture_format(camera_h camera, camera_pixel_format_e format)
3285 {
3286         int ret = CAMERA_ERROR_NONE;
3287         int set_format = (int)format;
3288         camera_cli_s *pc = (camera_cli_s *)camera;
3289         muse_camera_api_e api = MUSE_CAMERA_API_SET_CAPTURE_FORMAT;
3290         camera_msg_param param;
3291
3292         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3293
3294         CAM_LOG_INFO("Enter - format %d", set_format);
3295
3296         CAMERA_MSG_PARAM_SET(param, INT, set_format);
3297
3298         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3299
3300         CAM_LOG_INFO("ret : 0x%x", ret);
3301
3302         return ret;
3303 }
3304
3305
3306 int camera_set_preview_format(camera_h camera, camera_pixel_format_e format)
3307 {
3308         int ret = CAMERA_ERROR_NONE;
3309         int set_format = (int)format;
3310         camera_msg_param param;
3311         camera_cli_s *pc = (camera_cli_s *)camera;
3312         muse_camera_api_e api = MUSE_CAMERA_API_SET_PREVIEW_FORMAT;
3313
3314         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3315
3316         CAM_LOG_INFO("Enter - format %d", set_format);
3317
3318         CAMERA_MSG_PARAM_SET(param, INT, set_format);
3319
3320         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3321
3322         if (ret == CAMERA_ERROR_NONE)
3323                 pc->cb_info->preview_format = set_format;
3324
3325         CAM_LOG_INFO("ret : 0x%x", ret);
3326
3327         return ret;
3328 }
3329
3330
3331 int camera_get_preview_resolution(camera_h camera, int *width, int *height)
3332 {
3333         int ret = CAMERA_ERROR_NONE;
3334         camera_cli_s *pc = (camera_cli_s *)camera;
3335         muse_camera_api_e api = MUSE_CAMERA_API_GET_PREVIEW_RESOLUTION;
3336
3337         if (!pc || !pc->cb_info || !width || !height) {
3338                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, width, height);
3339                 return CAMERA_ERROR_INVALID_PARAMETER;
3340         }
3341
3342         CAM_LOG_INFO("Enter");
3343
3344         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3345
3346         if (ret == CAMERA_ERROR_NONE) {
3347                 *width = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_PREVIEW_RESOLUTION] >> 16;
3348                 *height = 0x0000ffff & pc->cb_info->get_int[MUSE_CAMERA_GET_INT_PREVIEW_RESOLUTION];
3349         }
3350
3351         CAM_LOG_INFO("ret : 0x%x", ret);
3352
3353         return ret;
3354 }
3355
3356
3357 int camera_set_display_rotation(camera_h camera, camera_rotation_e rotation)
3358 {
3359         int ret = CAMERA_ERROR_NONE;
3360         int set_rotation = (int)rotation;
3361         camera_cli_s *pc = (camera_cli_s *)camera;
3362         camera_msg_param param;
3363
3364         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3365
3366         if (pc->cb_info->is_evas_render) {
3367                 ret = mm_display_interface_evas_set_rotation(pc->cb_info->dp_interface, rotation);
3368                 if (ret != MM_ERROR_NONE) {
3369                         CAM_LOG_ERROR("failed to set rotation for evas surface 0x%x", ret);
3370                         return CAMERA_ERROR_INVALID_OPERATION;
3371                 }
3372         }
3373
3374         CAMERA_MSG_PARAM_SET(param, INT, set_rotation);
3375
3376         _camera_msg_send_param1(MUSE_CAMERA_API_SET_DISPLAY_ROTATION, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3377
3378         return ret;
3379 }
3380
3381
3382 int camera_get_display_rotation(camera_h camera, camera_rotation_e *rotation)
3383 {
3384         int ret = CAMERA_ERROR_NONE;
3385         camera_cli_s *pc = (camera_cli_s *)camera;
3386
3387         if (!pc || !pc->cb_info || !rotation) {
3388                 CAM_LOG_ERROR("NULL pointer %p %p", pc, rotation);
3389                 return CAMERA_ERROR_INVALID_PARAMETER;
3390         }
3391
3392         _camera_msg_send(MUSE_CAMERA_API_GET_DISPLAY_ROTATION, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3393
3394         if (ret == CAMERA_ERROR_NONE)
3395                 *rotation = (camera_rotation_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DISPLAY_ROTATION];
3396
3397         return ret;
3398 }
3399
3400
3401 int camera_set_display_flip(camera_h camera, camera_flip_e flip)
3402 {
3403         int ret = CAMERA_ERROR_NONE;
3404         int set_flip = (int)flip;
3405         camera_cli_s *pc = (camera_cli_s *)camera;
3406         camera_msg_param param;
3407
3408         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3409
3410         if (pc->cb_info->is_evas_render) {
3411                 ret = mm_display_interface_evas_set_flip(pc->cb_info->dp_interface, flip);
3412                 if (ret != MM_ERROR_NONE) {
3413                         CAM_LOG_ERROR("failed to set flip for evas surface 0x%x", ret);
3414                         return CAMERA_ERROR_INVALID_OPERATION;
3415                 }
3416         }
3417
3418         CAMERA_MSG_PARAM_SET(param, INT, set_flip);
3419
3420         _camera_msg_send_param1(MUSE_CAMERA_API_SET_DISPLAY_FLIP, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3421
3422         return ret;
3423 }
3424
3425
3426 int camera_get_display_flip(camera_h camera, camera_flip_e *flip)
3427 {
3428         int ret = CAMERA_ERROR_NONE;
3429         camera_cli_s *pc = (camera_cli_s *)camera;
3430
3431         if (!pc || !pc->cb_info || !flip) {
3432                 CAM_LOG_ERROR("NULL pointer %p %p", pc, flip);
3433                 return CAMERA_ERROR_INVALID_PARAMETER;
3434         }
3435
3436         _camera_msg_send(MUSE_CAMERA_API_GET_DISPLAY_FLIP, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3437
3438         if (ret == CAMERA_ERROR_NONE)
3439                 *flip = (camera_flip_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DISPLAY_FLIP];
3440
3441         return ret;
3442 }
3443
3444
3445 int camera_set_display_visible(camera_h camera, bool visible)
3446 {
3447         int ret = CAMERA_ERROR_NONE;
3448         int set_visible = (int)visible;
3449         camera_cli_s *pc = (camera_cli_s *)camera;
3450         camera_msg_param param;
3451
3452         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3453
3454         if (pc->cb_info->is_evas_render) {
3455                 ret = mm_display_interface_evas_set_visible(pc->cb_info->dp_interface, visible);
3456                 if (ret != MM_ERROR_NONE) {
3457                         CAM_LOG_ERROR("failed to set visible for evas surface 0x%x", ret);
3458                         return CAMERA_ERROR_INVALID_OPERATION;
3459                 }
3460         }
3461
3462         CAMERA_MSG_PARAM_SET(param, INT, set_visible);
3463
3464         _camera_msg_send_param1(MUSE_CAMERA_API_SET_DISPLAY_VISIBLE, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3465
3466         return ret;
3467 }
3468
3469
3470 int camera_is_display_visible(camera_h camera, bool *visible)
3471 {
3472         int ret = CAMERA_ERROR_NONE;
3473         camera_cli_s *pc = (camera_cli_s *)camera;
3474
3475         if (!pc || !pc->cb_info || !visible) {
3476                 CAM_LOG_ERROR("NULL pointer %p %p", pc, visible);
3477                 return CAMERA_ERROR_INVALID_PARAMETER;
3478         }
3479
3480         _camera_msg_send(MUSE_CAMERA_API_IS_DISPLAY_VISIBLE, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3481
3482         if (ret == CAMERA_ERROR_NONE)
3483                 *visible = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DISPLAY_VISIBLE];
3484
3485         return ret;
3486 }
3487
3488
3489 int camera_set_display_mode(camera_h camera, camera_display_mode_e mode)
3490 {
3491         int ret = CAMERA_ERROR_NONE;
3492         int set_mode = (int)mode;
3493         camera_cli_s *pc = (camera_cli_s *)camera;
3494         camera_msg_param param;
3495
3496         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3497
3498         if (pc->cb_info->is_evas_render) {
3499                 ret = mm_display_interface_evas_set_mode(pc->cb_info->dp_interface, mode);
3500                 if (ret != MM_ERROR_NONE) {
3501                         CAM_LOG_ERROR("failed to set geometry for evas surface 0x%x", ret);
3502                         return CAMERA_ERROR_INVALID_OPERATION;
3503                 }
3504         }
3505
3506         CAMERA_MSG_PARAM_SET(param, INT, set_mode);
3507
3508         _camera_msg_send_param1(MUSE_CAMERA_API_SET_DISPLAY_MODE, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3509
3510         return ret;
3511 }
3512
3513
3514 int camera_get_display_mode(camera_h camera, camera_display_mode_e *mode)
3515 {
3516         int ret = CAMERA_ERROR_NONE;
3517         camera_cli_s *pc = (camera_cli_s *)camera;
3518
3519         if (!pc || !pc->cb_info || !mode) {
3520                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
3521                 return CAMERA_ERROR_INVALID_PARAMETER;
3522         }
3523
3524         _camera_msg_send(MUSE_CAMERA_API_GET_DISPLAY_MODE, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3525
3526         if (ret == CAMERA_ERROR_NONE)
3527                 *mode = (camera_display_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DISPLAY_MODE];
3528
3529         return ret;
3530 }
3531
3532
3533 int camera_set_display_reuse_hint(camera_h camera, bool hint)
3534 {
3535         int ret = CAMERA_ERROR_NONE;
3536         int set_hint = (int)hint;
3537         camera_cli_s *pc = (camera_cli_s *)camera;
3538         camera_msg_param param;
3539
3540         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3541
3542         CAM_LOG_INFO("Enter - hint %d", set_hint);
3543
3544         CAMERA_MSG_PARAM_SET(param, INT, set_hint);
3545
3546         _camera_msg_send_param1(MUSE_CAMERA_API_SET_DISPLAY_REUSE_HINT, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3547
3548         return ret;
3549 }
3550
3551
3552 int camera_get_display_reuse_hint(camera_h camera, bool *hint)
3553 {
3554         int ret = CAMERA_ERROR_NONE;
3555         camera_cli_s *pc = (camera_cli_s *)camera;
3556         muse_camera_api_e api = MUSE_CAMERA_API_GET_DISPLAY_REUSE_HINT;
3557
3558         if (!pc || !pc->cb_info || !hint) {
3559                 CAM_LOG_ERROR("NULL pointer %p %p", pc, hint);
3560                 return CAMERA_ERROR_INVALID_PARAMETER;
3561         }
3562
3563         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3564
3565         if (ret == CAMERA_ERROR_NONE) {
3566                 *hint = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DISPLAY_REUSE_HINT];
3567                 CAM_LOG_INFO("display reuse hint %d", *hint);
3568         }
3569
3570         return ret;
3571 }
3572
3573
3574 int camera_get_capture_resolution(camera_h camera, int *width, int *height)
3575 {
3576         int ret = CAMERA_ERROR_NONE;
3577         camera_cli_s *pc = (camera_cli_s *)camera;
3578         muse_camera_api_e api = MUSE_CAMERA_API_GET_CAPTURE_RESOLUTION;
3579
3580         if (!pc || !pc->cb_info || !width || !height) {
3581                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, width, height);
3582                 return CAMERA_ERROR_INVALID_PARAMETER;
3583         }
3584
3585         CAM_LOG_INFO("Enter");
3586
3587         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3588
3589         if (ret == CAMERA_ERROR_NONE) {
3590                 *width = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_CAPTURE_RESOLUTION] >> 16;
3591                 *height = 0x0000ffff & pc->cb_info->get_int[MUSE_CAMERA_GET_INT_CAPTURE_RESOLUTION];
3592         }
3593
3594         CAM_LOG_INFO("ret : 0x%x", ret);
3595
3596         return ret;
3597 }
3598
3599
3600 int camera_get_capture_format(camera_h camera, camera_pixel_format_e *format)
3601 {
3602         int ret = CAMERA_ERROR_NONE;
3603         camera_cli_s *pc = (camera_cli_s *)camera;
3604         muse_camera_api_e api = MUSE_CAMERA_API_GET_CAPTURE_FORMAT;
3605
3606         if (!pc || !pc->cb_info || !format) {
3607                 CAM_LOG_ERROR("NULL pointer %p %p", pc, format);
3608                 return CAMERA_ERROR_INVALID_PARAMETER;
3609         }
3610
3611         CAM_LOG_INFO("Enter");
3612
3613         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3614
3615         if (ret == CAMERA_ERROR_NONE)
3616                 *format = (camera_pixel_format_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_CAPTURE_FORMAT];
3617
3618         CAM_LOG_INFO("ret : 0x%x", ret);
3619
3620         return ret;
3621 }
3622
3623
3624 int camera_get_preview_format(camera_h camera, camera_pixel_format_e *format)
3625 {
3626         int ret = CAMERA_ERROR_NONE;
3627         camera_cli_s *pc = (camera_cli_s *)camera;
3628         muse_camera_api_e api = MUSE_CAMERA_API_GET_PREVIEW_FORMAT;
3629
3630         if (!pc || !pc->cb_info || !format) {
3631                 CAM_LOG_ERROR("NULL pointer %p %p", pc, format);
3632                 return CAMERA_ERROR_INVALID_PARAMETER;
3633         }
3634
3635         CAM_LOG_INFO("Enter");
3636
3637         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3638
3639         if (ret == CAMERA_ERROR_NONE)
3640                 *format = (camera_pixel_format_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_PREVIEW_FORMAT];
3641
3642         CAM_LOG_INFO("ret : 0x%x", ret);
3643
3644         return ret;
3645 }
3646
3647
3648 int camera_get_facing_direction(camera_h camera, camera_facing_direction_e *facing_direction)
3649 {
3650         int ret = CAMERA_ERROR_NONE;
3651         camera_cli_s *pc = (camera_cli_s *)camera;
3652         muse_camera_api_e api = MUSE_CAMERA_API_GET_FACING_DIRECTION;
3653
3654         if (!pc || !pc->cb_info || !facing_direction) {
3655                 CAM_LOG_ERROR("NULL pointer %p %p", pc, facing_direction);
3656                 return CAMERA_ERROR_INVALID_PARAMETER;
3657         }
3658
3659         CAM_LOG_INFO("Enter");
3660
3661         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3662
3663         if (ret == CAMERA_ERROR_NONE)
3664                 *facing_direction = (camera_facing_direction_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_FACING_DIRECTION];
3665
3666         CAM_LOG_INFO("ret : 0x%x", ret);
3667
3668         return ret;
3669 }
3670
3671
3672 int camera_set_preview_cb(camera_h camera, camera_preview_cb callback, void *user_data)
3673 {
3674         int ret = CAMERA_ERROR_NONE;
3675         camera_cli_s *pc = (camera_cli_s *)camera;
3676         muse_camera_api_e api = MUSE_CAMERA_API_SET_PREVIEW_CB;
3677
3678         if (!pc || !pc->cb_info || !callback) {
3679                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
3680                 return CAMERA_ERROR_INVALID_PARAMETER;
3681         }
3682
3683         CAM_LOG_INFO("Enter");
3684
3685         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3686
3687         if (ret == CAMERA_ERROR_NONE) {
3688                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_PREVIEW]);
3689
3690                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_PREVIEW] = callback;
3691                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_PREVIEW] = user_data;
3692
3693                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_PREVIEW]);
3694         }
3695
3696         CAM_LOG_INFO("ret : 0x%x", ret);
3697
3698         return ret;
3699 }
3700
3701
3702 int camera_unset_preview_cb(camera_h camera)
3703 {
3704         int ret = CAMERA_ERROR_NONE;
3705         camera_cli_s *pc = (camera_cli_s *)camera;
3706         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_PREVIEW_CB;
3707
3708         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3709
3710         CAM_LOG_INFO("Enter");
3711
3712         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3713
3714         if (ret == CAMERA_ERROR_NONE) {
3715                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_PREVIEW]);
3716
3717                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_PREVIEW] = NULL;
3718                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_PREVIEW] = NULL;
3719
3720                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_PREVIEW]);
3721         }
3722
3723         CAM_LOG_INFO("ret : 0x%x", ret);
3724
3725         return ret;
3726 }
3727
3728
3729 int camera_set_media_packet_preview_cb(camera_h camera, camera_media_packet_preview_cb callback, void *user_data)
3730 {
3731         int ret = CAMERA_ERROR_NONE;
3732         camera_cli_s *pc = (camera_cli_s *)camera;
3733         muse_camera_api_e api = MUSE_CAMERA_API_SET_MEDIA_PACKET_PREVIEW_CB;
3734
3735         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3736
3737         if (camera_is_supported_media_packet_preview_cb(camera) == false) {
3738                 CAM_LOG_ERROR("NOT SUPPORTED");
3739                 return CAMERA_ERROR_NOT_SUPPORTED;
3740         }
3741
3742         if (callback == NULL) {
3743                 CAM_LOG_ERROR("NULL callback");
3744                 return CAMERA_ERROR_INVALID_PARAMETER;
3745         }
3746
3747         CAM_LOG_INFO("Enter");
3748
3749         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3750
3751         if (ret == CAMERA_ERROR_NONE) {
3752                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]);
3753
3754                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW] = callback;
3755                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW] = user_data;
3756
3757                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]);
3758         }
3759
3760         CAM_LOG_INFO("ret : 0x%x", ret);
3761
3762         return ret;
3763 }
3764
3765
3766 int camera_unset_media_packet_preview_cb(camera_h camera)
3767 {
3768         int ret = CAMERA_ERROR_NONE;
3769         camera_cli_s *pc = (camera_cli_s *)camera;
3770         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_MEDIA_PACKET_PREVIEW_CB;
3771
3772         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3773
3774         if (camera_is_supported_media_packet_preview_cb(camera) == false) {
3775                 CAM_LOG_ERROR("NOT SUPPORTED");
3776                 return CAMERA_ERROR_NOT_SUPPORTED;
3777         }
3778
3779         CAM_LOG_INFO("Enter");
3780
3781         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3782
3783         if (ret == CAMERA_ERROR_NONE) {
3784                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]);
3785
3786                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW] = NULL;
3787                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW] = NULL;
3788
3789                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]);
3790         }
3791
3792         CAM_LOG_INFO("ret : 0x%x", ret);
3793
3794         return ret;
3795 }
3796
3797
3798 int camera_set_state_changed_cb(camera_h camera, camera_state_changed_cb callback, void *user_data)
3799 {
3800         int ret = CAMERA_ERROR_NONE;
3801         camera_cli_s *pc = (camera_cli_s *)camera;
3802         muse_camera_api_e api = MUSE_CAMERA_API_SET_STATE_CHANGED_CB;
3803
3804         if (!pc || !pc->cb_info || !callback) {
3805                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
3806                 return CAMERA_ERROR_INVALID_PARAMETER;
3807         }
3808
3809         CAM_LOG_INFO("Enter");
3810
3811         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3812
3813         if (ret == CAMERA_ERROR_NONE) {
3814                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE]);
3815
3816                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE] = callback;
3817                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE] = user_data;
3818
3819                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE]);
3820         }
3821
3822         CAM_LOG_INFO("ret : 0x%x", ret);
3823
3824         return ret;
3825 }
3826
3827
3828 int camera_unset_state_changed_cb(camera_h camera)
3829 {
3830         int ret = CAMERA_ERROR_NONE;
3831         camera_cli_s *pc = (camera_cli_s *)camera;
3832         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_STATE_CHANGED_CB;
3833
3834         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3835
3836         CAM_LOG_INFO("Enter");
3837
3838         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3839
3840         if (ret == CAMERA_ERROR_NONE) {
3841                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE]);
3842
3843                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE] = NULL;
3844                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE] = NULL;
3845
3846                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE]);
3847         }
3848
3849         CAM_LOG_INFO("ret : 0x%x", ret);
3850
3851         return ret;
3852 }
3853
3854
3855 int camera_set_interrupted_cb(camera_h camera, camera_interrupted_cb callback, void *user_data)
3856 {
3857         int ret = CAMERA_ERROR_NONE;
3858         camera_cli_s *pc = (camera_cli_s *)camera;
3859         muse_camera_api_e api = MUSE_CAMERA_API_SET_INTERRUPTED_CB;
3860
3861         if (!pc || !pc->cb_info || !callback) {
3862                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
3863                 return CAMERA_ERROR_INVALID_PARAMETER;
3864         }
3865
3866         CAM_LOG_INFO("Enter");
3867
3868         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3869
3870         if (ret == CAMERA_ERROR_NONE) {
3871                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED]);
3872
3873                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED] = callback;
3874                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED] = user_data;
3875
3876                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED]);
3877         }
3878
3879         CAM_LOG_INFO("ret : 0x%x", ret);
3880
3881         return ret;
3882 }
3883
3884
3885 int camera_unset_interrupted_cb(camera_h camera)
3886 {
3887         int ret = CAMERA_ERROR_NONE;
3888         camera_cli_s *pc = (camera_cli_s *)camera;
3889         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_INTERRUPTED_CB;
3890
3891         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3892
3893         CAM_LOG_INFO("Enter");
3894
3895         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3896
3897         if (ret == CAMERA_ERROR_NONE) {
3898                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED]);
3899
3900                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED] = NULL;
3901                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED] = NULL;
3902
3903                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED]);
3904         }
3905
3906         CAM_LOG_INFO("ret : 0x%x", ret);
3907
3908         return ret;
3909 }
3910
3911
3912 int camera_set_interrupt_started_cb(camera_h camera, camera_interrupt_started_cb callback, void *user_data)
3913 {
3914         int ret = CAMERA_ERROR_NONE;
3915         camera_cli_s *pc = (camera_cli_s *)camera;
3916         muse_camera_api_e api = MUSE_CAMERA_API_SET_INTERRUPT_STARTED_CB;
3917
3918         if (!pc || !pc->cb_info || !callback) {
3919                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
3920                 return CAMERA_ERROR_INVALID_PARAMETER;
3921         }
3922
3923         CAM_LOG_INFO("Enter");
3924
3925         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3926
3927         if (ret == CAMERA_ERROR_NONE) {
3928                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED]);
3929
3930                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED] = callback;
3931                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED] = user_data;
3932
3933                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED]);
3934         }
3935
3936         CAM_LOG_INFO("ret : 0x%x", ret);
3937
3938         return ret;
3939 }
3940
3941
3942 int camera_unset_interrupt_started_cb(camera_h camera)
3943 {
3944         int ret = CAMERA_ERROR_NONE;
3945         camera_cli_s *pc = (camera_cli_s *)camera;
3946         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_INTERRUPT_STARTED_CB;
3947
3948         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3949
3950         CAM_LOG_INFO("Enter");
3951
3952         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3953
3954         if (ret == CAMERA_ERROR_NONE) {
3955                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED]);
3956
3957                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED] = NULL;
3958                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED] = NULL;
3959
3960                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED]);
3961         }
3962
3963         CAM_LOG_INFO("ret : 0x%x", ret);
3964
3965         return ret;
3966 }
3967
3968
3969 int camera_set_focus_changed_cb(camera_h camera, camera_focus_changed_cb callback, void *user_data)
3970 {
3971         int ret = CAMERA_ERROR_NONE;
3972         camera_cli_s *pc = (camera_cli_s *)camera;
3973         muse_camera_api_e api = MUSE_CAMERA_API_SET_FOCUS_CHANGED_CB;
3974
3975         if (!pc || !pc->cb_info || !callback) {
3976                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
3977                 return CAMERA_ERROR_INVALID_PARAMETER;
3978         }
3979
3980         CAM_LOG_INFO("Enter");
3981
3982         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3983
3984         if (ret == CAMERA_ERROR_NONE) {
3985                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE]);
3986
3987                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE] = callback;
3988                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE] = user_data;
3989
3990                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE]);
3991         }
3992
3993         CAM_LOG_INFO("ret : 0x%x", ret);
3994
3995         return ret;
3996 }
3997
3998
3999 int camera_unset_focus_changed_cb(camera_h camera)
4000 {
4001         int ret = CAMERA_ERROR_NONE;
4002         camera_cli_s *pc = (camera_cli_s *)camera;
4003         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_FOCUS_CHANGED_CB;
4004
4005         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4006
4007         CAM_LOG_INFO("Enter");
4008
4009         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4010
4011         if (ret == CAMERA_ERROR_NONE) {
4012                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE]);
4013
4014                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE] = NULL;
4015                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE] = NULL;
4016
4017                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE]);
4018         }
4019
4020         CAM_LOG_INFO("ret : 0x%x", ret);
4021
4022         return ret;
4023 }
4024
4025
4026 int camera_set_error_cb(camera_h camera, camera_error_cb callback, void *user_data)
4027 {
4028         int ret = CAMERA_ERROR_NONE;
4029         camera_cli_s *pc = (camera_cli_s *)camera;
4030         muse_camera_api_e api = MUSE_CAMERA_API_SET_ERROR_CB;
4031
4032         if (!pc || !pc->cb_info || !callback) {
4033                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
4034                 return CAMERA_ERROR_INVALID_PARAMETER;
4035         }
4036
4037         CAM_LOG_INFO("Enter");
4038
4039         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4040
4041         if (ret == CAMERA_ERROR_NONE) {
4042                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_ERROR]);
4043
4044                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_ERROR] = callback;
4045                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_ERROR] = user_data;
4046
4047                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_ERROR]);
4048         }
4049
4050         CAM_LOG_INFO("ret : 0x%x", ret);
4051
4052         return ret;
4053 }
4054
4055
4056 int camera_unset_error_cb(camera_h camera)
4057 {
4058         int ret = CAMERA_ERROR_NONE;
4059         camera_cli_s *pc = (camera_cli_s *)camera;
4060         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_ERROR_CB;
4061
4062         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4063
4064         CAM_LOG_INFO("Enter");
4065
4066         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4067
4068         if (ret == CAMERA_ERROR_NONE) {
4069                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_ERROR]);
4070
4071                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_ERROR] = NULL;
4072                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_ERROR] = NULL;
4073
4074                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_ERROR]);
4075         }
4076
4077         CAM_LOG_INFO("ret : 0x%x", ret);
4078
4079         return ret;
4080 }
4081
4082
4083 int camera_foreach_supported_preview_resolution(camera_h camera, camera_supported_preview_resolution_cb foreach_cb, void *user_data)
4084 {
4085         int ret = CAMERA_ERROR_NONE;
4086         camera_cli_s *pc = (camera_cli_s *)camera;
4087         muse_camera_api_e api = MUSE_CAMERA_API_SET_FOREACH_SUPPORTED_PREVIEW_RESOLUTION;
4088
4089         if (!pc || !pc->cb_info || !foreach_cb) {
4090                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
4091                 return CAMERA_ERROR_INVALID_PARAMETER;
4092         }
4093
4094         CAM_LOG_INFO("Enter");
4095
4096         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PREVIEW_RESOLUTION] = foreach_cb;
4097         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PREVIEW_RESOLUTION] = user_data;
4098
4099         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4100
4101         CAM_LOG_INFO("ret : 0x%x", ret);
4102
4103         return ret;
4104 }
4105
4106
4107 int camera_foreach_supported_capture_resolution(camera_h camera, camera_supported_capture_resolution_cb foreach_cb, void *user_data)
4108 {
4109         int ret = CAMERA_ERROR_NONE;
4110         camera_cli_s *pc = (camera_cli_s *)camera;
4111         muse_camera_api_e api = MUSE_CAMERA_API_SET_FOREACH_SUPPORTED_CAPTURE_RESOLUTION;
4112
4113         if (!pc || !pc->cb_info || !foreach_cb) {
4114                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
4115                 return CAMERA_ERROR_INVALID_PARAMETER;
4116         }
4117
4118         CAM_LOG_INFO("Enter");
4119
4120         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_CAPTURE_RESOLUTION] = foreach_cb;
4121         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_CAPTURE_RESOLUTION] = user_data;
4122
4123         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4124
4125         CAM_LOG_INFO("ret : 0x%x", ret);
4126
4127         return ret;
4128 }
4129
4130
4131 int camera_foreach_supported_capture_format(camera_h camera, camera_supported_capture_format_cb foreach_cb, void *user_data)
4132 {
4133         int ret = CAMERA_ERROR_NONE;
4134         camera_cli_s *pc = (camera_cli_s *)camera;
4135         muse_camera_api_e api = MUSE_CAMERA_API_SET_FOREACH_SUPPORTED_CAPTURE_FORMAT;
4136
4137         if (!pc || !pc->cb_info || !foreach_cb) {
4138                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
4139                 return CAMERA_ERROR_INVALID_PARAMETER;
4140         }
4141
4142         CAM_LOG_INFO("Enter");
4143
4144         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_CAPTURE_FORMAT] = foreach_cb;
4145         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_CAPTURE_FORMAT] = user_data;
4146
4147         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4148
4149         CAM_LOG_INFO("ret : 0x%x", ret);
4150
4151         return ret;
4152 }
4153
4154
4155 int camera_foreach_supported_preview_format(camera_h camera, camera_supported_preview_format_cb foreach_cb, void *user_data)
4156 {
4157         int ret = CAMERA_ERROR_NONE;
4158         camera_cli_s *pc = (camera_cli_s *)camera;
4159         muse_camera_api_e api = MUSE_CAMERA_API_SET_FOREACH_SUPPORTED_PREVIEW_FORMAT;
4160
4161         if (!pc || !pc->cb_info || !foreach_cb) {
4162                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
4163                 return CAMERA_ERROR_INVALID_PARAMETER;
4164         }
4165
4166         CAM_LOG_INFO("Enter");
4167
4168         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PREVIEW_FORMAT] = foreach_cb;
4169         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PREVIEW_FORMAT] = user_data;
4170
4171         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4172
4173         CAM_LOG_INFO("ret : 0x%x", ret);
4174
4175         return ret;
4176 }
4177
4178
4179 int camera_get_recommended_preview_resolution(camera_h camera, int *width, int *height)
4180 {
4181         int ret = CAMERA_ERROR_NONE;
4182         camera_cli_s *pc = (camera_cli_s *)camera;
4183         muse_camera_api_e api = MUSE_CAMERA_API_GET_RECOMMENDED_PREVIEW_RESOLUTION;
4184
4185         if (!pc || !pc->cb_info || !width || !height) {
4186                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, width, height);
4187                 return CAMERA_ERROR_INVALID_PARAMETER;
4188         }
4189
4190         CAM_LOG_INFO("Enter");
4191         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4192
4193         if (ret == CAMERA_ERROR_NONE) {
4194                 *width = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_RECOMMENDED_PREVIEW_RESOLUTION] >> 16;
4195                 *height = 0x0000ffff & pc->cb_info->get_int[MUSE_CAMERA_GET_INT_RECOMMENDED_PREVIEW_RESOLUTION];
4196         }
4197
4198         CAM_LOG_INFO("ret : 0x%x", ret);
4199
4200         return ret;
4201 }
4202
4203
4204 int camera_attr_get_lens_orientation(camera_h camera, int *angle)
4205 {
4206         int ret = CAMERA_ERROR_NONE;
4207         camera_cli_s *pc = (camera_cli_s *)camera;
4208         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_LENS_ORIENTATION;
4209
4210         if (!pc || !pc->cb_info || !angle) {
4211                 CAM_LOG_ERROR("NULL pointer %p %p", pc, angle);
4212                 return CAMERA_ERROR_INVALID_PARAMETER;
4213         }
4214
4215         CAM_LOG_INFO("Enter");
4216
4217         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4218
4219         if (ret == CAMERA_ERROR_NONE)
4220                 *angle = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_LENS_ORIENTATION];
4221
4222         CAM_LOG_INFO("ret : 0x%x", ret);
4223
4224         return ret;
4225 }
4226
4227
4228 int camera_attr_set_theater_mode(camera_h camera, camera_attr_theater_mode_e mode)
4229 {
4230         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_THEATER_MODE, (int)mode);
4231 }
4232
4233
4234 int camera_attr_get_theater_mode(camera_h camera, camera_attr_theater_mode_e *mode)
4235 {
4236         int ret = CAMERA_ERROR_NONE;
4237         camera_cli_s *pc = (camera_cli_s *)camera;
4238         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_THEATER_MODE;
4239
4240         if (!pc || !pc->cb_info || !mode) {
4241                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
4242                 return CAMERA_ERROR_INVALID_PARAMETER;
4243         }
4244
4245         CAM_LOG_INFO("Enter");
4246
4247         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4248
4249         if (ret == CAMERA_ERROR_NONE)
4250                 *mode = (camera_attr_theater_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_THEATER_MODE];
4251
4252         CAM_LOG_INFO("ret : 0x%x", ret);
4253
4254         return ret;
4255 }
4256
4257
4258 int camera_attr_foreach_supported_theater_mode(camera_h camera, camera_attr_supported_theater_mode_cb foreach_cb, void *user_data)
4259 {
4260         int ret = CAMERA_ERROR_NONE;
4261         camera_cli_s *pc = (camera_cli_s *)camera;
4262         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_THEATER_MODE;
4263
4264         if (!pc || !pc->cb_info || !foreach_cb) {
4265                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
4266                 return CAMERA_ERROR_INVALID_PARAMETER;
4267         }
4268
4269         CAM_LOG_INFO("Enter");
4270
4271         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_THEATER_MODE] = foreach_cb;
4272         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_THEATER_MODE] = user_data;
4273
4274         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4275
4276         CAM_LOG_INFO("Finish, return :%x", ret);
4277
4278         return ret;
4279 }
4280
4281
4282 int camera_attr_set_preview_fps(camera_h camera, camera_attr_fps_e fps)
4283 {
4284         int ret = CAMERA_ERROR_NONE;
4285         camera_cli_s *pc = (camera_cli_s *)camera;
4286         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_PREVIEW_FPS;
4287         camera_msg_param param;
4288         int set_fps = (int)fps;
4289
4290         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4291
4292         CAM_LOG_INFO("Enter");
4293
4294         CAMERA_MSG_PARAM_SET(param, INT, set_fps);
4295
4296         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4297
4298         CAM_LOG_INFO("ret : 0x%x", ret);
4299
4300         return ret;
4301 }
4302
4303
4304 int camera_attr_set_image_quality(camera_h camera, int quality)
4305 {
4306         int ret = CAMERA_ERROR_NONE;
4307         camera_cli_s *pc = (camera_cli_s *)camera;
4308         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_IMAGE_QUALITY;
4309         camera_msg_param param;
4310
4311         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4312
4313         CAM_LOG_INFO("Enter");
4314
4315         CAMERA_MSG_PARAM_SET(param, INT, quality);
4316
4317         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4318
4319         CAM_LOG_INFO("ret : 0x%x", ret);
4320
4321         return ret;
4322 }
4323
4324
4325 int camera_attr_get_preview_fps(camera_h camera, camera_attr_fps_e *fps)
4326 {
4327         int ret = CAMERA_ERROR_NONE;
4328         camera_cli_s *pc = (camera_cli_s *)camera;
4329         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_PREVIEW_FPS;
4330
4331         if (!pc || !pc->cb_info || !fps) {
4332                 CAM_LOG_ERROR("NULL pointer %p %p", pc, fps);
4333                 return CAMERA_ERROR_INVALID_PARAMETER;
4334         }
4335
4336         CAM_LOG_INFO("Enter");
4337
4338         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4339
4340         if (ret == CAMERA_ERROR_NONE)
4341                 *fps = (camera_attr_fps_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_PREVIEW_FPS];
4342
4343         CAM_LOG_INFO("ret : 0x%x", ret);
4344
4345         return ret;
4346 }
4347
4348
4349 int camera_attr_get_image_quality(camera_h camera, int *quality)
4350 {
4351         int ret = CAMERA_ERROR_NONE;
4352         camera_cli_s *pc = (camera_cli_s *)camera;
4353         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_IMAGE_QUALITY;
4354
4355         if (!pc || !pc->cb_info || !quality) {
4356                 CAM_LOG_ERROR("NULL pointer %p %p", pc, quality);
4357                 return CAMERA_ERROR_INVALID_PARAMETER;
4358         }
4359
4360         CAM_LOG_INFO("Enter");
4361
4362         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4363
4364         if (ret == CAMERA_ERROR_NONE)
4365                 *quality = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_IMAGE_QUALITY];
4366
4367         CAM_LOG_INFO("ret : 0x%x", ret);
4368
4369         return ret;
4370 }
4371
4372
4373 int camera_attr_get_encoded_preview_bitrate(camera_h camera, int *bitrate)
4374 {
4375         int ret = CAMERA_ERROR_NONE;
4376         camera_cli_s *pc = (camera_cli_s *)camera;
4377         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_ENCODED_PREVIEW_BITRATE;
4378
4379         if (!pc || !pc->cb_info || !bitrate) {
4380                 CAM_LOG_ERROR("NULL pointer %p %p", pc, bitrate);
4381                 return CAMERA_ERROR_INVALID_PARAMETER;
4382         }
4383
4384         CAM_LOG_INFO("Enter");
4385
4386         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4387
4388         if (ret == CAMERA_ERROR_NONE)
4389                 *bitrate = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENCODED_PREVIEW_BITRATE];
4390
4391         CAM_LOG_INFO("ret : 0x%x", ret);
4392
4393         return ret;
4394 }
4395
4396
4397 int camera_attr_set_encoded_preview_bitrate(camera_h camera, int bitrate)
4398 {
4399         int ret = CAMERA_ERROR_NONE;
4400         camera_cli_s *pc = (camera_cli_s *)camera;
4401         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_ENCODED_PREVIEW_BITRATE;
4402         camera_msg_param param;
4403         int set_bitrate = bitrate;
4404
4405         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4406
4407         CAM_LOG_INFO("Enter");
4408
4409         CAMERA_MSG_PARAM_SET(param, INT, set_bitrate);
4410
4411         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4412
4413         CAM_LOG_INFO("ret : 0x%x", ret);
4414
4415         return ret;
4416 }
4417
4418
4419 int camera_attr_get_encoded_preview_gop_interval(camera_h camera, int *interval)
4420 {
4421         int ret = CAMERA_ERROR_NONE;
4422         camera_cli_s *pc = (camera_cli_s *)camera;
4423         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_ENCODED_PREVIEW_GOP_INTERVAL;
4424
4425         if (!pc || !pc->cb_info || !interval) {
4426                 CAM_LOG_ERROR("NULL pointer %p %p", pc, interval);
4427                 return CAMERA_ERROR_INVALID_PARAMETER;
4428         }
4429
4430         CAM_LOG_INFO("Enter");
4431
4432         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4433
4434         if (ret == CAMERA_ERROR_NONE)
4435                 *interval = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENCODED_PREVIEW_GOP_INTERVAL];
4436
4437         CAM_LOG_INFO("ret : 0x%x", ret);
4438
4439         return ret;
4440 }
4441
4442
4443 int camera_attr_set_encoded_preview_gop_interval(camera_h camera, int interval)
4444 {
4445         int ret = CAMERA_ERROR_NONE;
4446         camera_cli_s *pc = (camera_cli_s *)camera;
4447         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_ENCODED_PREVIEW_GOP_INTERVAL;
4448         camera_msg_param param;
4449         int set_gop_interval = interval;
4450
4451         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4452
4453         CAM_LOG_INFO("Enter");
4454
4455         CAMERA_MSG_PARAM_SET(param, INT, set_gop_interval);
4456
4457         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4458
4459         CAM_LOG_INFO("ret : 0x%x", ret);
4460
4461         return ret;
4462 }
4463
4464
4465 int camera_attr_set_zoom(camera_h camera, int zoom)
4466 {
4467         int ret = CAMERA_ERROR_NONE;
4468         camera_cli_s *pc = (camera_cli_s *)camera;
4469         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_ZOOM;
4470         camera_msg_param param;
4471
4472         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4473
4474         CAM_LOG_INFO("Enter, remote_handle : %td", pc->remote_handle);
4475
4476         CAMERA_MSG_PARAM_SET(param, INT, zoom);
4477
4478         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4479
4480         CAM_LOG_INFO("ret : 0x%x", ret);
4481
4482         return ret;
4483 }
4484
4485
4486 int camera_attr_set_af_mode(camera_h camera, camera_attr_af_mode_e mode)
4487 {
4488         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_AF_MODE, (int)mode);
4489 }
4490
4491
4492 int camera_attr_set_af_area(camera_h camera, int x, int y)
4493 {
4494         int ret = CAMERA_ERROR_NONE;
4495         camera_cli_s *pc = (camera_cli_s *)camera;
4496         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_AF_AREA;
4497         camera_msg_param param;
4498         int value = 0;
4499
4500         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4501
4502         CAM_LOG_INFO("Enter - %d,%d", x, y);
4503
4504         value = (x << 16) | y;
4505         CAMERA_MSG_PARAM_SET(param, INT, value);
4506
4507         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4508
4509         CAM_LOG_INFO("ret : 0x%x", ret);
4510
4511         return ret;
4512 }
4513
4514
4515 int camera_attr_clear_af_area(camera_h camera)
4516 {
4517         int ret = CAMERA_ERROR_NONE;
4518         camera_cli_s *pc = (camera_cli_s *)camera;
4519         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_CLEAR_AF_AREA;
4520
4521         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4522
4523         CAM_LOG_INFO("Enter");
4524
4525         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4526
4527         CAM_LOG_INFO("ret : 0x%x", ret);
4528
4529         return ret;
4530 }
4531
4532
4533 int camera_attr_set_exposure_mode(camera_h camera, camera_attr_exposure_mode_e mode)
4534 {
4535         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_EXPOSURE_MODE, (int)mode);
4536 }
4537
4538
4539 int camera_attr_set_exposure(camera_h camera, int value)
4540 {
4541         int ret = CAMERA_ERROR_NONE;
4542         camera_cli_s *pc = (camera_cli_s *)camera;
4543         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_EXPOSURE;
4544         camera_msg_param param;
4545
4546         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4547
4548         CAM_LOG_INFO("Enter");
4549
4550         CAMERA_MSG_PARAM_SET(param, INT, value);
4551
4552         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4553
4554         CAM_LOG_INFO("ret : 0x%x", ret);
4555
4556         return ret;
4557 }
4558
4559
4560 int camera_attr_set_iso(camera_h camera, camera_attr_iso_e iso)
4561 {
4562         int ret = CAMERA_ERROR_NONE;
4563         camera_cli_s *pc = (camera_cli_s *)camera;
4564         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_ISO;
4565         camera_msg_param param;
4566         int set_iso = (int)iso;
4567
4568         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4569
4570         CAM_LOG_INFO("Enter");
4571
4572         CAMERA_MSG_PARAM_SET(param, INT, set_iso);
4573
4574         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4575
4576         CAM_LOG_INFO("ret : 0x%x", ret);
4577
4578         return ret;
4579 }
4580
4581
4582 int camera_attr_set_brightness(camera_h camera, int level)
4583 {
4584         int ret = CAMERA_ERROR_NONE;
4585         camera_cli_s *pc = (camera_cli_s *)camera;
4586         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_BRIGHTNESS;
4587         camera_msg_param param;
4588
4589         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4590
4591         CAM_LOG_INFO("Enter");
4592
4593         CAMERA_MSG_PARAM_SET(param, INT, level);
4594
4595         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4596
4597         CAM_LOG_INFO("ret : 0x%x", ret);
4598
4599         return ret;
4600 }
4601
4602
4603 int camera_attr_set_contrast(camera_h camera, int level)
4604 {
4605         int ret = CAMERA_ERROR_NONE;
4606         camera_cli_s *pc = (camera_cli_s *)camera;
4607         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_CONTRAST;
4608         camera_msg_param param;
4609
4610         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4611
4612         CAM_LOG_INFO("Enter");
4613
4614         CAMERA_MSG_PARAM_SET(param, INT, level);
4615
4616         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4617
4618         CAM_LOG_INFO("ret : 0x%x", ret);
4619
4620         return ret;
4621 }
4622
4623
4624 int camera_attr_set_hue(camera_h camera, int level)
4625 {
4626         int ret = CAMERA_ERROR_NONE;
4627         camera_cli_s *pc = (camera_cli_s *)camera;
4628         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_HUE;
4629         camera_msg_param param;
4630
4631         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4632
4633         CAM_LOG_INFO("Enter");
4634
4635         CAMERA_MSG_PARAM_SET(param, INT, level);
4636
4637         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4638
4639         CAM_LOG_INFO("ret : 0x%x", ret);
4640
4641         return ret;
4642 }
4643
4644
4645 int camera_attr_set_whitebalance(camera_h camera, camera_attr_whitebalance_e wb)
4646 {
4647         int ret = CAMERA_ERROR_NONE;
4648         camera_cli_s *pc = (camera_cli_s *)camera;
4649         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_WHITEBALANCE;
4650         camera_msg_param param;
4651         int set_whitebalance = (int)wb;
4652
4653         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4654
4655         CAM_LOG_INFO("Enter");
4656
4657         CAMERA_MSG_PARAM_SET(param, INT, set_whitebalance);
4658
4659         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4660
4661         CAM_LOG_INFO("ret : 0x%x", ret);
4662
4663         return ret;
4664 }
4665
4666
4667 int camera_attr_set_effect(camera_h camera, camera_attr_effect_mode_e effect)
4668 {
4669         int ret = CAMERA_ERROR_NONE;
4670         camera_cli_s *pc = (camera_cli_s *)camera;
4671         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_EFFECT;
4672         camera_msg_param param;
4673         int set_effect = (int)effect;
4674
4675         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4676
4677         CAM_LOG_INFO("Enter");
4678
4679         CAMERA_MSG_PARAM_SET(param, INT, set_effect);
4680
4681         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4682
4683         CAM_LOG_INFO("ret : 0x%x", ret);
4684
4685         return ret;
4686 }
4687
4688
4689 int camera_attr_set_scene_mode(camera_h camera, camera_attr_scene_mode_e mode)
4690 {
4691         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_SCENE_MODE, (int)mode);
4692 }
4693
4694
4695 int camera_attr_enable_tag(camera_h camera, bool enable)
4696 {
4697         return __set_enable(camera, MUSE_CAMERA_API_ATTR_ENABLE_TAG, (int)enable);
4698 }
4699
4700
4701 int camera_attr_set_tag_image_description(camera_h camera, const char *description)
4702 {
4703         int ret = CAMERA_ERROR_NONE;
4704         camera_cli_s *pc = (camera_cli_s *)camera;
4705         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_TAG_IMAGE_DESCRIPTION;
4706         camera_msg_param param;
4707
4708         if (!pc || !pc->cb_info || !description) {
4709                 CAM_LOG_ERROR("NULL pointer %p %p", pc, description);
4710                 return CAMERA_ERROR_INVALID_PARAMETER;
4711         }
4712
4713         CAM_LOG_INFO("Enter");
4714
4715         CAMERA_MSG_PARAM_SET(param, STRING, description);
4716
4717         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4718
4719         CAM_LOG_INFO("ret : 0x%x", ret);
4720
4721         return ret;
4722 }
4723
4724
4725 int camera_attr_set_tag_orientation(camera_h camera, camera_attr_tag_orientation_e orientation)
4726 {
4727         int ret = CAMERA_ERROR_NONE;
4728         camera_cli_s *pc = (camera_cli_s *)camera;
4729         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_TAG_ORIENTATION;
4730         camera_msg_param param;
4731         int set_orientation = (int)orientation;
4732
4733         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4734
4735         CAM_LOG_INFO("Enter");
4736
4737         CAMERA_MSG_PARAM_SET(param, INT, set_orientation);
4738
4739         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4740
4741         CAM_LOG_INFO("ret : 0x%x", ret);
4742
4743         return ret;
4744 }
4745
4746
4747 int camera_attr_set_tag_software(camera_h camera, const char *software)
4748 {
4749         int ret = CAMERA_ERROR_NONE;
4750         camera_cli_s *pc = (camera_cli_s *)camera;
4751         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_TAG_SOFTWARE;
4752         camera_msg_param param;
4753
4754         if (!pc || !pc->cb_info || !software) {
4755                 CAM_LOG_ERROR("NULL pointer %p %p", pc, software);
4756                 return CAMERA_ERROR_INVALID_PARAMETER;
4757         }
4758
4759         CAM_LOG_INFO("Enter, remote_handle : %td", pc->remote_handle);
4760
4761         CAMERA_MSG_PARAM_SET(param, STRING, software);
4762
4763         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4764
4765         CAM_LOG_INFO("ret : 0x%x", ret);
4766
4767         return ret;
4768 }
4769
4770
4771 int camera_attr_set_geotag(camera_h camera, double latitude, double longitude, double altitude)
4772 {
4773         int ret = CAMERA_ERROR_NONE;
4774         camera_cli_s *pc = (camera_cli_s *)camera;
4775         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_GEOTAG;
4776         double set_geotag[3] = {latitude, longitude, altitude};
4777         char *msg = NULL;
4778         int length = 0;
4779
4780         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4781
4782         CAM_LOG_INFO("Enter");
4783
4784         length = sizeof(set_geotag) / sizeof(int) + \
4785                 (sizeof(set_geotag) % sizeof(int) ? 1 : 0);
4786
4787         msg = muse_core_msg_new(api,
4788                 MUSE_TYPE_ARRAY, "set_geotag", length, (int *)set_geotag,
4789                 NULL);
4790
4791         __send_message_get_return(pc->cb_info, api, msg, CAMERA_CB_TIMEOUT, &ret);
4792
4793         return ret;
4794 }
4795
4796
4797 int camera_attr_remove_geotag(camera_h camera)
4798 {
4799         int ret = CAMERA_ERROR_NONE;
4800         camera_cli_s *pc = (camera_cli_s *)camera;
4801         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_REMOVE_GEOTAG;
4802
4803         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4804
4805         CAM_LOG_INFO("Enter");
4806
4807         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4808
4809         CAM_LOG_INFO("ret : 0x%x", ret);
4810
4811         return ret;
4812 }
4813
4814
4815 int camera_attr_set_flash_mode(camera_h camera, camera_attr_flash_mode_e mode)
4816 {
4817         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_FLASH_MODE, (int)mode);
4818 }
4819
4820
4821 int camera_attr_get_zoom(camera_h camera, int *zoom)
4822 {
4823         int ret = CAMERA_ERROR_NONE;
4824         camera_cli_s *pc = (camera_cli_s *)camera;
4825         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_ZOOM;
4826
4827         if (!pc || !pc->cb_info || !zoom) {
4828                 CAM_LOG_ERROR("NULL pointer %p %p", pc, zoom);
4829                 return CAMERA_ERROR_INVALID_PARAMETER;
4830         }
4831
4832         CAM_LOG_INFO("Enter");
4833
4834         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4835
4836         if (ret == CAMERA_ERROR_NONE)
4837                 *zoom = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ZOOM];
4838
4839         CAM_LOG_INFO("ret : 0x%x", ret);
4840
4841         return ret;
4842 }
4843
4844
4845 int camera_attr_get_zoom_range(camera_h camera, int *min, int *max)
4846 {
4847         int ret = CAMERA_ERROR_NONE;
4848         camera_cli_s *pc = (camera_cli_s *)camera;
4849         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_ZOOM_RANGE;
4850
4851         if (!pc || !pc->cb_info || !min || !max) {
4852                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
4853                 return CAMERA_ERROR_INVALID_PARAMETER;
4854         }
4855
4856         CAM_LOG_INFO("Enter");
4857
4858         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4859
4860         if (ret == CAMERA_ERROR_NONE) {
4861                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_ZOOM_RANGE][0];
4862                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_ZOOM_RANGE][1];
4863         }
4864
4865         CAM_LOG_INFO("ret : 0x%x", ret);
4866
4867         return ret;
4868 }
4869
4870
4871 int camera_attr_get_af_mode(camera_h camera, camera_attr_af_mode_e *mode)
4872 {
4873         int ret = CAMERA_ERROR_NONE;
4874         camera_cli_s *pc = (camera_cli_s *)camera;
4875         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_AF_MODE;
4876
4877         if (!pc || !pc->cb_info || !mode) {
4878                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
4879                 return CAMERA_ERROR_INVALID_PARAMETER;
4880         }
4881
4882         CAM_LOG_INFO("Enter");
4883
4884         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4885
4886         if (ret == CAMERA_ERROR_NONE)
4887                 *mode = (camera_attr_af_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_AF_MODE];
4888
4889         CAM_LOG_INFO("ret : 0x%x", ret);
4890
4891         return ret;
4892 }
4893
4894
4895 int camera_attr_get_exposure_mode(camera_h camera, camera_attr_exposure_mode_e *mode)
4896 {
4897         int ret = CAMERA_ERROR_NONE;
4898         camera_cli_s *pc = (camera_cli_s *)camera;
4899         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EXPOSURE_MODE;
4900
4901         if (!pc || !pc->cb_info || !mode) {
4902                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
4903                 return CAMERA_ERROR_INVALID_PARAMETER;
4904         }
4905
4906         CAM_LOG_INFO("Enter");
4907
4908         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4909
4910         if (ret == CAMERA_ERROR_NONE)
4911                 *mode = (camera_attr_exposure_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_EXPOSURE_MODE];
4912
4913         CAM_LOG_INFO("ret : 0x%x", ret);
4914
4915         return ret;
4916 }
4917
4918
4919 int camera_attr_get_exposure(camera_h camera, int *value)
4920 {
4921         int ret = CAMERA_ERROR_NONE;
4922         camera_cli_s *pc = (camera_cli_s *)camera;
4923         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EXPOSURE;
4924
4925         if (!pc || !pc->cb_info || !value) {
4926                 CAM_LOG_ERROR("NULL pointer %p %p", pc, value);
4927                 return CAMERA_ERROR_INVALID_PARAMETER;
4928         }
4929
4930         CAM_LOG_INFO("Enter");
4931
4932         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4933
4934         if (ret == CAMERA_ERROR_NONE)
4935                 *value = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_EXPOSURE];
4936
4937         CAM_LOG_INFO("ret : 0x%x", ret);
4938
4939         return ret;
4940 }
4941
4942
4943 int camera_attr_get_exposure_range(camera_h camera, int *min, int *max)
4944 {
4945         int ret = CAMERA_ERROR_NONE;
4946         camera_cli_s *pc = (camera_cli_s *)camera;
4947         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EXPOSURE_RANGE;
4948
4949         if (!pc || !pc->cb_info || !min || !max) {
4950                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
4951                 return CAMERA_ERROR_INVALID_PARAMETER;
4952         }
4953
4954         CAM_LOG_INFO("Enter");
4955
4956         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4957
4958         if (ret == CAMERA_ERROR_NONE) {
4959                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_EXPOSURE_RANGE][0];
4960                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_EXPOSURE_RANGE][1];
4961         }
4962
4963         CAM_LOG_INFO("ret : 0x%x", ret);
4964
4965         return ret;
4966 }
4967
4968
4969 int camera_attr_get_iso(camera_h camera, camera_attr_iso_e *iso)
4970 {
4971         int ret = CAMERA_ERROR_NONE;
4972         camera_cli_s *pc = (camera_cli_s *)camera;
4973         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_ISO;
4974
4975         if (!pc || !pc->cb_info || !iso) {
4976                 CAM_LOG_ERROR("NULL pointer %p %p", pc, iso);
4977                 return CAMERA_ERROR_INVALID_PARAMETER;
4978         }
4979
4980         CAM_LOG_INFO("Enter");
4981
4982         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4983
4984         if (ret == CAMERA_ERROR_NONE)
4985                 *iso = (camera_attr_iso_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ISO];
4986
4987         CAM_LOG_INFO("ret : 0x%x", ret);
4988
4989         return ret;
4990 }
4991
4992
4993 int camera_attr_get_brightness(camera_h camera, int *level)
4994 {
4995         int ret = CAMERA_ERROR_NONE;
4996         camera_cli_s *pc = (camera_cli_s *)camera;
4997         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_BRIGHTNESS;
4998
4999         if (!pc || !pc->cb_info || !level) {
5000                 CAM_LOG_ERROR("NULL pointer %p %p", pc, level);
5001                 return CAMERA_ERROR_INVALID_PARAMETER;
5002         }
5003
5004         CAM_LOG_INFO("Enter");
5005
5006         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5007
5008         if (ret == CAMERA_ERROR_NONE)
5009                 *level = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_BRIGHTNESS];
5010
5011         CAM_LOG_INFO("ret : 0x%x", ret);
5012
5013         return ret;
5014 }
5015
5016
5017 int camera_attr_get_brightness_range(camera_h camera, int *min, int *max)
5018 {
5019         int ret = CAMERA_ERROR_NONE;
5020         camera_cli_s *pc = (camera_cli_s *)camera;
5021         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_BRIGHTNESS_RANGE;
5022
5023         if (!pc || !pc->cb_info || !min || !max) {
5024                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
5025                 return CAMERA_ERROR_INVALID_PARAMETER;
5026         }
5027
5028         CAM_LOG_INFO("Enter");
5029
5030         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5031
5032         if (ret == CAMERA_ERROR_NONE) {
5033                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_BRIGHTNESS_RANGE][0];
5034                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_BRIGHTNESS_RANGE][1];
5035         }
5036
5037         CAM_LOG_INFO("ret : 0x%x", ret);
5038
5039         return ret;
5040 }
5041
5042
5043 int camera_attr_get_contrast(camera_h camera, int *level)
5044 {
5045         int ret = CAMERA_ERROR_NONE;
5046         camera_cli_s *pc = (camera_cli_s *)camera;
5047         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_CONTRAST;
5048
5049         if (!pc || !pc->cb_info || !level) {
5050                 CAM_LOG_ERROR("NULL pointer %p %p", pc, level);
5051                 return CAMERA_ERROR_INVALID_PARAMETER;
5052         }
5053
5054         CAM_LOG_INFO("Enter");
5055
5056         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5057
5058         if (ret == CAMERA_ERROR_NONE)
5059                 *level = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_CONTRAST];
5060
5061         CAM_LOG_INFO("ret : 0x%x", ret);
5062
5063         return ret;
5064 }
5065
5066
5067 int camera_attr_get_contrast_range(camera_h camera, int *min, int *max)
5068 {
5069         int ret = CAMERA_ERROR_NONE;
5070         camera_cli_s *pc = (camera_cli_s *)camera;
5071         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_CONTRAST_RANGE;
5072
5073         if (!pc || !pc->cb_info || !min || !max) {
5074                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
5075                 return CAMERA_ERROR_INVALID_PARAMETER;
5076         }
5077
5078         CAM_LOG_INFO("Enter");
5079
5080         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5081
5082         if (ret == CAMERA_ERROR_NONE) {
5083                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_CONTRAST_RANGE][0];
5084                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_CONTRAST_RANGE][1];
5085                 CAM_LOG_INFO("min %d, max %d", *min, *max);
5086         }
5087
5088         CAM_LOG_INFO("ret : 0x%x", ret);
5089
5090         return ret;
5091 }
5092
5093
5094 int camera_attr_get_hue(camera_h camera, int *level)
5095 {
5096         int ret = CAMERA_ERROR_NONE;
5097         camera_cli_s *pc = (camera_cli_s *)camera;
5098         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_HUE;
5099
5100         if (!pc || !pc->cb_info || !level) {
5101                 CAM_LOG_ERROR("NULL pointer %p %p", pc, level);
5102                 return CAMERA_ERROR_INVALID_PARAMETER;
5103         }
5104
5105         CAM_LOG_INFO("Enter");
5106
5107         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5108
5109         if (ret == CAMERA_ERROR_NONE)
5110                 *level = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_HUE];
5111
5112         CAM_LOG_INFO("ret : 0x%x", ret);
5113
5114         return ret;
5115 }
5116
5117
5118 int camera_attr_get_hue_range(camera_h camera, int *min, int *max)
5119 {
5120         int ret = CAMERA_ERROR_NONE;
5121         camera_cli_s *pc = (camera_cli_s *)camera;
5122         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_HUE_RANGE;
5123
5124         if (!pc || !pc->cb_info || !min || !max) {
5125                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
5126                 return CAMERA_ERROR_INVALID_PARAMETER;
5127         }
5128
5129         CAM_LOG_INFO("Enter");
5130
5131         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5132
5133         if (ret == CAMERA_ERROR_NONE) {
5134                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_HUE_RANGE][0];
5135                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_HUE_RANGE][1];
5136                 CAM_LOG_INFO("min %d, max %d", *min, *max);
5137         }
5138
5139         CAM_LOG_INFO("ret : 0x%x", ret);
5140
5141         return ret;
5142 }
5143
5144
5145 int camera_attr_get_whitebalance(camera_h camera, camera_attr_whitebalance_e *wb)
5146 {
5147         int ret = CAMERA_ERROR_NONE;
5148         camera_cli_s *pc = (camera_cli_s *)camera;
5149         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_WHITEBALANCE;
5150
5151         if (!pc || !pc->cb_info || !wb) {
5152                 CAM_LOG_ERROR("NULL pointer %p %p", pc, wb);
5153                 return CAMERA_ERROR_INVALID_PARAMETER;
5154         }
5155
5156         CAM_LOG_INFO("Enter");
5157
5158         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5159
5160         if (ret == CAMERA_ERROR_NONE)
5161                 *wb = (camera_attr_whitebalance_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_WHITE_BALANCE];
5162
5163         CAM_LOG_INFO("ret : 0x%x", ret);
5164
5165         return ret;
5166 }
5167
5168
5169 int camera_attr_get_effect(camera_h camera, camera_attr_effect_mode_e *effect)
5170 {
5171         int ret = CAMERA_ERROR_NONE;
5172         camera_cli_s *pc = (camera_cli_s *)camera;
5173         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EFFECT;
5174
5175         if (!pc || !pc->cb_info || !effect) {
5176                 CAM_LOG_ERROR("NULL pointer %p %p", pc, effect);
5177                 return CAMERA_ERROR_INVALID_PARAMETER;
5178         }
5179
5180         CAM_LOG_INFO("Enter");
5181
5182         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5183
5184         if (ret == CAMERA_ERROR_NONE)
5185                 *effect = (camera_attr_effect_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_EFFECT];
5186
5187         CAM_LOG_INFO("ret : 0x%x", ret);
5188
5189         return ret;
5190 }
5191
5192
5193 int camera_attr_get_scene_mode(camera_h camera, camera_attr_scene_mode_e *mode)
5194 {
5195         int ret = CAMERA_ERROR_NONE;
5196         camera_cli_s *pc = (camera_cli_s *)camera;
5197         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_SCENE_MODE;
5198
5199         if (!pc || !pc->cb_info || !mode) {
5200                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
5201                 return CAMERA_ERROR_INVALID_PARAMETER;
5202         }
5203
5204         CAM_LOG_INFO("Enter");
5205
5206         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5207
5208         if (ret == CAMERA_ERROR_NONE)
5209                 *mode = (camera_attr_scene_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_SCENE_MODE];
5210
5211         CAM_LOG_INFO("ret : 0x%x", ret);
5212
5213         return ret;
5214 }
5215
5216
5217 int camera_attr_is_enabled_tag(camera_h camera, bool *enable)
5218 {
5219         int ret = CAMERA_ERROR_NONE;
5220         camera_cli_s *pc = (camera_cli_s *)camera;
5221         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_IS_ENABLED_TAG;
5222
5223         if (!pc || !pc->cb_info || !enable) {
5224                 CAM_LOG_ERROR("NULL pointer %p %p", pc, enable);
5225                 return CAMERA_ERROR_INVALID_PARAMETER;
5226         }
5227
5228         CAM_LOG_INFO("Enter");
5229
5230         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5231
5232         if (ret == CAMERA_ERROR_NONE)
5233                 *enable = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENABLED_TAG];
5234
5235         CAM_LOG_INFO("ret : 0x%x", ret);
5236
5237         return ret;
5238 }
5239
5240
5241 int camera_attr_get_tag_image_description(camera_h camera, char **description)
5242 {
5243         int ret = CAMERA_ERROR_NONE;
5244         camera_cli_s *pc = (camera_cli_s *)camera;
5245         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_TAG_IMAGE_DESCRIPTION;
5246
5247         if (!pc || !pc->cb_info || !description) {
5248                 CAM_LOG_ERROR("NULL pointer %p %p", pc, description);
5249                 return CAMERA_ERROR_INVALID_PARAMETER;
5250         }
5251
5252         CAM_LOG_INFO("Enter");
5253
5254         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5255
5256         if (ret == CAMERA_ERROR_NONE)
5257                 *description = strdup(pc->cb_info->get_string[MUSE_CAMERA_GET_STRING_TAG_IMAGE_DESCRIPTION]);
5258
5259         CAM_LOG_INFO("ret : 0x%x", ret);
5260
5261         return ret;
5262 }
5263
5264
5265 int camera_attr_get_tag_orientation(camera_h camera, camera_attr_tag_orientation_e *orientation)
5266 {
5267         int ret = CAMERA_ERROR_NONE;
5268         camera_cli_s *pc = (camera_cli_s *)camera;
5269         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_TAG_ORIENTATION;
5270
5271         if (!pc || !pc->cb_info || !orientation) {
5272                 CAM_LOG_ERROR("NULL pointer %p %p", pc, orientation);
5273                 return CAMERA_ERROR_INVALID_PARAMETER;
5274         }
5275
5276         CAM_LOG_INFO("Enter");
5277
5278         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5279
5280         if (ret == CAMERA_ERROR_NONE)
5281                 *orientation = (camera_attr_tag_orientation_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_TAG_ORIENTATION];
5282
5283         CAM_LOG_INFO("ret : 0x%x", ret);
5284
5285         return ret;
5286 }
5287
5288
5289 int camera_attr_get_tag_software(camera_h camera, char **software)
5290 {
5291         int ret = CAMERA_ERROR_NONE;
5292         camera_cli_s *pc = (camera_cli_s *)camera;
5293         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_TAG_SOFTWARE;
5294
5295         if (!pc || !pc->cb_info || !software) {
5296                 CAM_LOG_ERROR("NULL pointer %p %p", pc, software);
5297                 return CAMERA_ERROR_INVALID_PARAMETER;
5298         }
5299
5300         CAM_LOG_INFO("Enter");
5301
5302         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5303
5304         if (ret == CAMERA_ERROR_NONE)
5305                 *software = strdup(pc->cb_info->get_string[MUSE_CAMERA_GET_STRING_TAG_SOFTWARE]);
5306
5307         CAM_LOG_INFO("ret : 0x%x", ret);
5308
5309         return ret;
5310 }
5311
5312
5313 int camera_attr_get_geotag(camera_h camera, double *latitude, double *longitude, double *altitude)
5314 {
5315         int ret = CAMERA_ERROR_NONE;
5316         camera_cli_s *pc = (camera_cli_s *)camera;
5317         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_GEOTAG;
5318
5319         if (!pc || !pc->cb_info || !latitude || !longitude || !altitude) {
5320                 CAM_LOG_ERROR("NULL pointer %p %p %p %p", pc, latitude, longitude, altitude);
5321                 return CAMERA_ERROR_INVALID_PARAMETER;
5322         }
5323
5324         CAM_LOG_INFO("Enter");
5325
5326         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5327
5328         if (ret == CAMERA_ERROR_NONE) {
5329                 *latitude = pc->cb_info->get_geotag[0];
5330                 *longitude = pc->cb_info->get_geotag[1];
5331                 *altitude = pc->cb_info->get_geotag[2];
5332         }
5333
5334         CAM_LOG_INFO("ret : 0x%x", ret);
5335
5336         return ret;
5337 }
5338
5339
5340 int camera_attr_get_flash_mode(camera_h camera, camera_attr_flash_mode_e *mode)
5341 {
5342         int ret = CAMERA_ERROR_NONE;
5343         camera_cli_s *pc = (camera_cli_s *)camera;
5344         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_FLASH_MODE;
5345
5346         if (!pc || !pc->cb_info || !mode) {
5347                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
5348                 return CAMERA_ERROR_INVALID_PARAMETER;
5349         }
5350
5351         CAM_LOG_INFO("Enter");
5352
5353         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5354
5355         if (ret == CAMERA_ERROR_NONE)
5356                 *mode = (camera_attr_flash_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_FLASH_MODE];
5357
5358         CAM_LOG_INFO("ret : 0x%x", ret);
5359
5360         return ret;
5361 }
5362
5363
5364 int camera_get_flash_state(camera_device_e device, camera_flash_state_e *state)
5365 {
5366         int ret = CAMERA_ERROR_NONE;
5367         int get_flash_state = 0;
5368
5369         if (!state) {
5370                 CAM_LOG_ERROR("NULL pointer");
5371                 return CAMERA_ERROR_INVALID_PARAMETER;
5372         }
5373
5374         ret = _camera_independent_request(MUSE_CAMERA_API_GET_FLASH_STATE,
5375                 (int)device, "get_flash_state", &get_flash_state);
5376
5377         if (ret == CAMERA_ERROR_NONE) {
5378                 *state = (camera_flash_state_e)get_flash_state;
5379                 CAM_LOG_INFO("flash state %d", *state);
5380         } else {
5381                 CAM_LOG_ERROR("failed 0x%x", ret);
5382         }
5383
5384         return ret;
5385 }
5386
5387
5388 int camera_attr_foreach_supported_af_mode(camera_h camera, camera_attr_supported_af_mode_cb foreach_cb, void *user_data)
5389 {
5390         int ret = CAMERA_ERROR_NONE;
5391         camera_cli_s *pc = (camera_cli_s *)camera;
5392         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_AF_MODE;
5393
5394         if (!pc || !pc->cb_info || !foreach_cb) {
5395                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5396                 return CAMERA_ERROR_INVALID_PARAMETER;
5397         }
5398
5399         CAM_LOG_INFO("Enter");
5400
5401         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_AF_MODE] = foreach_cb;
5402         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_AF_MODE] = user_data;
5403
5404         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5405
5406         CAM_LOG_INFO("ret : 0x%x", ret);
5407
5408         return ret;
5409 }
5410
5411
5412 int camera_attr_foreach_supported_exposure_mode(camera_h camera, camera_attr_supported_exposure_mode_cb foreach_cb, void *user_data)
5413 {
5414         int ret = CAMERA_ERROR_NONE;
5415         camera_cli_s *pc = (camera_cli_s *)camera;
5416         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_EXPOSURE_MODE;
5417
5418         if (!pc || !pc->cb_info || !foreach_cb) {
5419                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5420                 return CAMERA_ERROR_INVALID_PARAMETER;
5421         }
5422
5423         CAM_LOG_INFO("Enter");
5424
5425         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_EXPOSURE_MODE] = foreach_cb;
5426         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_EXPOSURE_MODE] = user_data;
5427
5428         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5429
5430         CAM_LOG_INFO("ret : 0x%x", ret);
5431
5432         return ret;
5433 }
5434
5435
5436 int camera_attr_foreach_supported_iso(camera_h camera, camera_attr_supported_iso_cb foreach_cb, void *user_data)
5437 {
5438         int ret = CAMERA_ERROR_NONE;
5439         camera_cli_s *pc = (camera_cli_s *)camera;
5440         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_ISO;
5441
5442         if (!pc || !pc->cb_info || !foreach_cb) {
5443                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5444                 return CAMERA_ERROR_INVALID_PARAMETER;
5445         }
5446
5447         CAM_LOG_INFO("Enter");
5448
5449         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_ISO] = foreach_cb;
5450         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_ISO] = user_data;
5451
5452         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5453
5454         CAM_LOG_INFO("ret : 0x%x", ret);
5455
5456         return ret;
5457 }
5458
5459
5460 int camera_attr_foreach_supported_whitebalance(camera_h camera, camera_attr_supported_whitebalance_cb foreach_cb, void *user_data)
5461 {
5462         int ret = CAMERA_ERROR_NONE;
5463         camera_cli_s *pc = (camera_cli_s *)camera;
5464         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_WHITEBALANCE;
5465
5466         if (!pc || !pc->cb_info || !foreach_cb) {
5467                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5468                 return CAMERA_ERROR_INVALID_PARAMETER;
5469         }
5470
5471         CAM_LOG_INFO("Enter");
5472
5473         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_WHITEBALANCE] = foreach_cb;
5474         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_WHITEBALANCE] = user_data;
5475
5476         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5477
5478         CAM_LOG_INFO("ret : 0x%x", ret);
5479
5480         return ret;
5481 }
5482
5483
5484 int camera_attr_foreach_supported_effect(camera_h camera, camera_attr_supported_effect_cb foreach_cb, void *user_data)
5485 {
5486         int ret = CAMERA_ERROR_NONE;
5487         camera_cli_s *pc = (camera_cli_s *)camera;
5488         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_EFFECT;
5489
5490         if (!pc || !pc->cb_info || !foreach_cb) {
5491                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5492                 return CAMERA_ERROR_INVALID_PARAMETER;
5493         }
5494
5495         CAM_LOG_INFO("Enter");
5496
5497         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_EFFECT] = foreach_cb;
5498         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_EFFECT] = user_data;
5499
5500         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5501
5502         CAM_LOG_INFO("ret : 0x%x", ret);
5503
5504         return ret;
5505 }
5506
5507
5508 int camera_attr_foreach_supported_scene_mode(camera_h camera, camera_attr_supported_scene_mode_cb foreach_cb, void *user_data)
5509 {
5510         int ret = CAMERA_ERROR_NONE;
5511         camera_cli_s *pc = (camera_cli_s *)camera;
5512         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_SCENE_MODE;
5513
5514         if (!pc || !pc->cb_info || !foreach_cb) {
5515                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5516                 return CAMERA_ERROR_INVALID_PARAMETER;
5517         }
5518
5519         CAM_LOG_INFO("Enter");
5520
5521         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_SCENE_MODE] = foreach_cb;
5522         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_SCENE_MODE] = user_data;
5523
5524         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5525
5526         CAM_LOG_INFO("ret : 0x%x", ret);
5527
5528         return ret;
5529 }
5530
5531
5532 int camera_attr_foreach_supported_flash_mode(camera_h camera, camera_attr_supported_flash_mode_cb foreach_cb, void *user_data)
5533 {
5534         int ret = CAMERA_ERROR_NONE;
5535         camera_cli_s *pc = (camera_cli_s *)camera;
5536         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_FLASH_MODE;
5537
5538         if (!pc || !pc->cb_info || !foreach_cb) {
5539                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5540                 return CAMERA_ERROR_INVALID_PARAMETER;
5541         }
5542
5543         CAM_LOG_INFO("Enter");
5544
5545         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FLASH_MODE] = foreach_cb;
5546         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FLASH_MODE] = user_data;
5547
5548         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5549
5550         CAM_LOG_INFO("ret : 0x%x", ret);
5551
5552         return ret;
5553 }
5554
5555
5556 int camera_attr_foreach_supported_fps(camera_h camera, camera_attr_supported_fps_cb foreach_cb, void *user_data)
5557 {
5558         int ret = CAMERA_ERROR_NONE;
5559         camera_cli_s *pc = (camera_cli_s *)camera;
5560         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_FPS;
5561
5562         if (!pc || !pc->cb_info || !foreach_cb) {
5563                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5564                 return CAMERA_ERROR_INVALID_PARAMETER;
5565         }
5566
5567         CAM_LOG_INFO("Enter");
5568
5569         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FPS] = foreach_cb;
5570         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FPS] = user_data;
5571
5572         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5573
5574         CAM_LOG_INFO("Enter, handle :%td", pc->remote_handle);
5575
5576         return ret;
5577 }
5578
5579
5580 int camera_attr_foreach_supported_fps_by_resolution(camera_h camera, int width, int height, camera_attr_supported_fps_cb foreach_cb, void *user_data)
5581 {
5582         int ret = CAMERA_ERROR_NONE;
5583         camera_cli_s *pc = (camera_cli_s *)camera;
5584         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_FPS_BY_RESOLUTION;
5585         camera_msg_param param;
5586         int value = 0;
5587
5588         if (!pc || !pc->cb_info || !foreach_cb) {
5589                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5590                 return CAMERA_ERROR_INVALID_PARAMETER;
5591         }
5592
5593         CAM_LOG_INFO("Enter");
5594
5595         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FPS_BY_RESOLUTION] = foreach_cb;
5596         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FPS_BY_RESOLUTION] = user_data;
5597
5598         value = (width << 16) | height;
5599         CAMERA_MSG_PARAM_SET(param, INT, value);
5600
5601         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
5602
5603         CAM_LOG_INFO("ret : 0x%x", ret);
5604
5605         return ret;
5606 }
5607
5608
5609 int camera_attr_foreach_supported_stream_flip(camera_h camera, camera_attr_supported_stream_flip_cb foreach_cb, void *user_data)
5610 {
5611         int ret = CAMERA_ERROR_NONE;
5612         camera_cli_s *pc = (camera_cli_s *)camera;
5613         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_STREAM_FLIP;
5614
5615         if (!pc || !pc->cb_info || !foreach_cb) {
5616                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5617                 return CAMERA_ERROR_INVALID_PARAMETER;
5618         }
5619
5620         CAM_LOG_INFO("Enter");
5621
5622         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_STREAM_FLIP] = foreach_cb;
5623         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_STREAM_FLIP] = user_data;
5624
5625         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5626
5627         CAM_LOG_INFO("ret : 0x%x", ret);
5628
5629         return ret;
5630 }
5631
5632
5633 int camera_attr_foreach_supported_stream_rotation(camera_h camera, camera_attr_supported_stream_rotation_cb foreach_cb, void *user_data)
5634 {
5635         int ret = CAMERA_ERROR_NONE;
5636         camera_cli_s *pc = (camera_cli_s *)camera;
5637         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_STREAM_ROTATION;
5638
5639         if (!pc || !pc->cb_info || !foreach_cb) {
5640                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5641                 return CAMERA_ERROR_INVALID_PARAMETER;
5642         }
5643
5644         CAM_LOG_INFO("Enter");
5645
5646         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_STREAM_ROTATION] = foreach_cb;
5647         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_STREAM_ROTATION] = user_data;
5648
5649         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5650
5651         CAM_LOG_INFO("ret : 0x%x", ret);
5652
5653         return ret;
5654 }
5655
5656
5657 int camera_attr_set_stream_rotation(camera_h camera, camera_rotation_e rotation)
5658 {
5659         int ret = CAMERA_ERROR_NONE;
5660         camera_cli_s *pc = (camera_cli_s *)camera;
5661         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_STREAM_ROTATION;
5662         camera_msg_param param;
5663         int set_rotation = (int)rotation;
5664
5665         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5666
5667         CAM_LOG_INFO("Enter");
5668
5669         CAMERA_MSG_PARAM_SET(param, INT, set_rotation);
5670
5671         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
5672
5673         CAM_LOG_INFO("ret : 0x%x", ret);
5674
5675         return ret;
5676 }
5677
5678
5679 int camera_attr_get_stream_rotation(camera_h camera, camera_rotation_e *rotation)
5680 {
5681         int ret = CAMERA_ERROR_NONE;
5682         camera_cli_s *pc = (camera_cli_s *)camera;
5683         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_STREAM_ROTATION;
5684
5685         if (!pc || !pc->cb_info || !rotation) {
5686                 CAM_LOG_ERROR("NULL pointer %p %p", pc, rotation);
5687                 return CAMERA_ERROR_INVALID_PARAMETER;
5688         }
5689
5690         CAM_LOG_INFO("Enter");
5691
5692         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5693
5694         if (ret == CAMERA_ERROR_NONE)
5695                 *rotation = (camera_rotation_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_STREAM_ROTATION];
5696
5697         CAM_LOG_INFO("ret : 0x%x", ret);
5698
5699         return ret;
5700 }
5701
5702
5703 int camera_attr_set_stream_flip(camera_h camera, camera_flip_e flip)
5704 {
5705         int ret = CAMERA_ERROR_NONE;
5706         camera_cli_s *pc = (camera_cli_s *)camera;
5707         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_STREAM_FLIP;
5708         camera_msg_param param;
5709         int set_flip = (int)flip;
5710
5711         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5712
5713         CAM_LOG_INFO("Enter");
5714
5715         CAMERA_MSG_PARAM_SET(param, INT, set_flip);
5716
5717         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
5718
5719         CAM_LOG_INFO("ret : 0x%x", ret);
5720
5721         return ret;
5722 }
5723
5724
5725 int camera_attr_get_stream_flip(camera_h camera, camera_flip_e *flip)
5726 {
5727         int ret = CAMERA_ERROR_NONE;
5728         camera_cli_s *pc = (camera_cli_s *)camera;
5729         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_STREAM_FLIP;
5730
5731         if (!pc || !pc->cb_info || !flip) {
5732                 CAM_LOG_ERROR("NULL pointer %p %p", pc, flip);
5733                 return CAMERA_ERROR_INVALID_PARAMETER;
5734         }
5735
5736         CAM_LOG_INFO("Enter");
5737
5738         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5739
5740         if (ret == CAMERA_ERROR_NONE)
5741                 *flip = (camera_flip_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_STREAM_FLIP];
5742
5743         CAM_LOG_INFO("ret : 0x%x", ret);
5744
5745         return ret;
5746 }
5747
5748 int camera_attr_set_hdr_mode(camera_h camera, camera_attr_hdr_mode_e mode)
5749 {
5750         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_HDR_MODE, (int)mode);
5751 }
5752
5753
5754 int camera_attr_get_hdr_mode(camera_h camera, camera_attr_hdr_mode_e *mode)
5755 {
5756         int ret = CAMERA_ERROR_NONE;
5757         camera_cli_s *pc = (camera_cli_s *)camera;
5758         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_HDR_MODE;
5759
5760         if (!pc || !pc->cb_info || !mode) {
5761                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
5762                 return CAMERA_ERROR_INVALID_PARAMETER;
5763         }
5764
5765         CAM_LOG_INFO("Enter");
5766
5767         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5768
5769         if (ret == CAMERA_ERROR_NONE)
5770                 *mode = (camera_attr_hdr_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_HDR_MODE];
5771
5772         CAM_LOG_INFO("ret : 0x%x", ret);
5773
5774         return ret;
5775 }
5776
5777
5778 bool camera_attr_is_supported_hdr_capture(camera_h camera)
5779 {
5780         return __is_supported(camera, MUSE_CAMERA_API_ATTR_IS_SUPPORTED_HDR_CAPTURE);
5781 }
5782
5783
5784 int camera_attr_set_hdr_capture_progress_cb(camera_h camera, camera_attr_hdr_progress_cb callback, void *user_data)
5785 {
5786         int ret = CAMERA_ERROR_NONE;
5787         camera_cli_s *pc = (camera_cli_s *)camera;
5788         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_HDR_CAPTURE_PROGRESS_CB;
5789
5790         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5791
5792         CAM_LOG_INFO("Enter");
5793
5794         if (!camera_attr_is_supported_hdr_capture(camera)) {
5795                 CAM_LOG_ERROR("HDR not supported");
5796                 return CAMERA_ERROR_NOT_SUPPORTED;
5797         }
5798
5799         if (!callback) {
5800                 CAM_LOG_ERROR("NULL callback");
5801                 return CAMERA_ERROR_INVALID_PARAMETER;
5802         }
5803
5804         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5805
5806         if (ret == CAMERA_ERROR_NONE) {
5807                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS]);
5808
5809                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS] = callback;
5810                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS] = user_data;
5811
5812                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS]);
5813         }
5814
5815         CAM_LOG_INFO("ret : 0x%x", ret);
5816
5817         return ret;
5818 }
5819
5820
5821 int camera_attr_unset_hdr_capture_progress_cb(camera_h camera)
5822 {
5823         int ret = CAMERA_ERROR_NONE;
5824         camera_cli_s *pc = (camera_cli_s *)camera;
5825         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_UNSET_HDR_CAPTURE_PROGRESS_CB;
5826
5827         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5828
5829         CAM_LOG_INFO("Enter");
5830
5831         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5832
5833         if (ret == CAMERA_ERROR_NONE) {
5834                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS]);
5835
5836                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS] = NULL;
5837                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS] = NULL;
5838
5839                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS]);
5840         }
5841
5842         CAM_LOG_INFO("ret : 0x%x", ret);
5843
5844         return ret;
5845 }
5846
5847
5848 int camera_attr_enable_anti_shake(camera_h camera, bool enable)
5849 {
5850         return __set_enable(camera, MUSE_CAMERA_API_ATTR_ENABLE_ANTI_SHAKE, (int)enable);
5851 }
5852
5853
5854 int camera_attr_is_enabled_anti_shake(camera_h camera, bool *enabled)
5855 {
5856         int ret = CAMERA_ERROR_NONE;
5857         camera_cli_s *pc = (camera_cli_s *)camera;
5858         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_IS_ENABLED_ANTI_SHAKE;
5859
5860         if (!pc || !pc->cb_info || !enabled) {
5861                 CAM_LOG_ERROR("NULL pointer %p %p", pc, enabled);
5862                 return CAMERA_ERROR_INVALID_PARAMETER;
5863         }
5864
5865         CAM_LOG_INFO("Enter");
5866
5867         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5868
5869         if (ret == CAMERA_ERROR_NONE)
5870                 *enabled = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENABLED_ANTI_SHAKE];
5871
5872         CAM_LOG_INFO("ret : 0x%x", ret);
5873
5874         return ret;
5875 }
5876
5877
5878 bool camera_attr_is_supported_anti_shake(camera_h camera)
5879 {
5880         return __is_supported(camera, MUSE_CAMERA_API_ATTR_IS_SUPPORTED_ANTI_SHAKE);
5881 }
5882
5883
5884 int camera_attr_enable_video_stabilization(camera_h camera, bool enable)
5885 {
5886         return __set_enable(camera, MUSE_CAMERA_API_ATTR_ENABLE_VIDEO_STABILIZATION, (int)enable);
5887 }
5888
5889
5890 int camera_attr_is_enabled_video_stabilization(camera_h camera, bool *enabled)
5891 {
5892         int ret = CAMERA_ERROR_NONE;
5893         camera_cli_s *pc = (camera_cli_s *)camera;
5894         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_IS_ENABLED_VIDEO_STABILIZATION;
5895
5896         if (!pc || !pc->cb_info || !enabled) {
5897                 CAM_LOG_ERROR("NULL pointer %p %p", pc, enabled);
5898                 return CAMERA_ERROR_INVALID_PARAMETER;
5899         }
5900
5901         CAM_LOG_INFO("Enter");
5902
5903         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5904
5905         if (ret == CAMERA_ERROR_NONE)
5906                 *enabled = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENABLED_VIDEO_STABILIZATION];
5907
5908         CAM_LOG_INFO("ret : 0x%x", ret);
5909
5910         return ret;
5911 }
5912
5913
5914 bool camera_attr_is_supported_video_stabilization(camera_h camera)
5915 {
5916         return __is_supported(camera, MUSE_CAMERA_API_ATTR_IS_SUPPORTED_VIDEO_STABILIZATION);
5917 }
5918
5919
5920 int camera_attr_enable_auto_contrast(camera_h camera, bool enable)
5921 {
5922         return __set_enable(camera, MUSE_CAMERA_API_ATTR_ENABLE_AUTO_CONTRAST, (int)enable);
5923 }
5924
5925
5926 int camera_attr_is_enabled_auto_contrast(camera_h camera, bool *enabled)
5927 {
5928         int ret = CAMERA_ERROR_NONE;
5929         camera_cli_s *pc = (camera_cli_s *)camera;
5930         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_IS_ENABLED_AUTO_CONTRAST;
5931
5932         if (!pc || !pc->cb_info || !enabled) {
5933                 CAM_LOG_ERROR("NULL pointer %p %p", pc, enabled);
5934                 return CAMERA_ERROR_INVALID_PARAMETER;
5935         }
5936
5937         CAM_LOG_INFO("Enter");
5938
5939         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5940
5941         if (ret == CAMERA_ERROR_NONE)
5942                 *enabled = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENABLED_AUTO_CONTRAST];
5943
5944         CAM_LOG_INFO("ret : 0x%x", ret);
5945
5946         return ret;
5947 }
5948
5949
5950 bool camera_attr_is_supported_auto_contrast(camera_h camera)
5951 {
5952         return __is_supported(camera, MUSE_CAMERA_API_ATTR_IS_SUPPORTED_AUTO_CONTRAST);
5953 }
5954
5955
5956 int camera_attr_disable_shutter_sound(camera_h camera, bool disable)
5957 {
5958         int ret = CAMERA_ERROR_NONE;
5959         camera_cli_s *pc = (camera_cli_s *)camera;
5960         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_DISABLE_SHUTTER_SOUND;
5961         camera_msg_param param;
5962         int set_disable = (int)disable;
5963
5964         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5965
5966         CAM_LOG_INFO("Enter");
5967
5968         CAMERA_MSG_PARAM_SET(param, INT, set_disable);
5969
5970         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
5971
5972         CAM_LOG_INFO("ret : 0x%x", ret);
5973
5974         return ret;
5975 }
5976
5977
5978 int camera_attr_set_pan(camera_h camera, camera_attr_ptz_move_type_e move_type, int pan_step)
5979 {
5980         int ret = CAMERA_ERROR_NONE;
5981         camera_cli_s *pc = (camera_cli_s *)camera;
5982         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_PAN;
5983         camera_msg_param param0;
5984         camera_msg_param param1;
5985
5986         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5987
5988         CAM_LOG_INFO("Enter");
5989
5990         CAMERA_MSG_PARAM_SET(param0, INT, move_type);
5991         CAMERA_MSG_PARAM_SET(param1, INT, pan_step);
5992
5993         _camera_msg_send_param2_int(api, pc->cb_info, &ret,
5994                 &param0, &param1, CAMERA_CB_TIMEOUT);
5995
5996         CAM_LOG_INFO("ret : 0x%x", ret);
5997
5998         return ret;
5999 }
6000
6001
6002 int camera_attr_get_pan(camera_h camera, int *pan_step)
6003 {
6004         int ret = CAMERA_ERROR_NONE;
6005         camera_cli_s *pc = (camera_cli_s *)camera;
6006         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_PAN;
6007
6008         if (!pc || !pc->cb_info || !pan_step) {
6009                 CAM_LOG_ERROR("NULL pointer %p %p", pc, pan_step);
6010                 return CAMERA_ERROR_INVALID_PARAMETER;
6011         }
6012
6013         CAM_LOG_INFO("Enter");
6014
6015         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6016
6017         if (ret == CAMERA_ERROR_NONE)
6018                 *pan_step = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_PAN];
6019
6020         CAM_LOG_INFO("ret : 0x%x", ret);
6021
6022         return ret;
6023 }
6024
6025
6026 int camera_attr_get_pan_range(camera_h camera, int *min, int *max)
6027 {
6028         int ret = CAMERA_ERROR_NONE;
6029         camera_cli_s *pc = (camera_cli_s *)camera;
6030         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_PAN_RANGE;
6031
6032         if (!pc || !pc->cb_info || !min || !max) {
6033                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
6034                 return CAMERA_ERROR_INVALID_PARAMETER;
6035         }
6036
6037         CAM_LOG_INFO("Enter");
6038
6039         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6040
6041         if (ret == CAMERA_ERROR_NONE) {
6042                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_PAN_RANGE][0];
6043                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_PAN_RANGE][1];
6044         }
6045
6046         CAM_LOG_INFO("ret : 0x%x", ret);
6047
6048         return ret;
6049 }
6050
6051
6052 int camera_attr_set_tilt(camera_h camera, camera_attr_ptz_move_type_e move_type, int tilt_step)
6053 {
6054         int ret = CAMERA_ERROR_NONE;
6055         camera_cli_s *pc = (camera_cli_s *)camera;
6056         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_TILT;
6057         camera_msg_param param0;
6058         camera_msg_param param1;
6059
6060         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6061
6062         CAM_LOG_INFO("Enter");
6063
6064         CAMERA_MSG_PARAM_SET(param0, INT, move_type);
6065         CAMERA_MSG_PARAM_SET(param1, INT, tilt_step);
6066
6067         _camera_msg_send_param2_int(api, pc->cb_info, &ret,
6068                 &param0, &param1, CAMERA_CB_TIMEOUT);
6069
6070         CAM_LOG_INFO("ret : 0x%x", ret);
6071
6072         return ret;
6073 }
6074
6075
6076 int camera_attr_get_tilt(camera_h camera, int *tilt_step)
6077 {
6078         int ret = CAMERA_ERROR_NONE;
6079         camera_cli_s *pc = (camera_cli_s *)camera;
6080         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_TILT;
6081
6082         if (!pc || !pc->cb_info || !tilt_step) {
6083                 CAM_LOG_ERROR("NULL pointer %p %p", pc, tilt_step);
6084                 return CAMERA_ERROR_INVALID_PARAMETER;
6085         }
6086
6087         CAM_LOG_INFO("Enter");
6088
6089         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6090
6091         if (ret == CAMERA_ERROR_NONE)
6092                 *tilt_step = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_TILT];
6093
6094         CAM_LOG_INFO("ret : 0x%x", ret);
6095
6096         return ret;
6097 }
6098
6099
6100 int camera_attr_get_tilt_range(camera_h camera, int *min, int *max)
6101 {
6102         int ret = CAMERA_ERROR_NONE;
6103         camera_cli_s *pc = (camera_cli_s *)camera;
6104         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_TILT_RANGE;
6105
6106         if (!pc || !pc->cb_info || !min || !max) {
6107                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
6108                 return CAMERA_ERROR_INVALID_PARAMETER;
6109         }
6110
6111         CAM_LOG_INFO("Enter");
6112
6113         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6114
6115         if (ret == CAMERA_ERROR_NONE) {
6116                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_TILT_RANGE][0];
6117                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_TILT_RANGE][1];
6118         }
6119
6120         CAM_LOG_INFO("ret : 0x%x", ret);
6121
6122         return ret;
6123 }
6124
6125
6126 int camera_attr_set_ptz_type(camera_h camera, camera_attr_ptz_type_e ptz_type)
6127 {
6128         int ret = CAMERA_ERROR_NONE;
6129         camera_cli_s *pc = (camera_cli_s *)camera;
6130         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_PTZ_TYPE;
6131         camera_msg_param param;
6132         int set_ptz_type = (int)ptz_type;
6133
6134         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6135
6136         CAM_LOG_INFO("Enter");
6137
6138         CAMERA_MSG_PARAM_SET(param, INT, set_ptz_type);
6139
6140         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
6141
6142         CAM_LOG_INFO("ret : 0x%x", ret);
6143
6144         return ret;
6145 }
6146
6147
6148 int camera_attr_foreach_supported_ptz_type(camera_h camera, camera_attr_supported_ptz_type_cb foreach_cb, void *user_data)
6149 {
6150         int ret = CAMERA_ERROR_NONE;
6151         camera_cli_s *pc = (camera_cli_s *)camera;
6152         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_PTZ_TYPE;
6153
6154         if (!pc || !pc->cb_info || !foreach_cb) {
6155                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
6156                 return CAMERA_ERROR_INVALID_PARAMETER;
6157         }
6158
6159         CAM_LOG_INFO("Enter");
6160
6161         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PTZ_TYPE] = foreach_cb;
6162         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PTZ_TYPE] = user_data;
6163
6164         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6165
6166         CAM_LOG_INFO("ret : 0x%x", ret);
6167
6168         return ret;
6169 }
6170
6171
6172 int camera_attr_set_display_roi_area(camera_h camera, int x, int y, int width, int height)
6173 {
6174         int ret = CAMERA_ERROR_NONE;
6175         camera_cli_s *pc = (camera_cli_s *)camera;
6176         muse_camera_api_e api = MUSE_CAMERA_API_SET_DISPLAY_ROI_AREA;
6177         int set_display_roi_area[4] = {x, y, width, height};
6178         char *msg = NULL;
6179         int length = 0;
6180
6181         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6182
6183         CAM_LOG_INFO("Enter");
6184
6185         if (pc->cb_info->is_evas_render) {
6186                 ret = mm_display_interface_evas_set_roi_area(pc->cb_info->dp_interface, x, y, width, height);
6187                 if (ret != MM_ERROR_NONE) {
6188                         CAM_LOG_ERROR("mm_evas_renderer_set_roi_area error 0x%x", ret);
6189                         return CAMERA_ERROR_INVALID_OPERATION;
6190                 }
6191         }
6192
6193         length = sizeof(set_display_roi_area) / sizeof(int) + \
6194                 (sizeof(set_display_roi_area) % sizeof(int) ? 1 : 0);
6195
6196         msg = muse_core_msg_new(api,
6197                 MUSE_TYPE_ARRAY, "set_display_roi_area", length, (int *)set_display_roi_area,
6198                 NULL);
6199
6200         __send_message_get_return(pc->cb_info, api, msg, CAMERA_CB_TIMEOUT, &ret);
6201
6202         return ret;
6203 }
6204
6205
6206 int camera_attr_get_display_roi_area(camera_h camera, int *x, int *y, int *width, int *height)
6207 {
6208         camera_cli_s *pc = (camera_cli_s *)camera;
6209         int ret = CAMERA_ERROR_NONE;
6210         muse_camera_api_e api = MUSE_CAMERA_API_GET_DISPLAY_ROI_AREA;
6211
6212         if (!pc || !pc->cb_info || !x || !y || !width || !height) {
6213                 CAM_LOG_ERROR("NULL pointer %p %p %p %p %p", pc, x, y, width, height);
6214                 return CAMERA_ERROR_INVALID_PARAMETER;
6215         }
6216
6217         CAM_LOG_INFO("Enter");
6218
6219         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6220
6221         if (ret == CAMERA_ERROR_NONE) {
6222                 *x = pc->cb_info->get_display_roi_area[0];
6223                 *y = pc->cb_info->get_display_roi_area[1];
6224                 *width = pc->cb_info->get_display_roi_area[2];
6225                 *height = pc->cb_info->get_display_roi_area[3];
6226         }
6227
6228         CAM_LOG_INFO("ret : 0x%x", ret);
6229
6230         return ret;
6231 }
6232
6233
6234 int camera_get_device_state(camera_device_e device, camera_device_state_e *state)
6235 {
6236         int ret = CAMERA_ERROR_NONE;
6237         int get_device_state = 0;
6238
6239         if (!state) {
6240                 CAM_LOG_ERROR("NULL pointer");
6241                 return CAMERA_ERROR_INVALID_PARAMETER;
6242         }
6243
6244         ret = _camera_independent_request(MUSE_CAMERA_API_GET_DEVICE_STATE,
6245                 (int)device, "get_device_state", &get_device_state);
6246
6247         if (ret == CAMERA_ERROR_NONE) {
6248                 *state = (camera_device_state_e)get_device_state;
6249                 CAM_LOG_INFO("device state %d", *state);
6250         } else {
6251                 CAM_LOG_ERROR("failed 0x%x", ret);
6252         }
6253
6254         return ret;
6255 }
6256
6257
6258 int camera_add_device_state_changed_cb(camera_device_state_changed_cb callback, void *user_data, int *cb_id)
6259 {
6260         int ret = CAMERA_ERROR_NONE;
6261         camera_device_state_e state = CAMERA_DEVICE_STATE_NULL;
6262         camera_cb_info *info = NULL;
6263
6264         if (!callback || !cb_id) {
6265                 CAM_LOG_ERROR("invalid pointer %p %p", callback, cb_id);
6266                 return CAMERA_ERROR_INVALID_PARAMETER;
6267         }
6268
6269         /* check camera support */
6270         ret = camera_get_device_state(CAMERA_DEVICE_CAMERA0, &state);
6271         if (ret != CAMERA_ERROR_NONE) {
6272                 CAM_LOG_ERROR("get device state failed");
6273                 return ret;
6274         }
6275
6276         g_mutex_lock(&g_cam_dev_state_changed_cb_lock);
6277
6278         info = g_new0(camera_cb_info, 1);
6279         if (!info) {
6280                 CAM_LOG_ERROR("info failed");
6281                 ret = CAMERA_ERROR_OUT_OF_MEMORY;
6282                 goto _DONE;
6283         }
6284
6285         info->id = ++g_cam_dev_state_changed_cb_id;
6286         info->callback = (void *)callback;
6287         info->user_data = user_data;
6288
6289         *cb_id = info->id;
6290
6291         /* subscribe dbus signal for camera state change */
6292         if (!g_cam_dev_state_changed_cb_conn) {
6293                 g_cam_dev_state_changed_cb_conn = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, NULL);
6294                 if (!g_cam_dev_state_changed_cb_conn) {
6295                         CAM_LOG_ERROR("failed to get gdbus connection");
6296                         ret = CAMERA_ERROR_INVALID_OPERATION;
6297                         goto _DONE;
6298                 }
6299
6300                 CAM_LOG_INFO("subscribe signal %s - %s - %s",
6301                         MM_CAMCORDER_DBUS_OBJECT,
6302                         MM_CAMCORDER_DBUS_INTERFACE_CAMERA,
6303                         MM_CAMCORDER_DBUS_SIGNAL_STATE_CHANGED);
6304
6305                 g_cam_dev_state_changed_cb_subscribe_id = g_dbus_connection_signal_subscribe(g_cam_dev_state_changed_cb_conn,
6306                         NULL, MM_CAMCORDER_DBUS_INTERFACE_CAMERA, MM_CAMCORDER_DBUS_SIGNAL_STATE_CHANGED, MM_CAMCORDER_DBUS_OBJECT, NULL,
6307                         G_DBUS_SIGNAL_FLAGS_NONE, (GDBusSignalCallback)__camera_device_state_changed_cb, NULL, NULL);
6308                 if (!g_cam_dev_state_changed_cb_subscribe_id) {
6309                         CAM_LOG_ERROR("failed to get gdbus connection");
6310                         ret = CAMERA_ERROR_INVALID_OPERATION;
6311                         goto _DONE;
6312                 }
6313
6314                 CAM_LOG_INFO("signal subscribe id %u", g_cam_dev_state_changed_cb_subscribe_id);
6315         }
6316
6317         g_cam_dev_state_changed_cb_list = g_list_prepend(g_cam_dev_state_changed_cb_list, (gpointer)info);
6318
6319         CAM_LOG_INFO("callback id %d", info->id);
6320
6321 _DONE:
6322         if (ret != CAMERA_ERROR_NONE) {
6323                 if (info) {
6324                         g_free(info);
6325                         info = NULL;
6326                 }
6327
6328                 if (g_cam_dev_state_changed_cb_conn) {
6329                         g_object_unref(g_cam_dev_state_changed_cb_conn);
6330                         g_cam_dev_state_changed_cb_conn = NULL;
6331                 }
6332         }
6333
6334         g_mutex_unlock(&g_cam_dev_state_changed_cb_lock);
6335
6336         return ret;
6337 }
6338
6339
6340 int camera_remove_device_state_changed_cb(int cb_id)
6341 {
6342         int ret = CAMERA_ERROR_NONE;
6343         camera_device_state_e state = CAMERA_DEVICE_STATE_NULL;
6344         GList *tmp_list = NULL;
6345         camera_cb_info *info = NULL;
6346
6347         /* check camera support */
6348         ret = camera_get_device_state(CAMERA_DEVICE_CAMERA0, &state);
6349         if (ret != CAMERA_ERROR_NONE) {
6350                 CAM_LOG_ERROR("get device state failed");
6351                 return ret;
6352         }
6353
6354         g_mutex_lock(&g_cam_dev_state_changed_cb_lock);
6355
6356         if (!g_cam_dev_state_changed_cb_list) {
6357                 CAM_LOG_ERROR("there is no callback info");
6358                 ret = CAMERA_ERROR_INVALID_OPERATION;
6359                 goto _DONE;
6360         }
6361
6362         tmp_list = g_cam_dev_state_changed_cb_list;
6363
6364         do {
6365                 info = tmp_list->data;
6366                 tmp_list = tmp_list->next;
6367
6368                 if (!info) {
6369                         CAM_LOG_WARNING("NULL info");
6370                         continue;
6371                 }
6372
6373                 if (info->id == cb_id) {
6374                         g_cam_dev_state_changed_cb_list = g_list_remove(g_cam_dev_state_changed_cb_list, info);
6375
6376                         g_free(info);
6377                         info = NULL;
6378
6379                         if (!g_cam_dev_state_changed_cb_list) {
6380                                 /* no remained callback */
6381                                 if (g_cam_dev_state_changed_cb_conn) {
6382                                         /* unsubscribe signal */
6383                                         g_dbus_connection_signal_unsubscribe(g_cam_dev_state_changed_cb_conn, g_cam_dev_state_changed_cb_subscribe_id);
6384                                         g_cam_dev_state_changed_cb_subscribe_id = 0;
6385
6386                                         /* unref connection */
6387                                         g_object_unref(g_cam_dev_state_changed_cb_conn);
6388                                         g_cam_dev_state_changed_cb_conn = NULL;
6389                                 }
6390                         }
6391
6392                         CAM_LOG_INFO("id %d callback removed", cb_id);
6393                         ret = CAMERA_ERROR_NONE;
6394
6395                         goto _DONE;
6396                 }
6397         } while (tmp_list);
6398
6399         CAM_LOG_ERROR("id %d callback not found", cb_id);
6400         ret = CAMERA_ERROR_INVALID_PARAMETER;
6401
6402 _DONE:
6403         g_mutex_unlock(&g_cam_dev_state_changed_cb_lock);
6404
6405         return ret;
6406 }
6407
6408
6409 //LCOV_EXCL_START
6410 int camera_media_bridge_set_bridge(camera_h camera, media_bridge_h bridge)
6411 {
6412         int ret = CAMERA_ERROR_NONE;
6413         camera_cli_s *pc = (camera_cli_s *)camera;
6414         muse_camera_api_e api = MUSE_CAMERA_API_SET_MEDIA_BRIDGE;
6415
6416         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6417
6418         g_mutex_lock(&pc->cb_info->bridge_lock);
6419
6420         if (pc->cb_info->bridge) {
6421                 CAM_LOG_ERROR("media bridge[%p] is already set", pc->cb_info->bridge);
6422                 ret = CAMERA_ERROR_INVALID_OPERATION;
6423                 goto _SET_MEDIA_BRIDGE_DONE;
6424         }
6425
6426         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6427         if (ret != CAMERA_ERROR_NONE) {
6428                 CAM_LOG_ERROR("set media bridge failed[0x%x]", ret);
6429                 goto _SET_MEDIA_BRIDGE_DONE;
6430         }
6431
6432         pc->cb_info->bridge = bridge;
6433
6434         CAM_LOG_INFO("[%p] set media bridge[%p]", camera, bridge);
6435
6436 _SET_MEDIA_BRIDGE_DONE:
6437         g_mutex_unlock(&pc->cb_info->bridge_lock);
6438
6439         return ret;
6440 }
6441
6442
6443 int camera_media_bridge_unset_bridge(camera_h camera)
6444 {
6445         int ret = CAMERA_ERROR_NONE;
6446         camera_cli_s *pc = (camera_cli_s *)camera;
6447         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_MEDIA_BRIDGE;
6448
6449         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6450
6451         g_mutex_lock(&pc->cb_info->bridge_lock);
6452
6453         if (!pc->cb_info->bridge) {
6454                 CAM_LOG_ERROR("no media bridge");
6455                 ret = CAMERA_ERROR_INVALID_OPERATION;
6456                 goto _UNSET_MEDIA_BRIDGE_DONE;
6457         }
6458
6459         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6460         if (ret != CAMERA_ERROR_NONE) {
6461                 CAM_LOG_ERROR("unset media bridge failed[0x%x]", ret);
6462                 goto _UNSET_MEDIA_BRIDGE_DONE;
6463         }
6464
6465         CAM_LOG_INFO("[%p] unset media bridge[%p]", camera, pc->cb_info->bridge);
6466
6467         pc->cb_info->bridge = NULL;
6468
6469 _UNSET_MEDIA_BRIDGE_DONE:
6470         g_mutex_unlock(&pc->cb_info->bridge_lock);
6471
6472         return ret;
6473 }
6474 //LCOV_EXCL_STOP
6475
6476
6477 int camera_create_network(camera_device_e device, camera_h *camera)
6478 {
6479         return _camera_create_private(device, true, camera);
6480 }
6481
6482
6483 int camera_device_manager_initialize(camera_device_manager_h *manager)
6484 {
6485         unsigned int i = 0;
6486         int ret = CAMERA_ERROR_NONE;
6487         void *dl_handle = NULL;
6488         camera_device_manager *new_manager = NULL;
6489         cdm_symbol_table sym_table[] = {
6490                 {(void **)&new_manager->initialize, "cdm_initialize"},
6491                 {(void **)&new_manager->deinitialize, "cdm_deinitialize"},
6492                 {(void **)&new_manager->get_device_list, "cdm_get_device_list"},
6493                 {(void **)&new_manager->add_device_connection_changed_cb, "cdm_add_device_connection_changed_cb"},
6494                 {(void **)&new_manager->remove_device_connection_changed_cb, "cdm_remove_device_connection_changed_cb"},
6495         };
6496
6497         CAMERA_CHECK_DEVICE_MANAGER;
6498
6499         new_manager = g_new0(camera_device_manager, 1);
6500
6501         if (!manager) {
6502                 CAM_LOG_ERROR("NULL manager");
6503                 ret = CAMERA_ERROR_INVALID_PARAMETER;
6504                 goto _INITIALIZE_FAILED;
6505         }
6506
6507         dl_handle = dlopen(LIB_CAMERA_DEVICE_MANAGER, RTLD_NOW);
6508         if (!dl_handle) {
6509                 CAM_LOG_ERROR("dlopen[%s] failed[%s]", LIB_CAMERA_DEVICE_MANAGER, dlerror());
6510                 ret = CAMERA_ERROR_INVALID_OPERATION;
6511                 goto _INITIALIZE_FAILED;
6512         }
6513
6514         /* get symbols */
6515         for (i = 0 ; i < G_N_ELEMENTS(sym_table) ; i++) {
6516                 *sym_table[i].func_ptr = dlsym(dl_handle, sym_table[i].func_name);
6517                 if (*sym_table[i].func_ptr == NULL) {
6518                         CAM_LOG_ERROR("symbol failed[%s]", sym_table[i].func_name);
6519                         ret = CAMERA_ERROR_INVALID_OPERATION;
6520                         goto _INITIALIZE_FAILED;
6521                 }
6522         }
6523
6524         ret = new_manager->initialize();
6525         if (ret != CAMERA_ERROR_NONE) {
6526                 CAM_LOG_ERROR("failed[0x%x]", ret);
6527                 goto _INITIALIZE_FAILED;
6528         }
6529
6530         new_manager->dl_handle = dl_handle;
6531         *manager = (camera_device_manager_h)new_manager;
6532
6533         CAM_LOG_INFO("camera device manager[%p](dl handle[%p]) initialized",
6534                 new_manager, dl_handle);
6535
6536         return CAMERA_ERROR_NONE;
6537
6538 _INITIALIZE_FAILED:
6539         if (dl_handle)
6540                 dlclose(dl_handle);
6541         g_free(new_manager);
6542         return ret;
6543 }
6544
6545
6546 //LCOV_EXCL_START
6547 int camera_device_manager_deinitialize(camera_device_manager_h manager)
6548 {
6549         int ret = CAMERA_ERROR_NONE;
6550         camera_device_manager *m = (camera_device_manager *)manager;
6551
6552         CAMERA_CHECK_DEVICE_MANAGER;
6553
6554         if (!m) {
6555                 CAM_LOG_ERROR("NULL manager");
6556                 return CAMERA_ERROR_INVALID_PARAMETER;
6557         }
6558
6559         CAM_LOG_INFO("deinitialize camera device manager[%p]", m);
6560
6561         ret = m->deinitialize();
6562         if (ret != CAMERA_ERROR_NONE) {
6563                 CAM_LOG_ERROR("failed[0x%x]", ret);
6564                 return ret;
6565         }
6566
6567         CAM_LOG_INFO("close dl handle[%p]", m->dl_handle);
6568
6569         dlclose(m->dl_handle);
6570
6571         memset(m, 0x0, sizeof(camera_device_manager));
6572         g_free(m);
6573
6574         return CAMERA_ERROR_NONE;
6575 }
6576
6577
6578 int camera_device_manager_foreach_supported_device(camera_device_manager_h manager, camera_supported_device_cb callback, void *user_data)
6579 {
6580         int ret = CAMERA_ERROR_NONE;
6581         unsigned int i = 0;
6582         camera_device_list_s device_list;
6583         camera_device_s *device = NULL;
6584         camera_device_manager *m = (camera_device_manager *)manager;
6585
6586         CAMERA_CHECK_DEVICE_MANAGER;
6587
6588         if (!m || !callback) {
6589                 CAM_LOG_ERROR("NULL parameter[%p,%p]", m, callback);
6590                 return CAMERA_ERROR_INVALID_PARAMETER;
6591         }
6592
6593         CAM_LOG_INFO("enter");
6594
6595         memset(&device_list, 0x0, sizeof(camera_device_list_s));
6596
6597         ret = m->get_device_list(&device_list);
6598         if (ret != CAMERA_ERROR_NONE) {
6599                 CAM_LOG_ERROR("failed[0x%x]", ret);
6600                 return ret;
6601         }
6602
6603         CAM_LOG_INFO("device count[%d]", device_list.count);
6604
6605         for (i = 0 ; i < device_list.count ; i++) {
6606                 device = &device_list.device[i];
6607
6608                 CAM_LOG_INFO("    [%d] : type[%d], index[%d], name[%s], id[%s], ex-stream[%d]",
6609                         i, device->type, device->index,
6610                         device->name, device->id, device->extra_stream_num);
6611
6612                 if (!callback(device, user_data)) {
6613                         CAM_LOG_WARNING("callback is stopped[called:%u,total:%u]",
6614                                 i + 1, device_list.count);
6615                         break;
6616                 }
6617         }
6618
6619         return CAMERA_ERROR_NONE;
6620 }
6621
6622
6623 int camera_device_manager_add_device_connection_changed_cb(camera_device_manager_h manager,
6624         camera_device_connection_changed_cb callback, void *user_data, int *cb_id)
6625 {
6626         int ret = CAMERA_ERROR_NONE;
6627         camera_device_manager *m = (camera_device_manager *)manager;
6628
6629         CAMERA_CHECK_DEVICE_MANAGER;
6630
6631         if (!m || !callback || !cb_id) {
6632                 CAM_LOG_ERROR("NULL parameter[%p,%p,%p]", m, callback, cb_id);
6633                 return CAMERA_ERROR_INVALID_PARAMETER;
6634         }
6635
6636         CAM_LOG_INFO("enter");
6637
6638         ret = m->add_device_connection_changed_cb(callback, user_data, cb_id);
6639         if (ret != CAMERA_ERROR_NONE) {
6640                 CAM_LOG_ERROR("failed[0x%x]", ret);
6641                 return ret;
6642         }
6643
6644         CAM_LOG_INFO("cb_id[%d] added", *cb_id);
6645
6646         return CAMERA_ERROR_NONE;
6647 }
6648
6649
6650 int camera_device_manager_remove_device_connection_changed_cb(camera_device_manager_h manager, int cb_id)
6651 {
6652         int ret = CAMERA_ERROR_NONE;
6653         camera_device_manager *m = (camera_device_manager *)manager;
6654
6655         CAMERA_CHECK_DEVICE_MANAGER;
6656
6657         if (!m) {
6658                 CAM_LOG_ERROR("NULL manager");
6659                 return CAMERA_ERROR_INVALID_PARAMETER;
6660         }
6661
6662         CAM_LOG_INFO("enter - cb_id[%d]", cb_id);
6663
6664         ret = m->remove_device_connection_changed_cb(cb_id);
6665         if (ret != CAMERA_ERROR_NONE) {
6666                 CAM_LOG_ERROR("failed[0x%x]", ret);
6667                 return ret;
6668         }
6669
6670         CAM_LOG_INFO("cb_id[%d] removed", cb_id);
6671
6672         return CAMERA_ERROR_NONE;
6673 }
6674 //LCOV_EXCL_STOP
6675
6676
6677 int camera_set_extra_preview_cb(camera_h camera, camera_extra_preview_cb callback, void *user_data)
6678 {
6679         int ret = CAMERA_ERROR_NONE;
6680         camera_cli_s *pc = (camera_cli_s *)camera;
6681         muse_camera_api_e api = MUSE_CAMERA_API_SET_EXTRA_PREVIEW_CB;
6682
6683         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6684
6685         if (!camera_is_supported_extra_preview(camera)) {
6686                 CAM_LOG_ERROR("extra preview is not supported");
6687                 return CAMERA_ERROR_NOT_SUPPORTED;
6688         }
6689
6690         if (!callback) {
6691                 CAM_LOG_ERROR("NULL callback");
6692                 return CAMERA_ERROR_INVALID_PARAMETER;
6693         }
6694
6695         CAM_LOG_INFO("Enter");
6696
6697         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6698
6699         if (ret == CAMERA_ERROR_NONE) {
6700                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW]);
6701
6702                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW] = callback;
6703                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW] = user_data;
6704
6705                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW]);
6706         }
6707
6708         CAM_LOG_INFO("ret : 0x%x", ret);
6709
6710         return ret;
6711 }
6712
6713
6714 int camera_unset_extra_preview_cb(camera_h camera)
6715 {
6716         int ret = CAMERA_ERROR_NONE;
6717         camera_cli_s *pc = (camera_cli_s *)camera;
6718         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_EXTRA_PREVIEW_CB;
6719
6720         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6721
6722         if (!camera_is_supported_extra_preview(camera)) {
6723                 CAM_LOG_ERROR("extra preview is not supported");
6724                 return CAMERA_ERROR_NOT_SUPPORTED;
6725         }
6726
6727         CAM_LOG_INFO("Enter");
6728
6729         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6730
6731         if (ret == CAMERA_ERROR_NONE) {
6732                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW]);
6733
6734                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW] = NULL;
6735                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW] = NULL;
6736
6737                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW]);
6738         }
6739
6740         CAM_LOG_INFO("ret : 0x%x", ret);
6741
6742         return ret;
6743 }
6744
6745
6746 int camera_set_extra_preview_stream_format(camera_h camera, int stream_id, camera_pixel_format_e pixel_format, int width, int height, int fps)
6747 {
6748         int ret = CAMERA_ERROR_NONE;
6749         int stream_format[4] = {pixel_format, width, height, fps};
6750         char *msg = NULL;
6751         camera_cli_s *pc = (camera_cli_s *)camera;
6752         muse_camera_api_e api = MUSE_CAMERA_API_SET_EXTRA_PREVIEW_STREAM_FORMAT;
6753
6754         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6755
6756         CAM_LOG_INFO("Enter - stream[%d],[%d,%dx%d,%d]",
6757                 stream_id, pixel_format, width, height, fps);
6758
6759         msg = muse_core_msg_new(api,
6760                 MUSE_TYPE_INT, "stream_id", stream_id,
6761                 MUSE_TYPE_ARRAY, "stream_format", 4, stream_format,
6762                 NULL);
6763
6764         __send_message_get_return(pc->cb_info, api, msg, CAMERA_CB_TIMEOUT, &ret);
6765
6766         return ret;
6767 }
6768
6769
6770 int camera_get_extra_preview_stream_format(camera_h camera, int stream_id, camera_pixel_format_e *pixel_format, int *width, int *height, int *fps)
6771 {
6772         int ret = CAMERA_ERROR_NONE;
6773         camera_cli_s *pc = (camera_cli_s *)camera;
6774         camera_msg_param param;
6775         muse_camera_api_e api = MUSE_CAMERA_API_GET_EXTRA_PREVIEW_STREAM_FORMAT;
6776
6777         if (!pc || !pc->cb_info || !pixel_format || !width || !height || !fps) {
6778                 CAM_LOG_ERROR("NULL pointer %p %p %p %p %p", pc, pixel_format, width, height, fps);
6779                 return CAMERA_ERROR_INVALID_PARAMETER;
6780         }
6781
6782         CAM_LOG_INFO("Enter - stream[%d]", stream_id);
6783
6784         CAMERA_MSG_PARAM_SET(param, INT, stream_id);
6785
6786         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
6787
6788         if (ret == CAMERA_ERROR_NONE) {
6789                 *pixel_format = (camera_pixel_format_e)pc->cb_info->get_extra_preview_stream_format[0];
6790                 *width = pc->cb_info->get_extra_preview_stream_format[1];
6791                 *height = pc->cb_info->get_extra_preview_stream_format[2];
6792                 *fps = pc->cb_info->get_extra_preview_stream_format[3];
6793         }
6794
6795         CAM_LOG_INFO("ret : 0x%x", ret);
6796
6797         return ret;
6798 }
6799
6800
6801 int camera_attr_set_extra_preview_bitrate(camera_h camera, int stream_id, int bitrate)
6802 {
6803         int ret = CAMERA_ERROR_NONE;
6804         camera_cli_s *pc = (camera_cli_s *)camera;
6805         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_EXTRA_PREVIEW_BITRATE;
6806         camera_msg_param param0;
6807         camera_msg_param param1;
6808
6809         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6810
6811         CAM_LOG_INFO("Enter - stream[%d], bitrate[%d]", stream_id, bitrate);
6812
6813         CAMERA_MSG_PARAM_SET(param0, INT, stream_id);
6814         CAMERA_MSG_PARAM_SET(param1, INT, bitrate);
6815
6816         _camera_msg_send_param2_int(api, pc->cb_info, &ret,
6817                 &param0, &param1, CAMERA_CB_TIMEOUT);
6818
6819         CAM_LOG_INFO("ret : 0x%x", ret);
6820
6821         return ret;
6822 }
6823
6824
6825 int camera_attr_get_extra_preview_bitrate(camera_h camera, int stream_id, int *bitrate)
6826 {
6827         int ret = CAMERA_ERROR_NONE;
6828         camera_cli_s *pc = (camera_cli_s *)camera;
6829         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EXTRA_PREVIEW_BITRATE;
6830         camera_msg_param param;
6831
6832         if (!pc || !pc->cb_info || !bitrate) {
6833                 CAM_LOG_ERROR("NULL pointer %p %p", pc, bitrate);
6834                 return CAMERA_ERROR_INVALID_PARAMETER;
6835         }
6836
6837         CAM_LOG_INFO("Enter - stream[%d]", stream_id);
6838
6839         CAMERA_MSG_PARAM_SET(param, INT, stream_id);
6840
6841         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
6842
6843         if (ret == CAMERA_ERROR_NONE) {
6844                 *bitrate = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_EXTRA_PREVIEW_BITRATE];
6845                 CAM_LOG_INFO("get bitrate[%d] for stream[%d]", *bitrate, stream_id);
6846         } else {
6847                 CAM_LOG_ERROR("get bitrate failed for stream[%d] : 0x%x", stream_id, ret);
6848         }
6849
6850         return ret;
6851 }
6852
6853
6854 int camera_attr_set_extra_preview_gop_interval(camera_h camera, int stream_id, int interval)
6855 {
6856         int ret = CAMERA_ERROR_NONE;
6857         camera_cli_s *pc = (camera_cli_s *)camera;
6858         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_EXTRA_PREVIEW_GOP_INTERVAL;
6859         camera_msg_param param0;
6860         camera_msg_param param1;
6861
6862         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6863
6864         CAM_LOG_INFO("Enter - stream[%d], GOP interval[%d]", stream_id, interval);
6865
6866         CAMERA_MSG_PARAM_SET(param0, INT, stream_id);
6867         CAMERA_MSG_PARAM_SET(param1, INT, interval);
6868
6869         _camera_msg_send_param2_int(api, pc->cb_info, &ret,
6870                 &param0, &param1, CAMERA_CB_TIMEOUT);
6871
6872         CAM_LOG_INFO("ret : 0x%x", ret);
6873
6874         return ret;
6875 }
6876
6877
6878 int camera_attr_get_extra_preview_gop_interval(camera_h camera, int stream_id, int *interval)
6879 {
6880         int ret = CAMERA_ERROR_NONE;
6881         camera_cli_s *pc = (camera_cli_s *)camera;
6882         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EXTRA_PREVIEW_GOP_INTERVAL;
6883         camera_msg_param param;
6884
6885         if (!pc || !pc->cb_info || !interval) {
6886                 CAM_LOG_ERROR("NULL pointer %p %p", pc, interval);
6887                 return CAMERA_ERROR_INVALID_PARAMETER;
6888         }
6889
6890         CAM_LOG_INFO("Enter - stream[%d]", stream_id);
6891
6892         CAMERA_MSG_PARAM_SET(param, INT, stream_id);
6893
6894         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
6895
6896         if (ret == CAMERA_ERROR_NONE) {
6897                 *interval = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_EXTRA_PREVIEW_GOP_INTERVAL];
6898                 CAM_LOG_INFO("get GOP interval[%d] for stream[%d]", *interval, stream_id);
6899         } else {
6900                 CAM_LOG_ERROR("get GOP interval failed for stream[%d] : 0x%x", stream_id, ret);
6901         }
6902
6903         return ret;
6904 }
6905
6906
6907 int camera_attr_get_preview_frame_rotation(camera_h camera, camera_rotation_e *rotation)
6908 {
6909         camera_cli_s *pc = (camera_cli_s *)camera;
6910
6911         if (!pc || !pc->cb_info || !rotation) {
6912                 CAM_LOG_ERROR("NULL pointer %p %p", pc, rotation);
6913                 return CAMERA_ERROR_INVALID_PARAMETER;
6914         }
6915
6916         if (!pc->cb_info->stream_data) {
6917                 CAM_LOG_ERROR("no stream data, maybe it's not in preview callback");
6918                 return CAMERA_ERROR_INVALID_OPERATION;
6919         }
6920
6921         *rotation = pc->cb_info->stream_data->rotation;
6922
6923         CAM_LOG_DEBUG("frame rotation[%d]", *rotation);
6924
6925         return CAMERA_ERROR_NONE;
6926 }
6927
6928
6929 int _camera_get_log_level(void)
6930 {
6931         return g_camera_log_level;
6932 }
6933