Fix coverity issue - Resource Leak
[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
1674         if (!handler_info || !handler_info->cb_info) {
1675                 CAM_LOG_ERROR("NULL handler %p", handler_info);
1676                 return NULL;
1677         }
1678
1679         cb_info = (camera_cb_info_s *)handler_info->cb_info;
1680         type = handler_info->type;
1681
1682         CAM_LOG_INFO("t:%d start[thread:%p]", type, handler_info->thread);
1683
1684         g_mutex_lock(&handler_info->mutex);
1685
1686         while (g_atomic_int_get(&handler_info->running)) {
1687                 if (g_queue_is_empty(handler_info->queue)) {
1688                         CAM_LOG_VERBOSE("t[%d] signal wait...", type);
1689                         g_cond_wait(&handler_info->cond, &handler_info->mutex);
1690                         CAM_LOG_VERBOSE("t[%d] signal received", type);
1691
1692                         if (g_atomic_int_get(&handler_info->running) == 0) {
1693                                 CAM_LOG_INFO("t:%d stop event thread", type);
1694                                 break;
1695                         }
1696                 }
1697
1698                 cam_msg = (camera_message_s *)g_queue_pop_head(handler_info->queue);
1699
1700                 g_mutex_unlock(&handler_info->mutex);
1701
1702                 if (cam_msg == NULL) {
1703                         CAM_LOG_ERROR("t:%d NULL message", type);
1704                         g_mutex_lock(&handler_info->mutex);
1705                         continue;
1706                 }
1707
1708                 api = cam_msg->api;
1709
1710                 if (api < MUSE_CAMERA_API_MAX) {
1711                         int ret = 0;
1712
1713                         g_mutex_lock(&cb_info->api_mutex[api]);
1714
1715                         if (muse_camera_msg_get(ret, cam_msg->recv_msg)) {
1716                                 if (cb_info->api_waiting[api] > 0) {
1717                                         cb_info->api_ret[api] = ret;
1718                                         cb_info->api_activating[api] = TRUE;
1719
1720                                         CAM_LOG_DEBUG("t[%d] camera api[%d] - return[0x%x]", type, api, ret);
1721
1722                                         g_cond_broadcast(&cb_info->api_cond[api]);
1723                                 } else {
1724                                         CAM_LOG_WARNING("no waiting for this api [%d]", api);
1725                                 }
1726                         } else {
1727                                 CAM_LOG_ERROR("t:%d failed to get camera ret for api %d, msg %s", type, api, cam_msg->recv_msg);
1728                         }
1729
1730                         g_mutex_unlock(&cb_info->api_mutex[api]);
1731                 } else if (api == MUSE_CAMERA_CB_EVENT) {
1732                         if (cam_msg->event == MUSE_CAMERA_EVENT_TYPE_INTERRUPTED) {
1733                                 CAM_LOG_WARNING("INTERRUPTED, release thread for preview cb");
1734                                 __destroy_msg_handler_thread(&cb_info->preview_cb_info);
1735                         }
1736
1737                         switch (cam_msg->event_class) {
1738                         case MUSE_CAMERA_EVENT_CLASS_THREAD_SUB:
1739                                 __camera_client_user_callback(cb_info, cam_msg->recv_msg, cam_msg->event, cam_msg->tfd);
1740                                 break;
1741                         case MUSE_CAMERA_EVENT_CLASS_THREAD_MAIN:
1742                                 cam_idle_event = g_new0(camera_idle_event_s, 1);
1743                                 if (cam_idle_event == NULL) {
1744                                         CAM_LOG_ERROR("t:%d cam_idle_event alloc failed", type);
1745                                         break;
1746                                 }
1747
1748                                 cam_idle_event->event = cam_msg->event;
1749                                 cam_idle_event->cb_info = cb_info;
1750
1751                                 strncpy(cam_idle_event->recv_msg, cam_msg->recv_msg, sizeof(cam_idle_event->recv_msg));
1752                                 memcpy(cam_idle_event->tfd, cam_msg->tfd, sizeof(cam_idle_event->tfd));
1753
1754                                 CAM_LOG_DEBUG("t[%d] add camera event[%d, %p] to IDLE",
1755                                         type, cam_msg->event, cam_idle_event);
1756
1757                                 g_mutex_lock(&g_cam_idle_event_lock);
1758                                 cb_info->idle_event_list = g_list_append(cb_info->idle_event_list, (gpointer)cam_idle_event);
1759                                 g_mutex_unlock(&g_cam_idle_event_lock);
1760
1761                                 g_idle_add_full(G_PRIORITY_DEFAULT,
1762                                         (GSourceFunc)__camera_idle_event_callback,
1763                                         (gpointer)cam_idle_event,
1764                                         NULL);
1765                                 break;
1766                         default:
1767                                 CAM_LOG_ERROR("t:%d not handled event class %d", type, cam_msg->event_class);
1768                                 break;
1769                         }
1770                 } else {
1771                         CAM_LOG_ERROR("t:%d unknown camera api[%d] message[%s]", type, api, cam_msg->recv_msg);
1772                 }
1773
1774                 g_free(cam_msg);
1775                 cam_msg = NULL;
1776
1777                 g_mutex_lock(&handler_info->mutex);
1778         }
1779
1780         /* remove remained event */
1781         while (!g_queue_is_empty(handler_info->queue)) {
1782                 cam_msg = (camera_message_s *)g_queue_pop_head(handler_info->queue);
1783                 if (cam_msg) {
1784                         CAM_LOG_INFO("t:%d remove message %p", type, cam_msg);
1785                         __camera_release_tfd(cam_msg->tfd);
1786                         g_free(cam_msg);
1787                 } else {
1788                         CAM_LOG_WARNING("t:%d NULL message", type);
1789                 }
1790         }
1791
1792         g_mutex_unlock(&handler_info->mutex);
1793
1794         CAM_LOG_INFO("t:%d return[thread:%p]", type, handler_info->thread);
1795
1796         return NULL;
1797 }
1798
1799
1800 static void __camera_deactivate_idle_event_all(camera_cb_info_s *cb_info)
1801 {
1802         camera_idle_event_s *cam_idle_event = NULL;
1803         GList *list = NULL;
1804
1805         if (cb_info == NULL) {
1806                 CAM_LOG_ERROR("cb_info is NULL");
1807                 return;
1808         }
1809
1810         g_mutex_lock(&g_cam_idle_event_lock);
1811
1812         if (cb_info->idle_event_list == NULL) {
1813                 CAM_LOG_INFO("No remained idle event");
1814                 g_mutex_unlock(&g_cam_idle_event_lock);
1815                 return;
1816         }
1817
1818         list = cb_info->idle_event_list;
1819
1820         while (list) {
1821                 cam_idle_event = list->data;
1822                 list = g_list_next(list);
1823
1824                 if (!cam_idle_event) {
1825                         CAM_LOG_WARNING("Fail to remove idle event. The event is NULL");
1826                         continue;
1827                 }
1828
1829                 if (g_idle_remove_by_data(cam_idle_event)) {
1830                         CAM_LOG_WARNING("remove idle event %p done", cam_idle_event);
1831
1832                         cb_info->idle_event_list = g_list_remove(cb_info->idle_event_list, (gpointer)cam_idle_event);
1833
1834                         g_free(cam_idle_event);
1835                         cam_idle_event = NULL;
1836
1837                         continue;
1838                 }
1839
1840                 CAM_LOG_WARNING("set NULL cb_info for event %p %d, it will be freed on idle callback",
1841                         cam_idle_event, cam_idle_event->event);
1842
1843                 cam_idle_event->cb_info = NULL;
1844
1845                 cb_info->idle_event_list = g_list_remove(cb_info->idle_event_list, (gpointer)cam_idle_event);
1846         }
1847
1848         g_list_free(cb_info->idle_event_list);
1849         cb_info->idle_event_list = NULL;
1850
1851         g_mutex_unlock(&g_cam_idle_event_lock);
1852 }
1853
1854
1855 static void __camera_add_msg_to_queue(camera_cb_info_s *cb_info, int api, int event, int event_class, char *msg, int *tfd)
1856 {
1857         camera_message_s *cam_msg = NULL;
1858
1859         if (!cb_info || !msg) {
1860                 CAM_LOG_ERROR("NULL pointer %p %p", cb_info, msg);
1861                 return;
1862         }
1863
1864         cam_msg = g_new0(camera_message_s, 1);
1865         if (!cam_msg) {
1866                 CAM_LOG_ERROR("failed to alloc cam_msg for [%s]", msg);
1867                 return;
1868         }
1869
1870         cam_msg->api = api;
1871         cam_msg->event = event;
1872         cam_msg->event_class = event_class;
1873
1874         if (tfd)
1875                 memcpy(cam_msg->tfd, tfd, sizeof(cam_msg->tfd));
1876
1877         strncpy(cam_msg->recv_msg, msg, sizeof(cam_msg->recv_msg) - 1);
1878
1879         CAM_LOG_DEBUG("add message to queue : api[%d], event[%d], event_class[%d]",
1880                 api, event, event_class);
1881
1882         if (event == MUSE_CAMERA_EVENT_TYPE_PREVIEW) {
1883                 if (!cb_info->preview_cb_info.thread) {
1884                         LOGI("The thread for preview cb is not created yet, create it now");
1885                         if (!__create_msg_handler_thread(&cb_info->preview_cb_info,
1886                                         CAMERA_MESSAGE_HANDLER_TYPE_PREVIEW_CB, "cam:preview_cb", cb_info)) {
1887                                 CAM_LOG_ERROR("failed to create thread for preview cb");
1888                                 g_free(cam_msg);
1889                                 return;
1890                         }
1891                 }
1892
1893                 g_mutex_lock(&cb_info->preview_cb_info.mutex);
1894                 g_queue_push_tail(cb_info->preview_cb_info.queue, (gpointer)cam_msg);
1895                 g_cond_signal(&cb_info->preview_cb_info.cond);
1896                 g_mutex_unlock(&cb_info->preview_cb_info.mutex);
1897         } else if (event == MUSE_CAMERA_EVENT_TYPE_CAPTURE) {
1898                 g_mutex_lock(&cb_info->capture_cb_info.mutex);
1899                 g_queue_push_tail(cb_info->capture_cb_info.queue, (gpointer)cam_msg);
1900                 g_cond_signal(&cb_info->capture_cb_info.cond);
1901                 g_mutex_unlock(&cb_info->capture_cb_info.mutex);
1902         } else {
1903                 g_mutex_lock(&cb_info->msg_handler_info.mutex);
1904                 g_queue_push_tail(cb_info->msg_handler_info.queue, (gpointer)cam_msg);
1905                 g_cond_signal(&cb_info->msg_handler_info.cond);
1906                 g_mutex_unlock(&cb_info->msg_handler_info.mutex);
1907         }
1908
1909         cam_msg = NULL;
1910 }
1911
1912
1913 static void __camera_process_msg(camera_cb_info_s *cb_info, char *msg, int *tfd)
1914 {
1915         int ret = CAMERA_ERROR_NONE;
1916         int api = -1;
1917         int api_class = -1;
1918         int event = -1;
1919         int event_class = -1;
1920         int get_type = -1;
1921         int get_index = -1;
1922
1923         if (!cb_info || !msg) {
1924                 CAM_LOG_ERROR("invalid ptr %p %p", cb_info, msg);
1925                 return;
1926         }
1927
1928         CAM_LOG_DEBUG("msg[%s]", msg);
1929
1930         if (!muse_camera_msg_get(api, msg)) {
1931                 CAM_LOG_ERROR("failed to get camera api");
1932                 return;
1933         }
1934
1935         if (api == MUSE_CAMERA_CB_EVENT) {
1936                 if (!muse_camera_msg_get(event, msg) ||
1937                         !muse_camera_msg_get(event_class, msg)) {
1938                         CAM_LOG_ERROR("failed to get camera event or event_class [%s]", msg);
1939                         return;
1940                 }
1941         } else {
1942                 if (!muse_camera_msg_get(api_class, msg)) {
1943                         CAM_LOG_ERROR("failed to get camera api_class [%s]", msg);
1944                         return;
1945                 }
1946         }
1947
1948         if (api_class == MUSE_CAMERA_API_CLASS_IMMEDIATE) {
1949                 if (api >= MUSE_CAMERA_API_MAX) {
1950                         CAM_LOG_ERROR("invalid api %d", api);
1951                         return;
1952                 }
1953
1954                 if (!muse_camera_msg_get(ret, msg)) {
1955                         CAM_LOG_ERROR("failed to get camera ret");
1956                         return;
1957                 }
1958
1959                 g_mutex_lock(&cb_info->api_mutex[api]);
1960
1961                 switch (api) {
1962                 case MUSE_CAMERA_API_CREATE:
1963                         if (ret != CAMERA_ERROR_NONE) {
1964                                 g_atomic_int_set(&cb_info->msg_recv_running, 0);
1965                                 CAM_LOG_ERROR("camera create error 0x%x. close client cb handler", ret);
1966                         }
1967                         break;
1968                 case MUSE_CAMERA_API_DESTROY:
1969                         if (ret == CAMERA_ERROR_NONE) {
1970                                 g_atomic_int_set(&cb_info->msg_recv_running, 0);
1971                                 CAM_LOG_INFO("camera destroy done. close client cb handler");
1972                         }
1973                         break;
1974                 default:
1975                         muse_camera_msg_get(get_type, msg);
1976                         if (get_type != MUSE_CAMERA_GET_TYPE_NONE) {
1977                                 if (get_type != MUSE_CAMERA_GET_TYPE_ARRAY)
1978                                         muse_camera_msg_get(get_index, msg);
1979
1980                                 switch (get_type) {
1981                                 case MUSE_CAMERA_GET_TYPE_INT:
1982                                         muse_core_msg_deserialize("get_value", msg, NULL, NULL, MUSE_TYPE_INT, &cb_info->get_int[get_index]);
1983                                         break;
1984                                 case MUSE_CAMERA_GET_TYPE_INT_PAIR:
1985                                         muse_core_msg_deserialize("get_value0", msg, NULL, NULL, MUSE_TYPE_INT, &cb_info->get_int_pair[get_index][0]);
1986                                         muse_core_msg_deserialize("get_value1", msg, NULL, NULL, MUSE_TYPE_INT, &cb_info->get_int_pair[get_index][1]);
1987                                         break;
1988                                 case MUSE_CAMERA_GET_TYPE_ARRAY:
1989                                         switch (api) {
1990                                         case MUSE_CAMERA_API_GET_DISPLAY_ROI_AREA:
1991                                                 muse_core_msg_deserialize("get_value",
1992                                                         msg, NULL, NULL, MUSE_TYPE_ARRAY, cb_info->get_display_roi_area);
1993                                                 CAM_LOG_INFO("get display roi %d,%d,%dx%d",
1994                                                         cb_info->get_display_roi_area[0],
1995                                                         cb_info->get_display_roi_area[1],
1996                                                         cb_info->get_display_roi_area[2],
1997                                                         cb_info->get_display_roi_area[3]);
1998                                                 break;
1999                                         case MUSE_CAMERA_API_ATTR_GET_GEOTAG:
2000                                                 muse_core_msg_deserialize("get_value",
2001                                                         msg, NULL, NULL, MUSE_TYPE_ARRAY, cb_info->get_geotag);
2002                                                 CAM_LOG_INFO("get geotag %lf, %lf, %lf",
2003                                                         cb_info->get_geotag[0], cb_info->get_geotag[1], cb_info->get_geotag[2]);
2004                                                 break;
2005                                         case MUSE_CAMERA_API_GET_EXTRA_PREVIEW_STREAM_FORMAT:
2006                                                 muse_core_msg_deserialize("get_value",
2007                                                         msg, NULL, NULL, MUSE_TYPE_ARRAY, cb_info->get_extra_preview_stream_format);
2008                                                 CAM_LOG_INFO("get extra preview stream format %d,%dx%d,%d",
2009                                                         cb_info->get_extra_preview_stream_format[0],
2010                                                         cb_info->get_extra_preview_stream_format[1],
2011                                                         cb_info->get_extra_preview_stream_format[2],
2012                                                         cb_info->get_extra_preview_stream_format[3]);
2013                                                 break;
2014                                         default:
2015                                                 CAM_LOG_WARNING("unknown api[%d]", api);
2016                                                 break;
2017                                         }
2018                                         break;
2019                                 case MUSE_CAMERA_GET_TYPE_STRING:
2020                                         muse_core_msg_deserialize("get_value", msg, NULL, NULL, MUSE_TYPE_STRING, cb_info->get_string[get_index]);
2021                                         break;
2022                                 default:
2023                                         CAM_LOG_WARNING("unknown type %d", get_type);
2024                                         break;
2025                                 }
2026                         }
2027                         break;
2028                 }
2029
2030                 if (cb_info->api_waiting[api] > 0) {
2031                         cb_info->api_ret[api] = ret;
2032                         cb_info->api_activating[api] = TRUE;
2033
2034                         g_cond_broadcast(&cb_info->api_cond[api]);
2035                 } else {
2036                         CAM_LOG_WARNING("no waiting for this api [%d]", api);
2037                 }
2038
2039                 g_mutex_unlock(&cb_info->api_mutex[api]);
2040         } else if (api_class == MUSE_CAMERA_API_CLASS_THREAD_SUB || api == MUSE_CAMERA_CB_EVENT) {
2041                 __camera_add_msg_to_queue(cb_info, api, event, event_class, msg, tfd);
2042         } else {
2043                 CAM_LOG_WARNING("unknown camera api %d, class %d", api, api_class);
2044         }
2045 }
2046
2047
2048 static gpointer __camera_msg_recv_func(gpointer data)
2049 {
2050         int i = 0;
2051         int recv_length = 0;
2052         int tfd[MUSE_NUM_FD] = {CAMERA_FD_INIT, CAMERA_FD_INIT, CAMERA_FD_INIT, CAMERA_FD_INIT};
2053         char *recv_msg = NULL;
2054         camera_cb_info_s *cb_info = (camera_cb_info_s *)data;
2055
2056         if (!cb_info) {
2057                 CAM_LOG_ERROR("cb_info NULL");
2058                 return NULL;
2059         }
2060
2061         CAM_LOG_INFO("start - fd : %d", cb_info->fd);
2062
2063         recv_msg = cb_info->recv_msg;
2064
2065         while (g_atomic_int_get(&cb_info->msg_recv_running)) {
2066                 for (i = 0 ; i < MUSE_NUM_FD ; i++)
2067                         tfd[i] = CAMERA_FD_INIT;
2068
2069                 recv_length = muse_core_msg_recv_fd(cb_info->fd, recv_msg, MUSE_MSG_MAX_LENGTH, tfd);
2070                 if (recv_length <= 0) {
2071                         cb_info->is_server_connected = FALSE;
2072                         CAM_LOG_ERROR("receive msg failed - server disconnected");
2073                         break;
2074                 }
2075
2076                 if (CAMERA_IS_FD_VALID(tfd[0]))
2077                         CAM_LOG_DEBUG("tfd[%d/%d/%d/%d]", tfd[0], tfd[1], tfd[2], tfd[3]);
2078
2079                 recv_msg[recv_length] = '\0';
2080
2081                 CAM_LOG_VERBOSE("recv msg[%s], length[%d]", recv_msg, recv_length);
2082
2083                 __camera_process_msg(cb_info, recv_msg, tfd);
2084         }
2085
2086         CAM_LOG_INFO("client cb exit - server connected %d", cb_info->is_server_connected);
2087
2088 //LCOV_EXCL_START
2089         if (!cb_info->is_server_connected) {
2090                 char *error_msg = NULL;
2091
2092                 if (cb_info->bufmgr == NULL) {
2093                         CAM_LOG_ERROR("No need to send error(handle is not created)");
2094                         return NULL;
2095                 }
2096
2097                 if (cb_info->fd < 0) {
2098                         CAM_LOG_ERROR("fd is closed in client side");
2099                         return NULL;
2100                 }
2101
2102                 /* send error msg for server disconnection */
2103                 error_msg = muse_core_msg_new(MUSE_CAMERA_CB_EVENT,
2104                         MUSE_TYPE_INT, "error", CAMERA_ERROR_SERVICE_DISCONNECTED,
2105                         MUSE_TYPE_INT, "current_state", CAMERA_STATE_NONE,
2106                         NULL);
2107
2108                 if (!error_msg) {
2109                         CAM_LOG_ERROR("error_msg failed");
2110                         return NULL;
2111                 }
2112
2113                 __camera_add_msg_to_queue(cb_info,
2114                         MUSE_CAMERA_CB_EVENT,
2115                         MUSE_CAMERA_EVENT_TYPE_ERROR,
2116                         MUSE_CAMERA_EVENT_CLASS_THREAD_MAIN,
2117                         error_msg,
2118                         NULL);
2119
2120                 muse_core_msg_free(error_msg);
2121                 error_msg = NULL;
2122
2123                 for (i = 0 ; i < MUSE_CAMERA_API_MAX ; i++) {
2124                         if (cb_info->api_waiting[i])
2125                                 g_cond_broadcast(&cb_info->api_cond[i]);
2126                 }
2127
2128                 CAM_LOG_ERROR("add error msg for service disconnection done");
2129         }
2130 //LCOV_EXCL_STOP
2131
2132         return NULL;
2133 }
2134
2135
2136 static bool __create_msg_handler_thread(camera_msg_handler_info_s *handler_info,
2137         int type, const char *thread_name, camera_cb_info_s *cb_info)
2138 {
2139         if (!handler_info || !thread_name || !cb_info) {
2140                 CAM_LOG_ERROR("t:%d NULL %p %p %p",
2141                         type, handler_info, thread_name, cb_info);
2142                 return false;
2143         }
2144
2145         if (handler_info->thread) {
2146                 CAM_LOG_WARNING("t:%d thread[%p] is already created", type, handler_info->thread);
2147                 return true;
2148         }
2149
2150         CAM_LOG_INFO("t:%d [%s]", type, thread_name);
2151
2152         handler_info->type = type;
2153         handler_info->queue = g_queue_new();
2154         if (handler_info->queue == NULL) {
2155                 CAM_LOG_ERROR("t:%d queue failed", type);
2156                 return false;
2157         }
2158
2159         g_mutex_init(&handler_info->mutex);
2160         g_cond_init(&handler_info->cond);
2161
2162         handler_info->cb_info = (void *)cb_info;
2163         g_atomic_int_set(&handler_info->running, 1);
2164
2165         handler_info->thread = g_thread_try_new(thread_name,
2166                 __camera_msg_handler_func, (gpointer)handler_info, NULL);
2167         if (handler_info->thread == NULL) {
2168                 CAM_LOG_ERROR("t:%d thread failed", type);
2169
2170                 g_mutex_clear(&handler_info->mutex);
2171                 g_cond_clear(&handler_info->cond);
2172                 g_queue_free(handler_info->queue);
2173                 handler_info->queue = NULL;
2174
2175                 return false;
2176         }
2177
2178         CAM_LOG_INFO("t:%d done[thread:%p]", type, handler_info->thread);
2179
2180         return true;
2181 }
2182
2183
2184 static void __destroy_msg_handler_thread(camera_msg_handler_info_s *handler_info)
2185 {
2186         int type = 0;
2187
2188         if (!handler_info) {
2189                 CAM_LOG_ERROR("NULL handler");
2190                 return;
2191         }
2192
2193         if (!handler_info->thread) {
2194                 CAM_LOG_WARNING("thread is not created");
2195                 return;
2196         }
2197
2198         type = handler_info->type;
2199
2200         CAM_LOG_INFO("t:%d thread[%p]", type, handler_info->thread);
2201
2202         g_mutex_lock(&handler_info->mutex);
2203         g_atomic_int_set(&handler_info->running, 0);
2204         g_cond_signal(&handler_info->cond);
2205         g_mutex_unlock(&handler_info->mutex);
2206
2207         g_thread_join(handler_info->thread);
2208         handler_info->thread = NULL;
2209
2210         g_mutex_clear(&handler_info->mutex);
2211         g_cond_clear(&handler_info->cond);
2212         g_queue_free(handler_info->queue);
2213         handler_info->queue = NULL;
2214
2215         CAM_LOG_INFO("t:%d done", type);
2216 }
2217
2218
2219 static camera_cb_info_s *__camera_client_callback_new(gint sockfd)
2220 {
2221         camera_cb_info_s *cb_info = NULL;
2222         gint i = 0;
2223
2224         g_return_val_if_fail(sockfd > 0, NULL);
2225
2226         cb_info = g_new0(camera_cb_info_s, 1);
2227         if (cb_info == NULL) {
2228                 CAM_LOG_ERROR("cb_info failed");
2229                 goto ErrorExit;
2230         }
2231
2232         cb_info->api_waiting[MUSE_CAMERA_API_CREATE] = 1;
2233
2234         for (i = 0 ; i < MUSE_CAMERA_API_MAX ; i++) {
2235                 g_mutex_init(&cb_info->api_mutex[i]);
2236                 g_cond_init(&cb_info->api_cond[i]);
2237         }
2238
2239         g_mutex_init(&cb_info->fd_lock);
2240         g_mutex_init(&cb_info->mp_data_mutex);
2241         g_mutex_init(&cb_info->bridge_lock);
2242
2243         for (i = 0 ; i < MUSE_CAMERA_EVENT_TYPE_NUM ; i++)
2244                 g_mutex_init(&cb_info->user_cb_mutex[i]);
2245
2246         /* message handler thread */
2247         if (!__create_msg_handler_thread(&cb_info->msg_handler_info,
2248                         CAMERA_MESSAGE_HANDLER_TYPE_GENERAL, "cam:msg_handler", cb_info)) {
2249                 CAM_LOG_ERROR("msg_handler_info failed");
2250                 goto ErrorExit;
2251         }
2252
2253         /* message handler thread for capture callback */
2254         if (!__create_msg_handler_thread(&cb_info->capture_cb_info,
2255                         CAMERA_MESSAGE_HANDLER_TYPE_CAPTURE_CB, "cam:capture_cb", cb_info)) {
2256                 CAM_LOG_ERROR("capture_cb_info failed");
2257                 goto ErrorExit;
2258         }
2259
2260         cb_info->fd = sockfd;
2261
2262         /* message receive thread */
2263         g_atomic_int_set(&cb_info->msg_recv_running, 1);
2264         cb_info->msg_recv_thread = g_thread_try_new("cam:msg_recv",
2265                 __camera_msg_recv_func, (gpointer)cb_info, NULL);
2266         if (cb_info->msg_recv_thread == NULL) {
2267                 CAM_LOG_ERROR("message receive thread creation failed");
2268                 goto ErrorExit;
2269         }
2270
2271         /* initialize fd */
2272         for (i = 0 ; i < MUSE_NUM_FD ; i++)
2273                 cb_info->fds[i] = CAMERA_FD_INIT;
2274
2275         cb_info->is_server_connected = TRUE;
2276
2277         return cb_info;
2278 //LCOV_EXCL_START
2279 ErrorExit:
2280         if (cb_info) {
2281                 __destroy_msg_handler_thread(&cb_info->msg_handler_info);
2282                 __destroy_msg_handler_thread(&cb_info->capture_cb_info);
2283
2284                 for (i = 0 ; i < MUSE_CAMERA_EVENT_TYPE_NUM ; i++)
2285                         g_mutex_clear(&cb_info->user_cb_mutex[i]);
2286
2287                 g_mutex_clear(&cb_info->fd_lock);
2288                 g_mutex_clear(&cb_info->mp_data_mutex);
2289                 g_mutex_clear(&cb_info->bridge_lock);
2290
2291                 for (i = 0 ; i < MUSE_CAMERA_API_MAX ; i++) {
2292                         g_mutex_clear(&cb_info->api_mutex[i]);
2293                         g_cond_clear(&cb_info->api_cond[i]);
2294                 }
2295
2296                 g_free(cb_info);
2297                 cb_info = NULL;
2298         }
2299
2300         return NULL;
2301 //LCOV_EXCL_STOP
2302 }
2303
2304 static void __camera_client_callback_destroy(camera_cb_info_s *cb_info)
2305 {
2306         int i = 0;
2307
2308         g_return_if_fail(cb_info != NULL);
2309
2310         CAM_LOG_INFO("msg_recv thread[%p] destroy", cb_info->msg_recv_thread);
2311
2312         g_thread_join(cb_info->msg_recv_thread);
2313         cb_info->msg_recv_thread = NULL;
2314
2315         CAM_LOG_INFO("msg_recv thread removed");
2316
2317         /* destroy msg handler threads */
2318         if (cb_info->preview_cb_info.thread)
2319                 __destroy_msg_handler_thread(&cb_info->preview_cb_info);
2320         __destroy_msg_handler_thread(&cb_info->msg_handler_info);
2321         __destroy_msg_handler_thread(&cb_info->capture_cb_info);
2322
2323         for (i = 0 ; i < MUSE_CAMERA_EVENT_TYPE_NUM ; i++)
2324                 g_mutex_clear(&cb_info->user_cb_mutex[i]);
2325
2326         g_mutex_clear(&cb_info->fd_lock);
2327         g_mutex_clear(&cb_info->mp_data_mutex);
2328         g_mutex_clear(&cb_info->bridge_lock);
2329
2330         for (i = 0 ; i < MUSE_CAMERA_API_MAX ; i++) {
2331                 g_mutex_clear(&cb_info->api_mutex[i]);
2332                 g_cond_clear(&cb_info->api_cond[i]);
2333         }
2334
2335         if (CAMERA_IS_FD_VALID(cb_info->fd)) {
2336                 muse_client_close(cb_info->fd);
2337                 cb_info->fd = CAMERA_FD_INIT;
2338         }
2339
2340         if (cb_info->bufmgr) {
2341                 tbm_bufmgr_deinit(cb_info->bufmgr);
2342                 cb_info->bufmgr = NULL;
2343         }
2344         if (cb_info->pkt_fmt) {
2345                 media_format_unref(cb_info->pkt_fmt);
2346                 cb_info->pkt_fmt = NULL;
2347         }
2348
2349         if (cb_info->dp_interface) {
2350                 mm_display_interface_deinit(cb_info->dp_interface);
2351                 cb_info->dp_interface = NULL;
2352         }
2353
2354         g_free(cb_info);
2355 }
2356
2357 //LCOV_EXCL_START
2358 int _camera_start_evas_rendering(camera_h camera)
2359 {
2360         camera_cli_s *pc = (camera_cli_s *)camera;
2361
2362         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2363
2364         CAM_LOG_INFO("start");
2365
2366         if (!pc->cb_info->is_evas_render) {
2367                 CAM_LOG_ERROR("EVAS surface is not set");
2368                 return CAMERA_ERROR_NONE;
2369         }
2370
2371         /* set evas render flag as RUN */
2372         pc->cb_info->run_evas_render = true;
2373
2374         return CAMERA_ERROR_NONE;
2375 }
2376
2377
2378 int _camera_stop_evas_rendering(camera_h camera, bool keep_screen)
2379 {
2380         int ret = CAMERA_ERROR_NONE;
2381         camera_cli_s *pc = (camera_cli_s *)camera;
2382
2383         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2384
2385         CAM_LOG_INFO("stop - keep screen %d", keep_screen);
2386
2387         if (!pc->cb_info->is_evas_render) {
2388                 CAM_LOG_ERROR("EVAS surface is not set");
2389                 return CAMERA_ERROR_NONE;
2390         }
2391
2392         /* set evas render flag as STOP and release buffers */
2393         pc->cb_info->run_evas_render = false;
2394
2395         ret = mm_display_interface_evas_flush(pc->cb_info->dp_interface, keep_screen);
2396         if (ret == MM_ERROR_NONE) {
2397                 ret = CAMERA_ERROR_NONE;
2398         } else {
2399                 CAM_LOG_ERROR("mm_evas_renderer_retrieve_all_packets failed 0x%x", ret);
2400                 ret = CAMERA_ERROR_INVALID_OPERATION;
2401         }
2402
2403         return ret;
2404 }
2405 //LCOV_EXCL_STOP
2406
2407 int _camera_independent_request(int api, int device_type, const char *key, int *value)
2408 {
2409         int ret = CAMERA_ERROR_NONE;
2410         int sock_fd = CAMERA_FD_INIT;
2411         int module_index = -1;
2412         char *msg = NULL;
2413         char recv_msg[MUSE_CAMERA_MSG_MAX_LENGTH] = {'\0',};
2414
2415         /* create muse connection */
2416         if (!key || !value) {
2417                 CAM_LOG_ERROR("NULL pointer");
2418                 return CAMERA_ERROR_INVALID_PARAMETER;
2419         }
2420
2421         sock_fd = muse_client_new();
2422         if (sock_fd < 0) {
2423                 CAM_LOG_ERROR("muse_client_new failed");
2424                 return CAMERA_ERROR_INVALID_OPERATION;
2425         }
2426
2427         if (muse_client_get_module_index(MODULE_NAME, &module_index) != MM_ERROR_NONE) {
2428                 CAM_LOG_ERROR("muse client get module index failed");
2429                 ret = CAMERA_ERROR_INVALID_OPERATION;
2430                 goto _REQUEST_EXIT;
2431         }
2432
2433         msg = muse_core_msg_new(api,
2434                 MUSE_TYPE_INT, "module", module_index,
2435                 MUSE_TYPE_INT, PARAM_DEVICE_TYPE, device_type,
2436                 0);
2437         if (!msg) {
2438                 CAM_LOG_ERROR("msg failed");
2439                 ret = CAMERA_ERROR_OUT_OF_MEMORY;
2440                 goto _REQUEST_EXIT;
2441         }
2442
2443         ret = muse_core_msg_send(sock_fd, msg);
2444
2445         muse_core_msg_free(msg);
2446         msg = NULL;
2447
2448         if (ret < 0) {
2449                 CAM_LOG_ERROR("send msg failed");
2450                 ret = CAMERA_ERROR_INVALID_OPERATION;
2451                 goto _REQUEST_EXIT;
2452         }
2453
2454         ret = muse_core_msg_recv(sock_fd, recv_msg, MUSE_CAMERA_MSG_MAX_LENGTH);
2455         if (ret <= 0) {
2456                 CAM_LOG_ERROR("recv msg failed %d", errno);
2457                 ret = CAMERA_ERROR_INVALID_OPERATION;
2458                 goto _REQUEST_EXIT;
2459         }
2460
2461         if (!muse_camera_msg_get(ret, recv_msg)) {
2462                 CAM_LOG_ERROR("failed to get return value from msg [%s]", recv_msg);
2463                 ret = CAMERA_ERROR_INVALID_OPERATION;
2464                 goto _REQUEST_EXIT;
2465         }
2466
2467         if (ret == CAMERA_ERROR_NONE)
2468                 muse_core_msg_deserialize(key, recv_msg, NULL, NULL, MUSE_TYPE_ANY, value);
2469
2470         CAM_LOG_INFO("api %d - value %d", api, *value);
2471
2472 _REQUEST_EXIT:
2473         if (CAMERA_IS_FD_VALID(sock_fd)) {
2474                 muse_client_close(sock_fd);
2475                 sock_fd = CAMERA_FD_INIT;
2476         }
2477
2478         return ret;
2479 }
2480
2481
2482 int _camera_create_private(camera_device_e device, bool is_network, camera_h *camera)
2483 {
2484         int sock_fd = CAMERA_FD_INIT;
2485         char *send_msg = NULL;
2486         int send_ret = 0;
2487         int ret = CAMERA_ERROR_NONE;
2488         camera_cli_s *pc = NULL;
2489         tbm_bufmgr bufmgr = NULL;
2490
2491         muse_camera_api_e api = MUSE_CAMERA_API_CREATE;
2492         int module_index = -1;
2493         int device_type = (int)device;
2494
2495         CAM_LOG_INFO("device %d, is_network %d", device, is_network);
2496
2497         sock_fd = muse_client_new();
2498         if (sock_fd < 0) {
2499                 CAM_LOG_ERROR("muse_client_new failed - returned fd %d", sock_fd);
2500                 ret = CAMERA_ERROR_INVALID_OPERATION;
2501                 goto ErrorExit;
2502         }
2503
2504         if (muse_client_get_module_index(MODULE_NAME, &module_index) != MM_ERROR_NONE) {
2505                 CAM_LOG_ERROR("muse client get module index failed");
2506                 ret = CAMERA_ERROR_INVALID_OPERATION;
2507                 goto ErrorExit;
2508         }
2509
2510         send_msg = muse_core_msg_new(api,
2511                 MUSE_TYPE_INT, "module", module_index,
2512                 MUSE_TYPE_INT, PARAM_DEVICE_TYPE, device_type,
2513                 MUSE_TYPE_INT, "is_network", (int)is_network,
2514                 0);
2515
2516         if (!send_msg) {
2517                 CAM_LOG_ERROR("NULL msg");
2518                 ret = CAMERA_ERROR_OUT_OF_MEMORY;
2519                 goto ErrorExit;
2520         }
2521
2522         send_ret = muse_core_msg_send(sock_fd, send_msg);
2523
2524         muse_core_msg_free(send_msg);
2525         send_msg = NULL;
2526
2527         if (send_ret < 0) {
2528                 CAM_LOG_ERROR("send msg failed %d", errno);
2529                 ret = CAMERA_ERROR_INVALID_OPERATION;
2530                 goto ErrorExit;
2531         }
2532
2533         pc = g_new0(camera_cli_s, 1);
2534         if (pc == NULL) {
2535                 CAM_LOG_ERROR("camera_cli_s alloc failed");
2536                 ret = CAMERA_ERROR_OUT_OF_MEMORY;
2537                 goto ErrorExit;
2538         }
2539
2540         bufmgr = tbm_bufmgr_init(-1);
2541         if (bufmgr == NULL) {
2542                 CAM_LOG_ERROR("get tbm bufmgr failed");
2543                 ret = CAMERA_ERROR_INVALID_OPERATION;
2544                 goto ErrorExit;
2545         }
2546
2547         pc->cb_info = __camera_client_callback_new(sock_fd);
2548         if (pc->cb_info == NULL) {
2549                 CAM_LOG_ERROR("cb_info alloc failed");
2550                 ret = CAMERA_ERROR_OUT_OF_MEMORY;
2551                 goto ErrorExit;
2552         }
2553
2554         sock_fd = CAMERA_FD_INIT;
2555
2556         CAM_LOG_INFO("cb info : %d", pc->cb_info->fd);
2557
2558         ret = _camera_client_wait_for_cb_return(api, pc->cb_info, CAMERA_CB_TIMEOUT);
2559
2560         pc->cb_info->api_waiting[MUSE_CAMERA_API_CREATE] = 0;
2561
2562         if (ret == CAMERA_ERROR_NONE) {
2563                 int preview_format = CAMERA_PIXEL_FORMAT_INVALID;
2564                 int user_buffer_supported = 0;
2565                 int log_level = CAMERA_LOG_LEVEL_INFO;
2566                 intptr_t handle = 0;
2567
2568                 muse_camera_msg_get_pointer(handle, pc->cb_info->recv_msg);
2569                 if (handle == 0) {
2570                         CAM_LOG_ERROR("Receiving Handle Failed!!");
2571                         ret = CAMERA_ERROR_INVALID_OPERATION;
2572                         goto ErrorExit;
2573                 }
2574
2575                 muse_camera_msg_get(preview_format, pc->cb_info->recv_msg);
2576                 muse_camera_msg_get(user_buffer_supported, pc->cb_info->recv_msg);
2577                 muse_camera_msg_get(log_level, pc->cb_info->recv_msg);
2578
2579                 pc->remote_handle = handle;
2580                 pc->cb_info->bufmgr = bufmgr;
2581                 pc->cb_info->preview_format = preview_format;
2582                 pc->cb_info->dp_info.type = CAMERA_DISPLAY_TYPE_NONE;
2583                 pc->cb_info->user_buffer_supported = (gboolean)user_buffer_supported;
2584                 pc->cb_info->is_network = is_network;
2585                 g_camera_log_level = log_level;
2586
2587                 CAM_LOG_INFO("default preview format %d, user buffer %d, log level %d",
2588                         preview_format, user_buffer_supported, g_camera_log_level);
2589
2590                 if (!camera) {
2591                         CAM_LOG_ERROR("NULL out handle");
2592                         ret= CAMERA_ERROR_INVALID_PARAMETER;
2593                         goto ErrorExit;
2594                 }
2595
2596                 *camera = (camera_h)pc;
2597
2598                 /* get display interface handle */
2599                 if (mm_display_interface_init(&pc->cb_info->dp_interface) != MM_ERROR_NONE)
2600                         CAM_LOG_WARNING("display interface init failed");
2601         } else {
2602                 goto ErrorExit;
2603         }
2604
2605         return ret;
2606 //LCOV_EXCL_START
2607 ErrorExit:
2608         if (bufmgr) {
2609                 tbm_bufmgr_deinit(bufmgr);
2610                 bufmgr = NULL;
2611         }
2612
2613         if (CAMERA_IS_FD_VALID(sock_fd)) {
2614                 muse_client_close(sock_fd);
2615                 sock_fd = CAMERA_FD_INIT;
2616         }
2617
2618         if (pc) {
2619                 if (pc->cb_info) {
2620                         int temp_fd = pc->cb_info->fd;
2621
2622                         /* pc->cb_info->fd should be closed,
2623                            because g_thread_join for msg_recv_thread is not returned
2624                            in __camera_client_callback_destroy. */
2625                         if (CAMERA_IS_FD_VALID(temp_fd)) {
2626                                 pc->cb_info->fd = CAMERA_FD_INIT;
2627                                 muse_client_close(temp_fd);
2628                         }
2629
2630                         __camera_client_callback_destroy(pc->cb_info);
2631                         pc->cb_info = NULL;
2632                 }
2633                 g_free(pc);
2634                 pc = NULL;
2635         }
2636
2637         CAM_LOG_ERROR("camera create error : 0x%x", ret);
2638
2639         return ret;
2640 //LCOV_EXCL_STOP
2641 }
2642
2643
2644 int camera_create(camera_device_e device, camera_h *camera)
2645 {
2646         return _camera_create_private(device, false, camera);
2647 }
2648
2649
2650 int camera_change_device(camera_h camera, camera_device_e device)
2651 {
2652         int i = 0;
2653         int ret = CAMERA_ERROR_NONE;
2654         muse_camera_api_e api = MUSE_CAMERA_API_CHANGE_DEVICE;
2655         camera_cli_s *pc = (camera_cli_s *)camera;
2656         camera_msg_param param;
2657
2658         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2659
2660         CAMERA_MSG_PARAM_SET(param, INT, device);
2661
2662         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
2663
2664         if (ret == CAMERA_ERROR_NONE) {
2665                 /* reset callback and user data */
2666                 for (i = 0 ; i < MUSE_CAMERA_EVENT_TYPE_NUM ; i++) {
2667                         pc->cb_info->user_cb[i] = NULL;
2668                         pc->cb_info->user_data[i] = NULL;
2669                 }
2670         }
2671
2672         return ret;
2673 }
2674
2675
2676 int camera_destroy(camera_h camera)
2677 {
2678         int ret = CAMERA_ERROR_NONE;
2679         muse_camera_api_e api = MUSE_CAMERA_API_DESTROY;
2680         camera_cli_s *pc = (camera_cli_s *)camera;
2681
2682         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2683
2684         CAM_LOG_INFO("Enter");
2685
2686         if (pc->cb_info->is_server_connected)
2687                 _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2688         else
2689                 CAM_LOG_WARNING("server disconnected. release resource without send message.");
2690
2691         if (ret == CAMERA_ERROR_NONE) {
2692                 __camera_deactivate_idle_event_all(pc->cb_info);
2693                 __camera_client_callback_destroy(pc->cb_info);
2694                 pc->cb_info = NULL;
2695
2696                 g_free(pc);
2697                 pc = NULL;
2698         }
2699
2700         CAM_LOG_INFO("ret : 0x%x", ret);
2701
2702         return ret;
2703 }
2704
2705 int camera_start_preview(camera_h camera)
2706 {
2707         int ret = CAMERA_ERROR_NONE;
2708         int *fds = NULL;
2709         muse_camera_api_e api = MUSE_CAMERA_API_START_PREVIEW;
2710         camera_cli_s *pc = (camera_cli_s *)camera;
2711         camera_state_e current_state = CAMERA_STATE_NONE;
2712
2713         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2714
2715         CAM_LOG_INFO("Enter : preview format %d, display type %d",
2716                 pc->cb_info->preview_format, pc->cb_info->dp_info.type);
2717
2718         if (pc->cb_info->preview_format == CAMERA_PIXEL_FORMAT_INVZ &&
2719                 pc->cb_info->dp_info.type != CAMERA_DISPLAY_TYPE_NONE) {
2720                 CAM_LOG_ERROR("CAMERA_DISPLAY_TYPE_NONE[current %d] should be set with INVZ format",
2721                         pc->cb_info->dp_info.type);
2722                 return CAMERA_ERROR_INVALID_OPERATION;
2723         }
2724
2725         ret = camera_get_state(camera, &current_state);
2726         if (ret != CAMERA_ERROR_NONE) {
2727                 CAM_LOG_ERROR("failed to get current state 0x%x", ret);
2728                 return ret;
2729         }
2730
2731         if (current_state == CAMERA_STATE_CREATED) {
2732                 if (!__create_msg_handler_thread(&pc->cb_info->preview_cb_info,
2733                                 CAMERA_MESSAGE_HANDLER_TYPE_PREVIEW_CB, "cam:preview_cb", pc->cb_info)) {
2734                         CAM_LOG_ERROR("preview_cb_info failed");
2735                         return CAMERA_ERROR_INVALID_OPERATION;
2736                 }
2737
2738                 if (pc->cb_info->user_buffer_supported) {
2739                         if (!__camera_allocate_preview_buffer(camera)) {
2740                                 ret = CAMERA_ERROR_INVALID_OPERATION;
2741                                 goto _START_FAILED;
2742                         }
2743
2744                         fds = pc->cb_info->fds;
2745                 }
2746         }
2747
2748         _camera_msg_send(api, fds, pc->cb_info, &ret,
2749 #ifdef TIZEN_FEATURE_NO_TIMEOUT_FOR_PREVIEW
2750                 CAMERA_CB_NO_TIMEOUT);
2751 #else
2752                 (pc->cb_info->is_network ? CAMERA_CB_NETWORK_PREVIEW_TIMEOUT : CAMERA_CB_TIMEOUT));
2753 #endif
2754         if (ret != CAMERA_ERROR_NONE)
2755                 goto _START_FAILED;
2756
2757         if (pc->cb_info->is_evas_render) {
2758                 ret = _camera_start_evas_rendering(camera);
2759                 if (ret != CAMERA_ERROR_NONE) {
2760                         CAM_LOG_ERROR("stop preview because of error");
2761                         _camera_msg_send(MUSE_CAMERA_API_STOP_PREVIEW, NULL, pc->cb_info, NULL, 0);
2762                         goto _START_FAILED;
2763                 }
2764         }
2765
2766         CAM_LOG_INFO("done");
2767
2768         return CAMERA_ERROR_NONE;
2769
2770 _START_FAILED:
2771         if (current_state == CAMERA_STATE_CREATED) {
2772                 if (pc->cb_info->user_buffer_supported)
2773                         __camera_release_preview_buffer(camera);
2774
2775                 __destroy_msg_handler_thread(&pc->cb_info->preview_cb_info);
2776         }
2777
2778         CAM_LOG_ERROR("failed : 0x%x", ret);
2779
2780         return ret;
2781 }
2782
2783
2784 int camera_stop_preview(camera_h camera)
2785 {
2786         int ret = CAMERA_ERROR_NONE;
2787         camera_cli_s *pc = (camera_cli_s *)camera;
2788         muse_camera_api_e api = MUSE_CAMERA_API_STOP_PREVIEW;
2789         camera_state_e current_state = CAMERA_STATE_NONE;
2790
2791         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2792
2793         CAM_LOG_INFO("Enter");
2794
2795 //LCOV_EXCL_START
2796         if (pc->cb_info->is_evas_render) {
2797                 ret = camera_get_state(camera, &current_state);
2798                 if (ret != CAMERA_ERROR_NONE) {
2799                         CAM_LOG_ERROR("failed to get current state 0x%x", ret);
2800                         return ret;
2801                 }
2802
2803                 if (current_state == CAMERA_STATE_PREVIEW) {
2804                         ret = _camera_stop_evas_rendering(camera, false);
2805                         if (ret != CAMERA_ERROR_NONE)
2806                                 return ret;
2807                 }
2808         }
2809 //LCOV_EXCL_STOP
2810         /* send stop preview message */
2811         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2812
2813         if (ret == CAMERA_ERROR_NONE) {
2814                 if (pc->cb_info->user_buffer_supported)
2815                         __camera_release_preview_buffer(camera);
2816
2817                 /* release remained message for preview callback */
2818                 __destroy_msg_handler_thread(&pc->cb_info->preview_cb_info);
2819         } else if (current_state == CAMERA_STATE_PREVIEW) {
2820                 CAM_LOG_WARNING("restart evas rendering");
2821                 _camera_start_evas_rendering(camera);
2822         }
2823
2824         CAM_LOG_INFO("ret : 0x%x", ret);
2825
2826         return ret;
2827 }
2828
2829
2830 int camera_start_capture(camera_h camera, camera_capturing_cb capturing_cb, camera_capture_completed_cb completed_cb, void *user_data)
2831 {
2832         int ret = CAMERA_ERROR_NONE;
2833         camera_cli_s *pc = (camera_cli_s *)camera;
2834         muse_camera_api_e api = MUSE_CAMERA_API_START_CAPTURE;
2835
2836         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2837
2838         CAM_LOG_INFO("Enter");
2839
2840         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_CAPTURE] = capturing_cb;
2841         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_CAPTURE] = user_data;
2842
2843         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_CAPTURE_COMPLETE] = completed_cb;
2844         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_CAPTURE_COMPLETE] = user_data;
2845
2846         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2847
2848         CAM_LOG_INFO("ret : 0x%x", ret);
2849
2850         return ret;
2851 }
2852
2853
2854 bool camera_is_supported_continuous_capture(camera_h camera)
2855 {
2856         return __is_supported(camera, MUSE_CAMERA_API_SUPPORT_CONTINUOUS_CAPTURE);
2857 }
2858
2859
2860 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)
2861 {
2862         int ret = CAMERA_ERROR_NONE;
2863         camera_cli_s *pc = (camera_cli_s *)camera;
2864         muse_camera_api_e api = MUSE_CAMERA_API_START_CONTINUOUS_CAPTURE;
2865         camera_msg_param param;
2866         int value = 0;
2867
2868         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2869
2870         CAM_LOG_INFO("Enter");
2871
2872         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_CAPTURE] = capturing_cb;
2873         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_CAPTURE] = user_data;
2874
2875         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_CAPTURE_COMPLETE] = completed_cb;
2876         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_CAPTURE_COMPLETE] = user_data;
2877
2878         value = (count << 16) | interval;
2879         CAMERA_MSG_PARAM_SET(param, INT, value);
2880
2881         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
2882
2883         CAM_LOG_INFO("ret : 0x%x", ret);
2884
2885         return ret;
2886 }
2887
2888
2889 int camera_stop_continuous_capture(camera_h camera)
2890 {
2891         int ret = CAMERA_ERROR_NONE;
2892         camera_cli_s *pc = (camera_cli_s *)camera;
2893         muse_camera_api_e api = MUSE_CAMERA_API_STOP_CONTINUOUS_CAPTURE;
2894
2895         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2896
2897         CAM_LOG_INFO("Enter");
2898
2899         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2900
2901         CAM_LOG_INFO("ret : 0x%x", ret);
2902
2903         return ret;
2904 }
2905
2906
2907 bool camera_is_supported_face_detection(camera_h camera)
2908 {
2909         return __is_supported(camera, MUSE_CAMERA_API_SUPPORT_FACE_DETECTION);
2910 }
2911
2912
2913 bool camera_is_supported_zero_shutter_lag(camera_h camera)
2914 {
2915         return __is_supported(camera, MUSE_CAMERA_API_SUPPORT_ZERO_SHUTTER_LAG);
2916 }
2917
2918
2919 bool camera_is_supported_media_packet_preview_cb(camera_h camera)
2920 {
2921         return __is_supported(camera, MUSE_CAMERA_API_SUPPORT_MEDIA_PACKET_PREVIEW_CB);
2922 }
2923
2924
2925 bool camera_is_supported_extra_preview(camera_h camera)
2926 {
2927         return __is_supported(camera, MUSE_CAMERA_API_SUPPORT_EXTRA_PREVIEW);
2928 }
2929
2930
2931 int camera_get_device_count(camera_h camera, int *device_count)
2932 {
2933         int ret = CAMERA_ERROR_NONE;
2934         camera_cli_s *pc = (camera_cli_s *)camera;
2935         muse_camera_api_e api = MUSE_CAMERA_API_GET_DEVICE_COUNT;
2936
2937         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2938
2939         CAM_LOG_INFO("Enter");
2940
2941         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2942
2943         if (ret == CAMERA_ERROR_NONE)
2944                 *device_count = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DEVICE_COUNT];
2945
2946         CAM_LOG_INFO("ret : 0x%x", ret);
2947
2948         return ret;
2949 }
2950
2951 int camera_start_face_detection(camera_h camera, camera_face_detected_cb callback, void *user_data)
2952 {
2953         int ret = CAMERA_ERROR_NONE;
2954         camera_cli_s *pc = (camera_cli_s *)camera;
2955         muse_camera_api_e api = MUSE_CAMERA_API_START_FACE_DETECTION;
2956
2957         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2958
2959         CAM_LOG_INFO("Enter");
2960
2961         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2962
2963         if (ret == CAMERA_ERROR_NONE) {
2964                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]);
2965
2966                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION] = callback;
2967                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION] = user_data;
2968
2969                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]);
2970         }
2971
2972         CAM_LOG_INFO("ret : 0x%x", ret);
2973
2974         return ret;
2975 }
2976
2977 int camera_stop_face_detection(camera_h camera)
2978 {
2979         int ret = CAMERA_ERROR_NONE;
2980         camera_cli_s *pc = (camera_cli_s *)camera;
2981         muse_camera_api_e api = MUSE_CAMERA_API_STOP_FACE_DETECTION;
2982
2983         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
2984
2985         CAM_LOG_INFO("Enter");
2986
2987         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
2988
2989         if (ret == CAMERA_ERROR_NONE) {
2990                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]);
2991
2992                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION] = NULL;
2993                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION] = NULL;
2994
2995                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FACE_DETECTION]);
2996         }
2997
2998         CAM_LOG_INFO("ret : 0x%x", ret);
2999
3000         return ret;
3001 }
3002
3003 int camera_get_state(camera_h camera, camera_state_e *state)
3004 {
3005         int ret = CAMERA_ERROR_NONE;
3006         camera_cli_s *pc = (camera_cli_s *)camera;
3007         muse_camera_api_e api = MUSE_CAMERA_API_GET_STATE;
3008
3009         if (!pc || !pc->cb_info || !state) {
3010                 CAM_LOG_ERROR("NULL pointer %p %p", pc, state);
3011                 return CAMERA_ERROR_INVALID_PARAMETER;
3012         }
3013
3014         CAM_LOG_INFO("Enter");
3015
3016         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3017
3018         if (ret == CAMERA_ERROR_NONE)
3019                 *state = (camera_state_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_STATE];
3020
3021         CAM_LOG_INFO("ret : 0x%x", ret);
3022
3023         return ret;
3024 }
3025
3026 int camera_start_focusing(camera_h camera, bool continuous)
3027 {
3028         int ret = CAMERA_ERROR_NONE;
3029         camera_cli_s *pc = (camera_cli_s *)camera;
3030         muse_camera_api_e api = MUSE_CAMERA_API_START_FOCUSING;
3031         camera_msg_param param;
3032         int is_continuous = (int)continuous;
3033
3034         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3035
3036         CAM_LOG_INFO("Enter");
3037
3038         CAMERA_MSG_PARAM_SET(param, INT, is_continuous);
3039
3040         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3041
3042         CAM_LOG_INFO("ret : 0x%x", ret);
3043
3044         return ret;
3045 }
3046
3047 int camera_cancel_focusing(camera_h camera)
3048 {
3049         int ret = CAMERA_ERROR_NONE;
3050         camera_cli_s *pc = (camera_cli_s *)camera;
3051         muse_camera_api_e api = MUSE_CAMERA_API_CANCEL_FOCUSING;
3052
3053         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3054
3055         CAM_LOG_INFO("Enter, remote_handle : %td", pc->remote_handle);
3056
3057         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3058
3059         CAM_LOG_INFO("ret : 0x%x", ret);
3060
3061         return ret;
3062 }
3063
3064
3065 int _camera_set_display(camera_h camera, mm_display_type_e type, void *display)
3066 {
3067         int mm_ret = MM_ERROR_NONE;
3068         int ret = CAMERA_ERROR_NONE;
3069         camera_cli_s *pc = (camera_cli_s *)camera;
3070         camera_cb_info_s *cb_info = NULL;
3071         camera_state_e current_state = CAMERA_STATE_NONE;
3072         camera_msg_param param;
3073         muse_camera_api_e api = MUSE_CAMERA_API_SET_DISPLAY;
3074         muse_camera_display_info_s *dp_info = NULL;
3075
3076         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3077
3078         if (type > MM_DISPLAY_TYPE_OVERLAY_EXT) {
3079                 CAM_LOG_ERROR("invalid type %d", type);
3080                 return CAMERA_ERROR_INVALID_PARAMETER;
3081         }
3082
3083         if (type != MM_DISPLAY_TYPE_NONE && display == NULL) {
3084                 CAM_LOG_ERROR("display type[%d] is not NONE, but display handle is NULL", type);
3085                 return CAMERA_ERROR_INVALID_PARAMETER;
3086         }
3087
3088         cb_info = (camera_cb_info_s *)pc->cb_info;
3089         dp_info = &cb_info->dp_info;
3090
3091         ret = camera_get_state(camera, &current_state);
3092         if (ret != CAMERA_ERROR_NONE) {
3093                 CAM_LOG_ERROR("failed to get current state 0x%x", ret);
3094                 return ret;
3095         }
3096
3097         if (current_state != CAMERA_STATE_CREATED) {
3098                 CAM_LOG_ERROR("INVALID_STATE : current %d", current_state);
3099                 return CAMERA_ERROR_INVALID_STATE;
3100         }
3101
3102         CAM_LOG_INFO("Enter - type : %d, display : %p", type, display);
3103
3104         if (type != MM_DISPLAY_TYPE_NONE) {
3105                 /* check display interface handle */
3106                 if (!cb_info->dp_interface) {
3107                         CAM_LOG_ERROR("display interface not supported");
3108                         return CAMERA_ERROR_NOT_SUPPORTED;
3109                 }
3110
3111                 mm_ret = mm_display_interface_set_display(cb_info->dp_interface, type, display, &dp_info->parent_id);
3112                 if (mm_ret == (int)MM_ERROR_NOT_SUPPORT_API) {
3113                         CAM_LOG_ERROR("[NOT_SUPPORTED] type %d", type);
3114                         return CAMERA_ERROR_NOT_SUPPORTED;
3115                 } else if (mm_ret != MM_ERROR_NONE) {
3116                         CAM_LOG_ERROR("[INVALID_OPERATION] set display failed[0x%x]", mm_ret);
3117                         return CAMERA_ERROR_INVALID_OPERATION;
3118                 }
3119
3120                 if (type == MM_DISPLAY_TYPE_OVERLAY || type == MM_DISPLAY_TYPE_OVERLAY_EXT) {
3121                         mm_ret = mm_display_interface_get_window_rect(cb_info->dp_interface, &dp_info->window_rect);
3122
3123                         CAM_LOG_INFO("ret 0x%x, parent_id %d, window rect %d,%d,%dx%d",
3124                                 ret, dp_info->parent_id, dp_info->window_rect.x, dp_info->window_rect.y,
3125                                 dp_info->window_rect.width, dp_info->window_rect.height);
3126                 } else if (type == MM_DISPLAY_TYPE_EVAS) {
3127 //LCOV_EXCL_START
3128                         camera_flip_e flip = CAMERA_FLIP_NONE;
3129                         camera_display_mode_e mode = CAMERA_DISPLAY_MODE_LETTER_BOX;
3130                         camera_rotation_e rotation = CAMERA_ROTATION_NONE;
3131                         bool visible = 0;
3132                         int x = 0;
3133                         int y = 0;
3134                         int width = 0;
3135                         int height = 0;
3136
3137                         camera_get_display_flip(camera, &flip);
3138                         camera_get_display_mode(camera, &mode);
3139                         camera_get_display_rotation(camera, &rotation);
3140                         camera_is_display_visible(camera, &visible);
3141
3142                         CAM_LOG_INFO("current setting : flip %d, mode %d, rotation %d, visible %d",
3143                                 flip, mode, rotation, visible);
3144
3145                         mm_ret = mm_display_interface_evas_set_flip(cb_info->dp_interface, flip);
3146                         mm_ret |= mm_display_interface_evas_set_mode(cb_info->dp_interface, mode);
3147                         mm_ret |= mm_display_interface_evas_set_rotation(cb_info->dp_interface, rotation);
3148                         mm_ret |= mm_display_interface_evas_set_visible(cb_info->dp_interface, visible);
3149
3150                         if (mode == CAMERA_DISPLAY_MODE_CUSTOM_ROI) {
3151                                 camera_attr_get_display_roi_area(camera, &x, &y, &width, &height);
3152                                 CAM_LOG_INFO("current setting : roi %d,%d,%dx%d", x, y, width, height);
3153                                 mm_ret |= mm_display_interface_evas_set_roi_area(cb_info->dp_interface, x, y, width, height);
3154                         }
3155 //LCOV_EXCL_STOP
3156                 }
3157         }
3158
3159         if (mm_ret != MM_ERROR_NONE) {
3160                 CAM_LOG_ERROR("mm_ret 0x%x failed", mm_ret);
3161                 return CAMERA_ERROR_INVALID_OPERATION;
3162         }
3163
3164         dp_info->type = type;
3165
3166         CAMERA_MSG_PARAM_SET_ARRAY(param, ARRAY, dp_info, sizeof(muse_camera_display_info_s));
3167
3168         _camera_msg_send_param1(api, cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3169
3170         if (ret == CAMERA_ERROR_NONE)
3171                 cb_info->is_evas_render = (type == MM_DISPLAY_TYPE_EVAS) ? TRUE : FALSE;
3172
3173         return ret;
3174 }
3175
3176
3177 int camera_set_display(camera_h camera, camera_display_type_e type, camera_display_h display)
3178 {
3179         CAM_LOG_INFO("type %d, display %p", type, display);
3180         return _camera_set_display(camera, (mm_display_type_e)type, display);
3181 }
3182
3183
3184 int camera_set_preview_resolution(camera_h camera, int width, int height)
3185 {
3186         int ret = CAMERA_ERROR_NONE;
3187         camera_state_e current_state = CAMERA_STATE_NONE;
3188         camera_cli_s *pc = (camera_cli_s *)camera;
3189         muse_camera_api_e api = MUSE_CAMERA_API_SET_PREVIEW_RESOLUTION;
3190         camera_msg_param param;
3191         int value = 0;
3192
3193         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3194
3195         if (pc->cb_info->is_evas_render) {
3196                 ret = camera_get_state(camera, &current_state);
3197                 if (ret != CAMERA_ERROR_NONE) {
3198                         CAM_LOG_ERROR("failed to get current state 0x%x", ret);
3199                         return ret;
3200                 }
3201
3202                 if (current_state == CAMERA_STATE_PREVIEW) {
3203                         ret = _camera_stop_evas_rendering(camera, true);
3204                         if (ret != CAMERA_ERROR_NONE)
3205                                 return ret;
3206                 }
3207         }
3208
3209         value = (width << 16) | height;
3210         CAMERA_MSG_PARAM_SET(param, INT, value);
3211
3212         CAM_LOG_INFO("%dx%d -> 0x%x", width, height, value);
3213
3214         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3215
3216         CAM_LOG_INFO("ret : 0x%x", ret);
3217
3218         if (current_state == CAMERA_STATE_PREVIEW) {
3219                 CAM_LOG_WARNING("restart evas rendering");
3220                 _camera_start_evas_rendering(camera);
3221         }
3222
3223         return ret;
3224 }
3225
3226
3227 int camera_set_capture_resolution(camera_h camera, int width, int height)
3228 {
3229         int ret = CAMERA_ERROR_NONE;
3230         camera_cli_s *pc = (camera_cli_s *)camera;
3231         muse_camera_api_e api = MUSE_CAMERA_API_SET_CAPTURE_RESOLUTION;
3232         camera_msg_param param;
3233         int value = 0;
3234
3235         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3236
3237         CAM_LOG_INFO("Enter");
3238
3239         value = (width << 16) | height;
3240         CAMERA_MSG_PARAM_SET(param, INT, value);
3241
3242         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3243
3244         CAM_LOG_INFO("ret : 0x%x", ret);
3245
3246         return ret;
3247 }
3248
3249
3250 int camera_set_capture_format(camera_h camera, camera_pixel_format_e format)
3251 {
3252         int ret = CAMERA_ERROR_NONE;
3253         int set_format = (int)format;
3254         camera_cli_s *pc = (camera_cli_s *)camera;
3255         muse_camera_api_e api = MUSE_CAMERA_API_SET_CAPTURE_FORMAT;
3256         camera_msg_param param;
3257
3258         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3259
3260         CAM_LOG_INFO("Enter - format %d", set_format);
3261
3262         CAMERA_MSG_PARAM_SET(param, INT, set_format);
3263
3264         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3265
3266         CAM_LOG_INFO("ret : 0x%x", ret);
3267
3268         return ret;
3269 }
3270
3271
3272 int camera_set_preview_format(camera_h camera, camera_pixel_format_e format)
3273 {
3274         int ret = CAMERA_ERROR_NONE;
3275         int set_format = (int)format;
3276         camera_msg_param param;
3277         camera_cli_s *pc = (camera_cli_s *)camera;
3278         muse_camera_api_e api = MUSE_CAMERA_API_SET_PREVIEW_FORMAT;
3279
3280         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3281
3282         CAM_LOG_INFO("Enter - format %d", set_format);
3283
3284         CAMERA_MSG_PARAM_SET(param, INT, set_format);
3285
3286         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3287
3288         if (ret == CAMERA_ERROR_NONE)
3289                 pc->cb_info->preview_format = set_format;
3290
3291         CAM_LOG_INFO("ret : 0x%x", ret);
3292
3293         return ret;
3294 }
3295
3296
3297 int camera_get_preview_resolution(camera_h camera, int *width, int *height)
3298 {
3299         int ret = CAMERA_ERROR_NONE;
3300         camera_cli_s *pc = (camera_cli_s *)camera;
3301         muse_camera_api_e api = MUSE_CAMERA_API_GET_PREVIEW_RESOLUTION;
3302
3303         if (!pc || !pc->cb_info || !width || !height) {
3304                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, width, height);
3305                 return CAMERA_ERROR_INVALID_PARAMETER;
3306         }
3307
3308         CAM_LOG_INFO("Enter");
3309
3310         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3311
3312         if (ret == CAMERA_ERROR_NONE) {
3313                 *width = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_PREVIEW_RESOLUTION] >> 16;
3314                 *height = 0x0000ffff & pc->cb_info->get_int[MUSE_CAMERA_GET_INT_PREVIEW_RESOLUTION];
3315         }
3316
3317         CAM_LOG_INFO("ret : 0x%x", ret);
3318
3319         return ret;
3320 }
3321
3322
3323 int camera_set_display_rotation(camera_h camera, camera_rotation_e rotation)
3324 {
3325         int ret = CAMERA_ERROR_NONE;
3326         int set_rotation = (int)rotation;
3327         camera_cli_s *pc = (camera_cli_s *)camera;
3328         camera_msg_param param;
3329
3330         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3331
3332         if (pc->cb_info->is_evas_render) {
3333                 ret = mm_display_interface_evas_set_rotation(pc->cb_info->dp_interface, rotation);
3334                 if (ret != MM_ERROR_NONE) {
3335                         CAM_LOG_ERROR("failed to set rotation for evas surface 0x%x", ret);
3336                         return CAMERA_ERROR_INVALID_OPERATION;
3337                 }
3338         }
3339
3340         CAMERA_MSG_PARAM_SET(param, INT, set_rotation);
3341
3342         _camera_msg_send_param1(MUSE_CAMERA_API_SET_DISPLAY_ROTATION, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3343
3344         return ret;
3345 }
3346
3347
3348 int camera_get_display_rotation(camera_h camera, camera_rotation_e *rotation)
3349 {
3350         int ret = CAMERA_ERROR_NONE;
3351         camera_cli_s *pc = (camera_cli_s *)camera;
3352
3353         if (!pc || !pc->cb_info || !rotation) {
3354                 CAM_LOG_ERROR("NULL pointer %p %p", pc, rotation);
3355                 return CAMERA_ERROR_INVALID_PARAMETER;
3356         }
3357
3358         _camera_msg_send(MUSE_CAMERA_API_GET_DISPLAY_ROTATION, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3359
3360         if (ret == CAMERA_ERROR_NONE)
3361                 *rotation = (camera_rotation_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DISPLAY_ROTATION];
3362
3363         return ret;
3364 }
3365
3366
3367 int camera_set_display_flip(camera_h camera, camera_flip_e flip)
3368 {
3369         int ret = CAMERA_ERROR_NONE;
3370         int set_flip = (int)flip;
3371         camera_cli_s *pc = (camera_cli_s *)camera;
3372         camera_msg_param param;
3373
3374         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3375
3376         if (pc->cb_info->is_evas_render) {
3377                 ret = mm_display_interface_evas_set_flip(pc->cb_info->dp_interface, flip);
3378                 if (ret != MM_ERROR_NONE) {
3379                         CAM_LOG_ERROR("failed to set flip for evas surface 0x%x", ret);
3380                         return CAMERA_ERROR_INVALID_OPERATION;
3381                 }
3382         }
3383
3384         CAMERA_MSG_PARAM_SET(param, INT, set_flip);
3385
3386         _camera_msg_send_param1(MUSE_CAMERA_API_SET_DISPLAY_FLIP, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3387
3388         return ret;
3389 }
3390
3391
3392 int camera_get_display_flip(camera_h camera, camera_flip_e *flip)
3393 {
3394         int ret = CAMERA_ERROR_NONE;
3395         camera_cli_s *pc = (camera_cli_s *)camera;
3396
3397         if (!pc || !pc->cb_info || !flip) {
3398                 CAM_LOG_ERROR("NULL pointer %p %p", pc, flip);
3399                 return CAMERA_ERROR_INVALID_PARAMETER;
3400         }
3401
3402         _camera_msg_send(MUSE_CAMERA_API_GET_DISPLAY_FLIP, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3403
3404         if (ret == CAMERA_ERROR_NONE)
3405                 *flip = (camera_flip_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DISPLAY_FLIP];
3406
3407         return ret;
3408 }
3409
3410
3411 int camera_set_display_visible(camera_h camera, bool visible)
3412 {
3413         int ret = CAMERA_ERROR_NONE;
3414         int set_visible = (int)visible;
3415         camera_cli_s *pc = (camera_cli_s *)camera;
3416         camera_msg_param param;
3417
3418         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3419
3420         if (pc->cb_info->is_evas_render) {
3421                 ret = mm_display_interface_evas_set_visible(pc->cb_info->dp_interface, visible);
3422                 if (ret != MM_ERROR_NONE) {
3423                         CAM_LOG_ERROR("failed to set visible for evas surface 0x%x", ret);
3424                         return CAMERA_ERROR_INVALID_OPERATION;
3425                 }
3426         }
3427
3428         CAMERA_MSG_PARAM_SET(param, INT, set_visible);
3429
3430         _camera_msg_send_param1(MUSE_CAMERA_API_SET_DISPLAY_VISIBLE, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3431
3432         return ret;
3433 }
3434
3435
3436 int camera_is_display_visible(camera_h camera, bool *visible)
3437 {
3438         int ret = CAMERA_ERROR_NONE;
3439         camera_cli_s *pc = (camera_cli_s *)camera;
3440
3441         if (!pc || !pc->cb_info || !visible) {
3442                 CAM_LOG_ERROR("NULL pointer %p %p", pc, visible);
3443                 return CAMERA_ERROR_INVALID_PARAMETER;
3444         }
3445
3446         _camera_msg_send(MUSE_CAMERA_API_IS_DISPLAY_VISIBLE, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3447
3448         if (ret == CAMERA_ERROR_NONE)
3449                 *visible = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DISPLAY_VISIBLE];
3450
3451         return ret;
3452 }
3453
3454
3455 int camera_set_display_mode(camera_h camera, camera_display_mode_e mode)
3456 {
3457         int ret = CAMERA_ERROR_NONE;
3458         int set_mode = (int)mode;
3459         camera_cli_s *pc = (camera_cli_s *)camera;
3460         camera_msg_param param;
3461
3462         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3463
3464         if (pc->cb_info->is_evas_render) {
3465                 ret = mm_display_interface_evas_set_mode(pc->cb_info->dp_interface, mode);
3466                 if (ret != MM_ERROR_NONE) {
3467                         CAM_LOG_ERROR("failed to set geometry for evas surface 0x%x", ret);
3468                         return CAMERA_ERROR_INVALID_OPERATION;
3469                 }
3470         }
3471
3472         CAMERA_MSG_PARAM_SET(param, INT, set_mode);
3473
3474         _camera_msg_send_param1(MUSE_CAMERA_API_SET_DISPLAY_MODE, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3475
3476         return ret;
3477 }
3478
3479
3480 int camera_get_display_mode(camera_h camera, camera_display_mode_e *mode)
3481 {
3482         int ret = CAMERA_ERROR_NONE;
3483         camera_cli_s *pc = (camera_cli_s *)camera;
3484
3485         if (!pc || !pc->cb_info || !mode) {
3486                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
3487                 return CAMERA_ERROR_INVALID_PARAMETER;
3488         }
3489
3490         _camera_msg_send(MUSE_CAMERA_API_GET_DISPLAY_MODE, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3491
3492         if (ret == CAMERA_ERROR_NONE)
3493                 *mode = (camera_display_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DISPLAY_MODE];
3494
3495         return ret;
3496 }
3497
3498
3499 int camera_set_display_reuse_hint(camera_h camera, bool hint)
3500 {
3501         int ret = CAMERA_ERROR_NONE;
3502         int set_hint = (int)hint;
3503         camera_cli_s *pc = (camera_cli_s *)camera;
3504         camera_msg_param param;
3505
3506         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3507
3508         CAM_LOG_INFO("Enter - hint %d", set_hint);
3509
3510         CAMERA_MSG_PARAM_SET(param, INT, set_hint);
3511
3512         _camera_msg_send_param1(MUSE_CAMERA_API_SET_DISPLAY_REUSE_HINT, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
3513
3514         return ret;
3515 }
3516
3517
3518 int camera_get_display_reuse_hint(camera_h camera, bool *hint)
3519 {
3520         int ret = CAMERA_ERROR_NONE;
3521         camera_cli_s *pc = (camera_cli_s *)camera;
3522         muse_camera_api_e api = MUSE_CAMERA_API_GET_DISPLAY_REUSE_HINT;
3523
3524         if (!pc || !pc->cb_info || !hint) {
3525                 CAM_LOG_ERROR("NULL pointer %p %p", pc, hint);
3526                 return CAMERA_ERROR_INVALID_PARAMETER;
3527         }
3528
3529         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3530
3531         if (ret == CAMERA_ERROR_NONE) {
3532                 *hint = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_DISPLAY_REUSE_HINT];
3533                 CAM_LOG_INFO("display reuse hint %d", *hint);
3534         }
3535
3536         return ret;
3537 }
3538
3539
3540 int camera_get_capture_resolution(camera_h camera, int *width, int *height)
3541 {
3542         int ret = CAMERA_ERROR_NONE;
3543         camera_cli_s *pc = (camera_cli_s *)camera;
3544         muse_camera_api_e api = MUSE_CAMERA_API_GET_CAPTURE_RESOLUTION;
3545
3546         if (!pc || !pc->cb_info || !width || !height) {
3547                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, width, height);
3548                 return CAMERA_ERROR_INVALID_PARAMETER;
3549         }
3550
3551         CAM_LOG_INFO("Enter");
3552
3553         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3554
3555         if (ret == CAMERA_ERROR_NONE) {
3556                 *width = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_CAPTURE_RESOLUTION] >> 16;
3557                 *height = 0x0000ffff & pc->cb_info->get_int[MUSE_CAMERA_GET_INT_CAPTURE_RESOLUTION];
3558         }
3559
3560         CAM_LOG_INFO("ret : 0x%x", ret);
3561
3562         return ret;
3563 }
3564
3565
3566 int camera_get_capture_format(camera_h camera, camera_pixel_format_e *format)
3567 {
3568         int ret = CAMERA_ERROR_NONE;
3569         camera_cli_s *pc = (camera_cli_s *)camera;
3570         muse_camera_api_e api = MUSE_CAMERA_API_GET_CAPTURE_FORMAT;
3571
3572         if (!pc || !pc->cb_info || !format) {
3573                 CAM_LOG_ERROR("NULL pointer %p %p", pc, format);
3574                 return CAMERA_ERROR_INVALID_PARAMETER;
3575         }
3576
3577         CAM_LOG_INFO("Enter");
3578
3579         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3580
3581         if (ret == CAMERA_ERROR_NONE)
3582                 *format = (camera_pixel_format_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_CAPTURE_FORMAT];
3583
3584         CAM_LOG_INFO("ret : 0x%x", ret);
3585
3586         return ret;
3587 }
3588
3589
3590 int camera_get_preview_format(camera_h camera, camera_pixel_format_e *format)
3591 {
3592         int ret = CAMERA_ERROR_NONE;
3593         camera_cli_s *pc = (camera_cli_s *)camera;
3594         muse_camera_api_e api = MUSE_CAMERA_API_GET_PREVIEW_FORMAT;
3595
3596         if (!pc || !pc->cb_info || !format) {
3597                 CAM_LOG_ERROR("NULL pointer %p %p", pc, format);
3598                 return CAMERA_ERROR_INVALID_PARAMETER;
3599         }
3600
3601         CAM_LOG_INFO("Enter");
3602
3603         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3604
3605         if (ret == CAMERA_ERROR_NONE)
3606                 *format = (camera_pixel_format_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_PREVIEW_FORMAT];
3607
3608         CAM_LOG_INFO("ret : 0x%x", ret);
3609
3610         return ret;
3611 }
3612
3613
3614 int camera_get_facing_direction(camera_h camera, camera_facing_direction_e *facing_direction)
3615 {
3616         int ret = CAMERA_ERROR_NONE;
3617         camera_cli_s *pc = (camera_cli_s *)camera;
3618         muse_camera_api_e api = MUSE_CAMERA_API_GET_FACING_DIRECTION;
3619
3620         if (!pc || !pc->cb_info || !facing_direction) {
3621                 CAM_LOG_ERROR("NULL pointer %p %p", pc, facing_direction);
3622                 return CAMERA_ERROR_INVALID_PARAMETER;
3623         }
3624
3625         CAM_LOG_INFO("Enter");
3626
3627         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3628
3629         if (ret == CAMERA_ERROR_NONE)
3630                 *facing_direction = (camera_facing_direction_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_FACING_DIRECTION];
3631
3632         CAM_LOG_INFO("ret : 0x%x", ret);
3633
3634         return ret;
3635 }
3636
3637
3638 int camera_set_preview_cb(camera_h camera, camera_preview_cb callback, void *user_data)
3639 {
3640         int ret = CAMERA_ERROR_NONE;
3641         camera_cli_s *pc = (camera_cli_s *)camera;
3642         muse_camera_api_e api = MUSE_CAMERA_API_SET_PREVIEW_CB;
3643
3644         if (!pc || !pc->cb_info || !callback) {
3645                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
3646                 return CAMERA_ERROR_INVALID_PARAMETER;
3647         }
3648
3649         CAM_LOG_INFO("Enter");
3650
3651         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3652
3653         if (ret == CAMERA_ERROR_NONE) {
3654                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_PREVIEW]);
3655
3656                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_PREVIEW] = callback;
3657                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_PREVIEW] = user_data;
3658
3659                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_PREVIEW]);
3660         }
3661
3662         CAM_LOG_INFO("ret : 0x%x", ret);
3663
3664         return ret;
3665 }
3666
3667
3668 int camera_unset_preview_cb(camera_h camera)
3669 {
3670         int ret = CAMERA_ERROR_NONE;
3671         camera_cli_s *pc = (camera_cli_s *)camera;
3672         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_PREVIEW_CB;
3673
3674         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3675
3676         CAM_LOG_INFO("Enter");
3677
3678         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3679
3680         if (ret == CAMERA_ERROR_NONE) {
3681                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_PREVIEW]);
3682
3683                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_PREVIEW] = NULL;
3684                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_PREVIEW] = NULL;
3685
3686                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_PREVIEW]);
3687         }
3688
3689         CAM_LOG_INFO("ret : 0x%x", ret);
3690
3691         return ret;
3692 }
3693
3694
3695 int camera_set_media_packet_preview_cb(camera_h camera, camera_media_packet_preview_cb callback, void *user_data)
3696 {
3697         int ret = CAMERA_ERROR_NONE;
3698         camera_cli_s *pc = (camera_cli_s *)camera;
3699         muse_camera_api_e api = MUSE_CAMERA_API_SET_MEDIA_PACKET_PREVIEW_CB;
3700
3701         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3702
3703         if (camera_is_supported_media_packet_preview_cb(camera) == false) {
3704                 CAM_LOG_ERROR("NOT SUPPORTED");
3705                 return CAMERA_ERROR_NOT_SUPPORTED;
3706         }
3707
3708         if (callback == NULL) {
3709                 CAM_LOG_ERROR("NULL callback");
3710                 return CAMERA_ERROR_INVALID_PARAMETER;
3711         }
3712
3713         CAM_LOG_INFO("Enter");
3714
3715         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3716
3717         if (ret == CAMERA_ERROR_NONE) {
3718                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]);
3719
3720                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW] = callback;
3721                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW] = user_data;
3722
3723                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]);
3724         }
3725
3726         CAM_LOG_INFO("ret : 0x%x", ret);
3727
3728         return ret;
3729 }
3730
3731
3732 int camera_unset_media_packet_preview_cb(camera_h camera)
3733 {
3734         int ret = CAMERA_ERROR_NONE;
3735         camera_cli_s *pc = (camera_cli_s *)camera;
3736         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_MEDIA_PACKET_PREVIEW_CB;
3737
3738         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3739
3740         if (camera_is_supported_media_packet_preview_cb(camera) == false) {
3741                 CAM_LOG_ERROR("NOT SUPPORTED");
3742                 return CAMERA_ERROR_NOT_SUPPORTED;
3743         }
3744
3745         CAM_LOG_INFO("Enter");
3746
3747         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3748
3749         if (ret == CAMERA_ERROR_NONE) {
3750                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]);
3751
3752                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW] = NULL;
3753                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW] = NULL;
3754
3755                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_MEDIA_PACKET_PREVIEW]);
3756         }
3757
3758         CAM_LOG_INFO("ret : 0x%x", ret);
3759
3760         return ret;
3761 }
3762
3763
3764 int camera_set_state_changed_cb(camera_h camera, camera_state_changed_cb callback, void *user_data)
3765 {
3766         int ret = CAMERA_ERROR_NONE;
3767         camera_cli_s *pc = (camera_cli_s *)camera;
3768         muse_camera_api_e api = MUSE_CAMERA_API_SET_STATE_CHANGED_CB;
3769
3770         if (!pc || !pc->cb_info || !callback) {
3771                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
3772                 return CAMERA_ERROR_INVALID_PARAMETER;
3773         }
3774
3775         CAM_LOG_INFO("Enter");
3776
3777         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3778
3779         if (ret == CAMERA_ERROR_NONE) {
3780                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE]);
3781
3782                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE] = callback;
3783                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE] = user_data;
3784
3785                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE]);
3786         }
3787
3788         CAM_LOG_INFO("ret : 0x%x", ret);
3789
3790         return ret;
3791 }
3792
3793
3794 int camera_unset_state_changed_cb(camera_h camera)
3795 {
3796         int ret = CAMERA_ERROR_NONE;
3797         camera_cli_s *pc = (camera_cli_s *)camera;
3798         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_STATE_CHANGED_CB;
3799
3800         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3801
3802         CAM_LOG_INFO("Enter");
3803
3804         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3805
3806         if (ret == CAMERA_ERROR_NONE) {
3807                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE]);
3808
3809                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE] = NULL;
3810                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE] = NULL;
3811
3812                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_STATE_CHANGE]);
3813         }
3814
3815         CAM_LOG_INFO("ret : 0x%x", ret);
3816
3817         return ret;
3818 }
3819
3820
3821 int camera_set_interrupted_cb(camera_h camera, camera_interrupted_cb callback, void *user_data)
3822 {
3823         int ret = CAMERA_ERROR_NONE;
3824         camera_cli_s *pc = (camera_cli_s *)camera;
3825         muse_camera_api_e api = MUSE_CAMERA_API_SET_INTERRUPTED_CB;
3826
3827         if (!pc || !pc->cb_info || !callback) {
3828                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
3829                 return CAMERA_ERROR_INVALID_PARAMETER;
3830         }
3831
3832         CAM_LOG_INFO("Enter");
3833
3834         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3835
3836         if (ret == CAMERA_ERROR_NONE) {
3837                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED]);
3838
3839                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED] = callback;
3840                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED] = user_data;
3841
3842                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED]);
3843         }
3844
3845         CAM_LOG_INFO("ret : 0x%x", ret);
3846
3847         return ret;
3848 }
3849
3850
3851 int camera_unset_interrupted_cb(camera_h camera)
3852 {
3853         int ret = CAMERA_ERROR_NONE;
3854         camera_cli_s *pc = (camera_cli_s *)camera;
3855         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_INTERRUPTED_CB;
3856
3857         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3858
3859         CAM_LOG_INFO("Enter");
3860
3861         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3862
3863         if (ret == CAMERA_ERROR_NONE) {
3864                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED]);
3865
3866                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED] = NULL;
3867                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED] = NULL;
3868
3869                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPTED]);
3870         }
3871
3872         CAM_LOG_INFO("ret : 0x%x", ret);
3873
3874         return ret;
3875 }
3876
3877
3878 int camera_set_interrupt_started_cb(camera_h camera, camera_interrupt_started_cb callback, void *user_data)
3879 {
3880         int ret = CAMERA_ERROR_NONE;
3881         camera_cli_s *pc = (camera_cli_s *)camera;
3882         muse_camera_api_e api = MUSE_CAMERA_API_SET_INTERRUPT_STARTED_CB;
3883
3884         if (!pc || !pc->cb_info || !callback) {
3885                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
3886                 return CAMERA_ERROR_INVALID_PARAMETER;
3887         }
3888
3889         CAM_LOG_INFO("Enter");
3890
3891         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3892
3893         if (ret == CAMERA_ERROR_NONE) {
3894                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED]);
3895
3896                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED] = callback;
3897                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED] = user_data;
3898
3899                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED]);
3900         }
3901
3902         CAM_LOG_INFO("ret : 0x%x", ret);
3903
3904         return ret;
3905 }
3906
3907
3908 int camera_unset_interrupt_started_cb(camera_h camera)
3909 {
3910         int ret = CAMERA_ERROR_NONE;
3911         camera_cli_s *pc = (camera_cli_s *)camera;
3912         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_INTERRUPT_STARTED_CB;
3913
3914         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3915
3916         CAM_LOG_INFO("Enter");
3917
3918         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3919
3920         if (ret == CAMERA_ERROR_NONE) {
3921                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED]);
3922
3923                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED] = NULL;
3924                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED] = NULL;
3925
3926                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_INTERRUPT_STARTED]);
3927         }
3928
3929         CAM_LOG_INFO("ret : 0x%x", ret);
3930
3931         return ret;
3932 }
3933
3934
3935 int camera_set_focus_changed_cb(camera_h camera, camera_focus_changed_cb callback, void *user_data)
3936 {
3937         int ret = CAMERA_ERROR_NONE;
3938         camera_cli_s *pc = (camera_cli_s *)camera;
3939         muse_camera_api_e api = MUSE_CAMERA_API_SET_FOCUS_CHANGED_CB;
3940
3941         if (!pc || !pc->cb_info || !callback) {
3942                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
3943                 return CAMERA_ERROR_INVALID_PARAMETER;
3944         }
3945
3946         CAM_LOG_INFO("Enter");
3947
3948         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3949
3950         if (ret == CAMERA_ERROR_NONE) {
3951                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE]);
3952
3953                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE] = callback;
3954                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE] = user_data;
3955
3956                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE]);
3957         }
3958
3959         CAM_LOG_INFO("ret : 0x%x", ret);
3960
3961         return ret;
3962 }
3963
3964
3965 int camera_unset_focus_changed_cb(camera_h camera)
3966 {
3967         int ret = CAMERA_ERROR_NONE;
3968         camera_cli_s *pc = (camera_cli_s *)camera;
3969         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_FOCUS_CHANGED_CB;
3970
3971         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
3972
3973         CAM_LOG_INFO("Enter");
3974
3975         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
3976
3977         if (ret == CAMERA_ERROR_NONE) {
3978                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE]);
3979
3980                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE] = NULL;
3981                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE] = NULL;
3982
3983                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_FOCUS_CHANGE]);
3984         }
3985
3986         CAM_LOG_INFO("ret : 0x%x", ret);
3987
3988         return ret;
3989 }
3990
3991
3992 int camera_set_error_cb(camera_h camera, camera_error_cb callback, void *user_data)
3993 {
3994         int ret = CAMERA_ERROR_NONE;
3995         camera_cli_s *pc = (camera_cli_s *)camera;
3996         muse_camera_api_e api = MUSE_CAMERA_API_SET_ERROR_CB;
3997
3998         if (!pc || !pc->cb_info || !callback) {
3999                 CAM_LOG_ERROR("NULL pointer %p %p", pc, callback);
4000                 return CAMERA_ERROR_INVALID_PARAMETER;
4001         }
4002
4003         CAM_LOG_INFO("Enter");
4004
4005         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4006
4007         if (ret == CAMERA_ERROR_NONE) {
4008                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_ERROR]);
4009
4010                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_ERROR] = callback;
4011                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_ERROR] = user_data;
4012
4013                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_ERROR]);
4014         }
4015
4016         CAM_LOG_INFO("ret : 0x%x", ret);
4017
4018         return ret;
4019 }
4020
4021
4022 int camera_unset_error_cb(camera_h camera)
4023 {
4024         int ret = CAMERA_ERROR_NONE;
4025         camera_cli_s *pc = (camera_cli_s *)camera;
4026         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_ERROR_CB;
4027
4028         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4029
4030         CAM_LOG_INFO("Enter");
4031
4032         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4033
4034         if (ret == CAMERA_ERROR_NONE) {
4035                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_ERROR]);
4036
4037                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_ERROR] = NULL;
4038                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_ERROR] = NULL;
4039
4040                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_ERROR]);
4041         }
4042
4043         CAM_LOG_INFO("ret : 0x%x", ret);
4044
4045         return ret;
4046 }
4047
4048
4049 int camera_foreach_supported_preview_resolution(camera_h camera, camera_supported_preview_resolution_cb foreach_cb, void *user_data)
4050 {
4051         int ret = CAMERA_ERROR_NONE;
4052         camera_cli_s *pc = (camera_cli_s *)camera;
4053         muse_camera_api_e api = MUSE_CAMERA_API_SET_FOREACH_SUPPORTED_PREVIEW_RESOLUTION;
4054
4055         if (!pc || !pc->cb_info || !foreach_cb) {
4056                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
4057                 return CAMERA_ERROR_INVALID_PARAMETER;
4058         }
4059
4060         CAM_LOG_INFO("Enter");
4061
4062         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PREVIEW_RESOLUTION] = foreach_cb;
4063         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PREVIEW_RESOLUTION] = user_data;
4064
4065         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4066
4067         CAM_LOG_INFO("ret : 0x%x", ret);
4068
4069         return ret;
4070 }
4071
4072
4073 int camera_foreach_supported_capture_resolution(camera_h camera, camera_supported_capture_resolution_cb foreach_cb, void *user_data)
4074 {
4075         int ret = CAMERA_ERROR_NONE;
4076         camera_cli_s *pc = (camera_cli_s *)camera;
4077         muse_camera_api_e api = MUSE_CAMERA_API_SET_FOREACH_SUPPORTED_CAPTURE_RESOLUTION;
4078
4079         if (!pc || !pc->cb_info || !foreach_cb) {
4080                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
4081                 return CAMERA_ERROR_INVALID_PARAMETER;
4082         }
4083
4084         CAM_LOG_INFO("Enter");
4085
4086         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_CAPTURE_RESOLUTION] = foreach_cb;
4087         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_CAPTURE_RESOLUTION] = user_data;
4088
4089         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4090
4091         CAM_LOG_INFO("ret : 0x%x", ret);
4092
4093         return ret;
4094 }
4095
4096
4097 int camera_foreach_supported_capture_format(camera_h camera, camera_supported_capture_format_cb foreach_cb, void *user_data)
4098 {
4099         int ret = CAMERA_ERROR_NONE;
4100         camera_cli_s *pc = (camera_cli_s *)camera;
4101         muse_camera_api_e api = MUSE_CAMERA_API_SET_FOREACH_SUPPORTED_CAPTURE_FORMAT;
4102
4103         if (!pc || !pc->cb_info || !foreach_cb) {
4104                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
4105                 return CAMERA_ERROR_INVALID_PARAMETER;
4106         }
4107
4108         CAM_LOG_INFO("Enter");
4109
4110         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_CAPTURE_FORMAT] = foreach_cb;
4111         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_CAPTURE_FORMAT] = user_data;
4112
4113         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4114
4115         CAM_LOG_INFO("ret : 0x%x", ret);
4116
4117         return ret;
4118 }
4119
4120
4121 int camera_foreach_supported_preview_format(camera_h camera, camera_supported_preview_format_cb foreach_cb, void *user_data)
4122 {
4123         int ret = CAMERA_ERROR_NONE;
4124         camera_cli_s *pc = (camera_cli_s *)camera;
4125         muse_camera_api_e api = MUSE_CAMERA_API_SET_FOREACH_SUPPORTED_PREVIEW_FORMAT;
4126
4127         if (!pc || !pc->cb_info || !foreach_cb) {
4128                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
4129                 return CAMERA_ERROR_INVALID_PARAMETER;
4130         }
4131
4132         CAM_LOG_INFO("Enter");
4133
4134         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PREVIEW_FORMAT] = foreach_cb;
4135         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PREVIEW_FORMAT] = user_data;
4136
4137         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4138
4139         CAM_LOG_INFO("ret : 0x%x", ret);
4140
4141         return ret;
4142 }
4143
4144
4145 int camera_get_recommended_preview_resolution(camera_h camera, int *width, int *height)
4146 {
4147         int ret = CAMERA_ERROR_NONE;
4148         camera_cli_s *pc = (camera_cli_s *)camera;
4149         muse_camera_api_e api = MUSE_CAMERA_API_GET_RECOMMENDED_PREVIEW_RESOLUTION;
4150
4151         if (!pc || !pc->cb_info || !width || !height) {
4152                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, width, height);
4153                 return CAMERA_ERROR_INVALID_PARAMETER;
4154         }
4155
4156         CAM_LOG_INFO("Enter");
4157         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4158
4159         if (ret == CAMERA_ERROR_NONE) {
4160                 *width = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_RECOMMENDED_PREVIEW_RESOLUTION] >> 16;
4161                 *height = 0x0000ffff & pc->cb_info->get_int[MUSE_CAMERA_GET_INT_RECOMMENDED_PREVIEW_RESOLUTION];
4162         }
4163
4164         CAM_LOG_INFO("ret : 0x%x", ret);
4165
4166         return ret;
4167 }
4168
4169
4170 int camera_attr_get_lens_orientation(camera_h camera, int *angle)
4171 {
4172         int ret = CAMERA_ERROR_NONE;
4173         camera_cli_s *pc = (camera_cli_s *)camera;
4174         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_LENS_ORIENTATION;
4175
4176         if (!pc || !pc->cb_info || !angle) {
4177                 CAM_LOG_ERROR("NULL pointer %p %p", pc, angle);
4178                 return CAMERA_ERROR_INVALID_PARAMETER;
4179         }
4180
4181         CAM_LOG_INFO("Enter");
4182
4183         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4184
4185         if (ret == CAMERA_ERROR_NONE)
4186                 *angle = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_LENS_ORIENTATION];
4187
4188         CAM_LOG_INFO("ret : 0x%x", ret);
4189
4190         return ret;
4191 }
4192
4193
4194 int camera_attr_set_theater_mode(camera_h camera, camera_attr_theater_mode_e mode)
4195 {
4196         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_THEATER_MODE, (int)mode);
4197 }
4198
4199
4200 int camera_attr_get_theater_mode(camera_h camera, camera_attr_theater_mode_e *mode)
4201 {
4202         int ret = CAMERA_ERROR_NONE;
4203         camera_cli_s *pc = (camera_cli_s *)camera;
4204         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_THEATER_MODE;
4205
4206         if (!pc || !pc->cb_info || !mode) {
4207                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
4208                 return CAMERA_ERROR_INVALID_PARAMETER;
4209         }
4210
4211         CAM_LOG_INFO("Enter");
4212
4213         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4214
4215         if (ret == CAMERA_ERROR_NONE)
4216                 *mode = (camera_attr_theater_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_THEATER_MODE];
4217
4218         CAM_LOG_INFO("ret : 0x%x", ret);
4219
4220         return ret;
4221 }
4222
4223
4224 int camera_attr_foreach_supported_theater_mode(camera_h camera, camera_attr_supported_theater_mode_cb foreach_cb, void *user_data)
4225 {
4226         int ret = CAMERA_ERROR_NONE;
4227         camera_cli_s *pc = (camera_cli_s *)camera;
4228         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_THEATER_MODE;
4229
4230         if (!pc || !pc->cb_info || !foreach_cb) {
4231                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
4232                 return CAMERA_ERROR_INVALID_PARAMETER;
4233         }
4234
4235         CAM_LOG_INFO("Enter");
4236
4237         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_THEATER_MODE] = foreach_cb;
4238         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_THEATER_MODE] = user_data;
4239
4240         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4241
4242         CAM_LOG_INFO("Finish, return :%x", ret);
4243
4244         return ret;
4245 }
4246
4247
4248 int camera_attr_set_preview_fps(camera_h camera, camera_attr_fps_e fps)
4249 {
4250         int ret = CAMERA_ERROR_NONE;
4251         camera_cli_s *pc = (camera_cli_s *)camera;
4252         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_PREVIEW_FPS;
4253         camera_msg_param param;
4254         int set_fps = (int)fps;
4255
4256         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4257
4258         CAM_LOG_INFO("Enter");
4259
4260         CAMERA_MSG_PARAM_SET(param, INT, set_fps);
4261
4262         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4263
4264         CAM_LOG_INFO("ret : 0x%x", ret);
4265
4266         return ret;
4267 }
4268
4269
4270 int camera_attr_set_image_quality(camera_h camera, int quality)
4271 {
4272         int ret = CAMERA_ERROR_NONE;
4273         camera_cli_s *pc = (camera_cli_s *)camera;
4274         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_IMAGE_QUALITY;
4275         camera_msg_param param;
4276
4277         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4278
4279         CAM_LOG_INFO("Enter");
4280
4281         CAMERA_MSG_PARAM_SET(param, INT, quality);
4282
4283         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4284
4285         CAM_LOG_INFO("ret : 0x%x", ret);
4286
4287         return ret;
4288 }
4289
4290
4291 int camera_attr_get_preview_fps(camera_h camera, camera_attr_fps_e *fps)
4292 {
4293         int ret = CAMERA_ERROR_NONE;
4294         camera_cli_s *pc = (camera_cli_s *)camera;
4295         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_PREVIEW_FPS;
4296
4297         if (!pc || !pc->cb_info || !fps) {
4298                 CAM_LOG_ERROR("NULL pointer %p %p", pc, fps);
4299                 return CAMERA_ERROR_INVALID_PARAMETER;
4300         }
4301
4302         CAM_LOG_INFO("Enter");
4303
4304         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4305
4306         if (ret == CAMERA_ERROR_NONE)
4307                 *fps = (camera_attr_fps_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_PREVIEW_FPS];
4308
4309         CAM_LOG_INFO("ret : 0x%x", ret);
4310
4311         return ret;
4312 }
4313
4314
4315 int camera_attr_get_image_quality(camera_h camera, int *quality)
4316 {
4317         int ret = CAMERA_ERROR_NONE;
4318         camera_cli_s *pc = (camera_cli_s *)camera;
4319         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_IMAGE_QUALITY;
4320
4321         if (!pc || !pc->cb_info || !quality) {
4322                 CAM_LOG_ERROR("NULL pointer %p %p", pc, quality);
4323                 return CAMERA_ERROR_INVALID_PARAMETER;
4324         }
4325
4326         CAM_LOG_INFO("Enter");
4327
4328         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4329
4330         if (ret == CAMERA_ERROR_NONE)
4331                 *quality = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_IMAGE_QUALITY];
4332
4333         CAM_LOG_INFO("ret : 0x%x", ret);
4334
4335         return ret;
4336 }
4337
4338
4339 int camera_attr_get_encoded_preview_bitrate(camera_h camera, int *bitrate)
4340 {
4341         int ret = CAMERA_ERROR_NONE;
4342         camera_cli_s *pc = (camera_cli_s *)camera;
4343         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_ENCODED_PREVIEW_BITRATE;
4344
4345         if (!pc || !pc->cb_info || !bitrate) {
4346                 CAM_LOG_ERROR("NULL pointer %p %p", pc, bitrate);
4347                 return CAMERA_ERROR_INVALID_PARAMETER;
4348         }
4349
4350         CAM_LOG_INFO("Enter");
4351
4352         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4353
4354         if (ret == CAMERA_ERROR_NONE)
4355                 *bitrate = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENCODED_PREVIEW_BITRATE];
4356
4357         CAM_LOG_INFO("ret : 0x%x", ret);
4358
4359         return ret;
4360 }
4361
4362
4363 int camera_attr_set_encoded_preview_bitrate(camera_h camera, int bitrate)
4364 {
4365         int ret = CAMERA_ERROR_NONE;
4366         camera_cli_s *pc = (camera_cli_s *)camera;
4367         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_ENCODED_PREVIEW_BITRATE;
4368         camera_msg_param param;
4369         int set_bitrate = bitrate;
4370
4371         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4372
4373         CAM_LOG_INFO("Enter");
4374
4375         CAMERA_MSG_PARAM_SET(param, INT, set_bitrate);
4376
4377         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4378
4379         CAM_LOG_INFO("ret : 0x%x", ret);
4380
4381         return ret;
4382 }
4383
4384
4385 int camera_attr_get_encoded_preview_gop_interval(camera_h camera, int *interval)
4386 {
4387         int ret = CAMERA_ERROR_NONE;
4388         camera_cli_s *pc = (camera_cli_s *)camera;
4389         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_ENCODED_PREVIEW_GOP_INTERVAL;
4390
4391         if (!pc || !pc->cb_info || !interval) {
4392                 CAM_LOG_ERROR("NULL pointer %p %p", pc, interval);
4393                 return CAMERA_ERROR_INVALID_PARAMETER;
4394         }
4395
4396         CAM_LOG_INFO("Enter");
4397
4398         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4399
4400         if (ret == CAMERA_ERROR_NONE)
4401                 *interval = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENCODED_PREVIEW_GOP_INTERVAL];
4402
4403         CAM_LOG_INFO("ret : 0x%x", ret);
4404
4405         return ret;
4406 }
4407
4408
4409 int camera_attr_set_encoded_preview_gop_interval(camera_h camera, int interval)
4410 {
4411         int ret = CAMERA_ERROR_NONE;
4412         camera_cli_s *pc = (camera_cli_s *)camera;
4413         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_ENCODED_PREVIEW_GOP_INTERVAL;
4414         camera_msg_param param;
4415         int set_gop_interval = interval;
4416
4417         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4418
4419         CAM_LOG_INFO("Enter");
4420
4421         CAMERA_MSG_PARAM_SET(param, INT, set_gop_interval);
4422
4423         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4424
4425         CAM_LOG_INFO("ret : 0x%x", ret);
4426
4427         return ret;
4428 }
4429
4430
4431 int camera_attr_set_zoom(camera_h camera, int zoom)
4432 {
4433         int ret = CAMERA_ERROR_NONE;
4434         camera_cli_s *pc = (camera_cli_s *)camera;
4435         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_ZOOM;
4436         camera_msg_param param;
4437
4438         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4439
4440         CAM_LOG_INFO("Enter, remote_handle : %td", pc->remote_handle);
4441
4442         CAMERA_MSG_PARAM_SET(param, INT, zoom);
4443
4444         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4445
4446         CAM_LOG_INFO("ret : 0x%x", ret);
4447
4448         return ret;
4449 }
4450
4451
4452 int camera_attr_set_af_mode(camera_h camera, camera_attr_af_mode_e mode)
4453 {
4454         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_AF_MODE, (int)mode);
4455 }
4456
4457
4458 int camera_attr_set_af_area(camera_h camera, int x, int y)
4459 {
4460         int ret = CAMERA_ERROR_NONE;
4461         camera_cli_s *pc = (camera_cli_s *)camera;
4462         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_AF_AREA;
4463         camera_msg_param param;
4464         int value = 0;
4465
4466         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4467
4468         CAM_LOG_INFO("Enter - %d,%d", x, y);
4469
4470         value = (x << 16) | y;
4471         CAMERA_MSG_PARAM_SET(param, INT, value);
4472
4473         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4474
4475         CAM_LOG_INFO("ret : 0x%x", ret);
4476
4477         return ret;
4478 }
4479
4480
4481 int camera_attr_clear_af_area(camera_h camera)
4482 {
4483         int ret = CAMERA_ERROR_NONE;
4484         camera_cli_s *pc = (camera_cli_s *)camera;
4485         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_CLEAR_AF_AREA;
4486
4487         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4488
4489         CAM_LOG_INFO("Enter");
4490
4491         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4492
4493         CAM_LOG_INFO("ret : 0x%x", ret);
4494
4495         return ret;
4496 }
4497
4498
4499 int camera_attr_set_exposure_mode(camera_h camera, camera_attr_exposure_mode_e mode)
4500 {
4501         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_EXPOSURE_MODE, (int)mode);
4502 }
4503
4504
4505 int camera_attr_set_exposure(camera_h camera, int value)
4506 {
4507         int ret = CAMERA_ERROR_NONE;
4508         camera_cli_s *pc = (camera_cli_s *)camera;
4509         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_EXPOSURE;
4510         camera_msg_param param;
4511
4512         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4513
4514         CAM_LOG_INFO("Enter");
4515
4516         CAMERA_MSG_PARAM_SET(param, INT, value);
4517
4518         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4519
4520         CAM_LOG_INFO("ret : 0x%x", ret);
4521
4522         return ret;
4523 }
4524
4525
4526 int camera_attr_set_iso(camera_h camera, camera_attr_iso_e iso)
4527 {
4528         int ret = CAMERA_ERROR_NONE;
4529         camera_cli_s *pc = (camera_cli_s *)camera;
4530         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_ISO;
4531         camera_msg_param param;
4532         int set_iso = (int)iso;
4533
4534         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4535
4536         CAM_LOG_INFO("Enter");
4537
4538         CAMERA_MSG_PARAM_SET(param, INT, set_iso);
4539
4540         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4541
4542         CAM_LOG_INFO("ret : 0x%x", ret);
4543
4544         return ret;
4545 }
4546
4547
4548 int camera_attr_set_brightness(camera_h camera, int level)
4549 {
4550         int ret = CAMERA_ERROR_NONE;
4551         camera_cli_s *pc = (camera_cli_s *)camera;
4552         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_BRIGHTNESS;
4553         camera_msg_param param;
4554
4555         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4556
4557         CAM_LOG_INFO("Enter");
4558
4559         CAMERA_MSG_PARAM_SET(param, INT, level);
4560
4561         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4562
4563         CAM_LOG_INFO("ret : 0x%x", ret);
4564
4565         return ret;
4566 }
4567
4568
4569 int camera_attr_set_contrast(camera_h camera, int level)
4570 {
4571         int ret = CAMERA_ERROR_NONE;
4572         camera_cli_s *pc = (camera_cli_s *)camera;
4573         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_CONTRAST;
4574         camera_msg_param param;
4575
4576         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4577
4578         CAM_LOG_INFO("Enter");
4579
4580         CAMERA_MSG_PARAM_SET(param, INT, level);
4581
4582         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4583
4584         CAM_LOG_INFO("ret : 0x%x", ret);
4585
4586         return ret;
4587 }
4588
4589
4590 int camera_attr_set_hue(camera_h camera, int level)
4591 {
4592         int ret = CAMERA_ERROR_NONE;
4593         camera_cli_s *pc = (camera_cli_s *)camera;
4594         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_HUE;
4595         camera_msg_param param;
4596
4597         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4598
4599         CAM_LOG_INFO("Enter");
4600
4601         CAMERA_MSG_PARAM_SET(param, INT, level);
4602
4603         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4604
4605         CAM_LOG_INFO("ret : 0x%x", ret);
4606
4607         return ret;
4608 }
4609
4610
4611 int camera_attr_set_whitebalance(camera_h camera, camera_attr_whitebalance_e wb)
4612 {
4613         int ret = CAMERA_ERROR_NONE;
4614         camera_cli_s *pc = (camera_cli_s *)camera;
4615         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_WHITEBALANCE;
4616         camera_msg_param param;
4617         int set_whitebalance = (int)wb;
4618
4619         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4620
4621         CAM_LOG_INFO("Enter");
4622
4623         CAMERA_MSG_PARAM_SET(param, INT, set_whitebalance);
4624
4625         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4626
4627         CAM_LOG_INFO("ret : 0x%x", ret);
4628
4629         return ret;
4630 }
4631
4632
4633 int camera_attr_set_effect(camera_h camera, camera_attr_effect_mode_e effect)
4634 {
4635         int ret = CAMERA_ERROR_NONE;
4636         camera_cli_s *pc = (camera_cli_s *)camera;
4637         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_EFFECT;
4638         camera_msg_param param;
4639         int set_effect = (int)effect;
4640
4641         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4642
4643         CAM_LOG_INFO("Enter");
4644
4645         CAMERA_MSG_PARAM_SET(param, INT, set_effect);
4646
4647         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4648
4649         CAM_LOG_INFO("ret : 0x%x", ret);
4650
4651         return ret;
4652 }
4653
4654
4655 int camera_attr_set_scene_mode(camera_h camera, camera_attr_scene_mode_e mode)
4656 {
4657         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_SCENE_MODE, (int)mode);
4658 }
4659
4660
4661 int camera_attr_enable_tag(camera_h camera, bool enable)
4662 {
4663         return __set_enable(camera, MUSE_CAMERA_API_ATTR_ENABLE_TAG, (int)enable);
4664 }
4665
4666
4667 int camera_attr_set_tag_image_description(camera_h camera, const char *description)
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_TAG_IMAGE_DESCRIPTION;
4672         camera_msg_param param;
4673
4674         if (!pc || !pc->cb_info || !description) {
4675                 CAM_LOG_ERROR("NULL pointer %p %p", pc, description);
4676                 return CAMERA_ERROR_INVALID_PARAMETER;
4677         }
4678
4679         CAM_LOG_INFO("Enter");
4680
4681         CAMERA_MSG_PARAM_SET(param, STRING, description);
4682
4683         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4684
4685         CAM_LOG_INFO("ret : 0x%x", ret);
4686
4687         return ret;
4688 }
4689
4690
4691 int camera_attr_set_tag_orientation(camera_h camera, camera_attr_tag_orientation_e orientation)
4692 {
4693         int ret = CAMERA_ERROR_NONE;
4694         camera_cli_s *pc = (camera_cli_s *)camera;
4695         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_TAG_ORIENTATION;
4696         camera_msg_param param;
4697         int set_orientation = (int)orientation;
4698
4699         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4700
4701         CAM_LOG_INFO("Enter");
4702
4703         CAMERA_MSG_PARAM_SET(param, INT, set_orientation);
4704
4705         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4706
4707         CAM_LOG_INFO("ret : 0x%x", ret);
4708
4709         return ret;
4710 }
4711
4712
4713 int camera_attr_set_tag_software(camera_h camera, const char *software)
4714 {
4715         int ret = CAMERA_ERROR_NONE;
4716         camera_cli_s *pc = (camera_cli_s *)camera;
4717         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_TAG_SOFTWARE;
4718         camera_msg_param param;
4719
4720         if (!pc || !pc->cb_info || !software) {
4721                 CAM_LOG_ERROR("NULL pointer %p %p", pc, software);
4722                 return CAMERA_ERROR_INVALID_PARAMETER;
4723         }
4724
4725         CAM_LOG_INFO("Enter, remote_handle : %td", pc->remote_handle);
4726
4727         CAMERA_MSG_PARAM_SET(param, STRING, software);
4728
4729         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
4730
4731         CAM_LOG_INFO("ret : 0x%x", ret);
4732
4733         return ret;
4734 }
4735
4736
4737 int camera_attr_set_geotag(camera_h camera, double latitude, double longitude, double altitude)
4738 {
4739         int ret = CAMERA_ERROR_NONE;
4740         camera_cli_s *pc = (camera_cli_s *)camera;
4741         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_GEOTAG;
4742         double set_geotag[3] = {latitude, longitude, altitude};
4743         char *msg = NULL;
4744         int length = 0;
4745
4746         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4747
4748         CAM_LOG_INFO("Enter");
4749
4750         length = sizeof(set_geotag) / sizeof(int) + \
4751                 (sizeof(set_geotag) % sizeof(int) ? 1 : 0);
4752
4753         msg = muse_core_msg_new(api,
4754                 MUSE_TYPE_ARRAY, "set_geotag", length, (int *)set_geotag,
4755                 NULL);
4756
4757         __send_message_get_return(pc->cb_info, api, msg, CAMERA_CB_TIMEOUT, &ret);
4758
4759         return ret;
4760 }
4761
4762
4763 int camera_attr_remove_geotag(camera_h camera)
4764 {
4765         int ret = CAMERA_ERROR_NONE;
4766         camera_cli_s *pc = (camera_cli_s *)camera;
4767         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_REMOVE_GEOTAG;
4768
4769         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
4770
4771         CAM_LOG_INFO("Enter");
4772
4773         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4774
4775         CAM_LOG_INFO("ret : 0x%x", ret);
4776
4777         return ret;
4778 }
4779
4780
4781 int camera_attr_set_flash_mode(camera_h camera, camera_attr_flash_mode_e mode)
4782 {
4783         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_FLASH_MODE, (int)mode);
4784 }
4785
4786
4787 int camera_attr_get_zoom(camera_h camera, int *zoom)
4788 {
4789         int ret = CAMERA_ERROR_NONE;
4790         camera_cli_s *pc = (camera_cli_s *)camera;
4791         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_ZOOM;
4792
4793         if (!pc || !pc->cb_info || !zoom) {
4794                 CAM_LOG_ERROR("NULL pointer %p %p", pc, zoom);
4795                 return CAMERA_ERROR_INVALID_PARAMETER;
4796         }
4797
4798         CAM_LOG_INFO("Enter");
4799
4800         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4801
4802         if (ret == CAMERA_ERROR_NONE)
4803                 *zoom = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ZOOM];
4804
4805         CAM_LOG_INFO("ret : 0x%x", ret);
4806
4807         return ret;
4808 }
4809
4810
4811 int camera_attr_get_zoom_range(camera_h camera, int *min, int *max)
4812 {
4813         int ret = CAMERA_ERROR_NONE;
4814         camera_cli_s *pc = (camera_cli_s *)camera;
4815         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_ZOOM_RANGE;
4816
4817         if (!pc || !pc->cb_info || !min || !max) {
4818                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
4819                 return CAMERA_ERROR_INVALID_PARAMETER;
4820         }
4821
4822         CAM_LOG_INFO("Enter");
4823
4824         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4825
4826         if (ret == CAMERA_ERROR_NONE) {
4827                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_ZOOM_RANGE][0];
4828                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_ZOOM_RANGE][1];
4829         }
4830
4831         CAM_LOG_INFO("ret : 0x%x", ret);
4832
4833         return ret;
4834 }
4835
4836
4837 int camera_attr_get_af_mode(camera_h camera, camera_attr_af_mode_e *mode)
4838 {
4839         int ret = CAMERA_ERROR_NONE;
4840         camera_cli_s *pc = (camera_cli_s *)camera;
4841         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_AF_MODE;
4842
4843         if (!pc || !pc->cb_info || !mode) {
4844                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
4845                 return CAMERA_ERROR_INVALID_PARAMETER;
4846         }
4847
4848         CAM_LOG_INFO("Enter");
4849
4850         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4851
4852         if (ret == CAMERA_ERROR_NONE)
4853                 *mode = (camera_attr_af_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_AF_MODE];
4854
4855         CAM_LOG_INFO("ret : 0x%x", ret);
4856
4857         return ret;
4858 }
4859
4860
4861 int camera_attr_get_exposure_mode(camera_h camera, camera_attr_exposure_mode_e *mode)
4862 {
4863         int ret = CAMERA_ERROR_NONE;
4864         camera_cli_s *pc = (camera_cli_s *)camera;
4865         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EXPOSURE_MODE;
4866
4867         if (!pc || !pc->cb_info || !mode) {
4868                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
4869                 return CAMERA_ERROR_INVALID_PARAMETER;
4870         }
4871
4872         CAM_LOG_INFO("Enter");
4873
4874         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4875
4876         if (ret == CAMERA_ERROR_NONE)
4877                 *mode = (camera_attr_exposure_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_EXPOSURE_MODE];
4878
4879         CAM_LOG_INFO("ret : 0x%x", ret);
4880
4881         return ret;
4882 }
4883
4884
4885 int camera_attr_get_exposure(camera_h camera, int *value)
4886 {
4887         int ret = CAMERA_ERROR_NONE;
4888         camera_cli_s *pc = (camera_cli_s *)camera;
4889         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EXPOSURE;
4890
4891         if (!pc || !pc->cb_info || !value) {
4892                 CAM_LOG_ERROR("NULL pointer %p %p", pc, value);
4893                 return CAMERA_ERROR_INVALID_PARAMETER;
4894         }
4895
4896         CAM_LOG_INFO("Enter");
4897
4898         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4899
4900         if (ret == CAMERA_ERROR_NONE)
4901                 *value = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_EXPOSURE];
4902
4903         CAM_LOG_INFO("ret : 0x%x", ret);
4904
4905         return ret;
4906 }
4907
4908
4909 int camera_attr_get_exposure_range(camera_h camera, int *min, int *max)
4910 {
4911         int ret = CAMERA_ERROR_NONE;
4912         camera_cli_s *pc = (camera_cli_s *)camera;
4913         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EXPOSURE_RANGE;
4914
4915         if (!pc || !pc->cb_info || !min || !max) {
4916                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
4917                 return CAMERA_ERROR_INVALID_PARAMETER;
4918         }
4919
4920         CAM_LOG_INFO("Enter");
4921
4922         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4923
4924         if (ret == CAMERA_ERROR_NONE) {
4925                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_EXPOSURE_RANGE][0];
4926                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_EXPOSURE_RANGE][1];
4927         }
4928
4929         CAM_LOG_INFO("ret : 0x%x", ret);
4930
4931         return ret;
4932 }
4933
4934
4935 int camera_attr_get_iso(camera_h camera, camera_attr_iso_e *iso)
4936 {
4937         int ret = CAMERA_ERROR_NONE;
4938         camera_cli_s *pc = (camera_cli_s *)camera;
4939         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_ISO;
4940
4941         if (!pc || !pc->cb_info || !iso) {
4942                 CAM_LOG_ERROR("NULL pointer %p %p", pc, iso);
4943                 return CAMERA_ERROR_INVALID_PARAMETER;
4944         }
4945
4946         CAM_LOG_INFO("Enter");
4947
4948         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4949
4950         if (ret == CAMERA_ERROR_NONE)
4951                 *iso = (camera_attr_iso_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ISO];
4952
4953         CAM_LOG_INFO("ret : 0x%x", ret);
4954
4955         return ret;
4956 }
4957
4958
4959 int camera_attr_get_brightness(camera_h camera, int *level)
4960 {
4961         int ret = CAMERA_ERROR_NONE;
4962         camera_cli_s *pc = (camera_cli_s *)camera;
4963         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_BRIGHTNESS;
4964
4965         if (!pc || !pc->cb_info || !level) {
4966                 CAM_LOG_ERROR("NULL pointer %p %p", pc, level);
4967                 return CAMERA_ERROR_INVALID_PARAMETER;
4968         }
4969
4970         CAM_LOG_INFO("Enter");
4971
4972         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4973
4974         if (ret == CAMERA_ERROR_NONE)
4975                 *level = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_BRIGHTNESS];
4976
4977         CAM_LOG_INFO("ret : 0x%x", ret);
4978
4979         return ret;
4980 }
4981
4982
4983 int camera_attr_get_brightness_range(camera_h camera, int *min, int *max)
4984 {
4985         int ret = CAMERA_ERROR_NONE;
4986         camera_cli_s *pc = (camera_cli_s *)camera;
4987         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_BRIGHTNESS_RANGE;
4988
4989         if (!pc || !pc->cb_info || !min || !max) {
4990                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
4991                 return CAMERA_ERROR_INVALID_PARAMETER;
4992         }
4993
4994         CAM_LOG_INFO("Enter");
4995
4996         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
4997
4998         if (ret == CAMERA_ERROR_NONE) {
4999                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_BRIGHTNESS_RANGE][0];
5000                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_BRIGHTNESS_RANGE][1];
5001         }
5002
5003         CAM_LOG_INFO("ret : 0x%x", ret);
5004
5005         return ret;
5006 }
5007
5008
5009 int camera_attr_get_contrast(camera_h camera, int *level)
5010 {
5011         int ret = CAMERA_ERROR_NONE;
5012         camera_cli_s *pc = (camera_cli_s *)camera;
5013         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_CONTRAST;
5014
5015         if (!pc || !pc->cb_info || !level) {
5016                 CAM_LOG_ERROR("NULL pointer %p %p", pc, level);
5017                 return CAMERA_ERROR_INVALID_PARAMETER;
5018         }
5019
5020         CAM_LOG_INFO("Enter");
5021
5022         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5023
5024         if (ret == CAMERA_ERROR_NONE)
5025                 *level = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_CONTRAST];
5026
5027         CAM_LOG_INFO("ret : 0x%x", ret);
5028
5029         return ret;
5030 }
5031
5032
5033 int camera_attr_get_contrast_range(camera_h camera, int *min, int *max)
5034 {
5035         int ret = CAMERA_ERROR_NONE;
5036         camera_cli_s *pc = (camera_cli_s *)camera;
5037         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_CONTRAST_RANGE;
5038
5039         if (!pc || !pc->cb_info || !min || !max) {
5040                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
5041                 return CAMERA_ERROR_INVALID_PARAMETER;
5042         }
5043
5044         CAM_LOG_INFO("Enter");
5045
5046         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5047
5048         if (ret == CAMERA_ERROR_NONE) {
5049                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_CONTRAST_RANGE][0];
5050                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_CONTRAST_RANGE][1];
5051                 CAM_LOG_INFO("min %d, max %d", *min, *max);
5052         }
5053
5054         CAM_LOG_INFO("ret : 0x%x", ret);
5055
5056         return ret;
5057 }
5058
5059
5060 int camera_attr_get_hue(camera_h camera, int *level)
5061 {
5062         int ret = CAMERA_ERROR_NONE;
5063         camera_cli_s *pc = (camera_cli_s *)camera;
5064         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_HUE;
5065
5066         if (!pc || !pc->cb_info || !level) {
5067                 CAM_LOG_ERROR("NULL pointer %p %p", pc, level);
5068                 return CAMERA_ERROR_INVALID_PARAMETER;
5069         }
5070
5071         CAM_LOG_INFO("Enter");
5072
5073         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5074
5075         if (ret == CAMERA_ERROR_NONE)
5076                 *level = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_HUE];
5077
5078         CAM_LOG_INFO("ret : 0x%x", ret);
5079
5080         return ret;
5081 }
5082
5083
5084 int camera_attr_get_hue_range(camera_h camera, int *min, int *max)
5085 {
5086         int ret = CAMERA_ERROR_NONE;
5087         camera_cli_s *pc = (camera_cli_s *)camera;
5088         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_HUE_RANGE;
5089
5090         if (!pc || !pc->cb_info || !min || !max) {
5091                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
5092                 return CAMERA_ERROR_INVALID_PARAMETER;
5093         }
5094
5095         CAM_LOG_INFO("Enter");
5096
5097         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5098
5099         if (ret == CAMERA_ERROR_NONE) {
5100                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_HUE_RANGE][0];
5101                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_HUE_RANGE][1];
5102                 CAM_LOG_INFO("min %d, max %d", *min, *max);
5103         }
5104
5105         CAM_LOG_INFO("ret : 0x%x", ret);
5106
5107         return ret;
5108 }
5109
5110
5111 int camera_attr_get_whitebalance(camera_h camera, camera_attr_whitebalance_e *wb)
5112 {
5113         int ret = CAMERA_ERROR_NONE;
5114         camera_cli_s *pc = (camera_cli_s *)camera;
5115         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_WHITEBALANCE;
5116
5117         if (!pc || !pc->cb_info || !wb) {
5118                 CAM_LOG_ERROR("NULL pointer %p %p", pc, wb);
5119                 return CAMERA_ERROR_INVALID_PARAMETER;
5120         }
5121
5122         CAM_LOG_INFO("Enter");
5123
5124         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5125
5126         if (ret == CAMERA_ERROR_NONE)
5127                 *wb = (camera_attr_whitebalance_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_WHITE_BALANCE];
5128
5129         CAM_LOG_INFO("ret : 0x%x", ret);
5130
5131         return ret;
5132 }
5133
5134
5135 int camera_attr_get_effect(camera_h camera, camera_attr_effect_mode_e *effect)
5136 {
5137         int ret = CAMERA_ERROR_NONE;
5138         camera_cli_s *pc = (camera_cli_s *)camera;
5139         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EFFECT;
5140
5141         if (!pc || !pc->cb_info || !effect) {
5142                 CAM_LOG_ERROR("NULL pointer %p %p", pc, effect);
5143                 return CAMERA_ERROR_INVALID_PARAMETER;
5144         }
5145
5146         CAM_LOG_INFO("Enter");
5147
5148         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5149
5150         if (ret == CAMERA_ERROR_NONE)
5151                 *effect = (camera_attr_effect_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_EFFECT];
5152
5153         CAM_LOG_INFO("ret : 0x%x", ret);
5154
5155         return ret;
5156 }
5157
5158
5159 int camera_attr_get_scene_mode(camera_h camera, camera_attr_scene_mode_e *mode)
5160 {
5161         int ret = CAMERA_ERROR_NONE;
5162         camera_cli_s *pc = (camera_cli_s *)camera;
5163         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_SCENE_MODE;
5164
5165         if (!pc || !pc->cb_info || !mode) {
5166                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
5167                 return CAMERA_ERROR_INVALID_PARAMETER;
5168         }
5169
5170         CAM_LOG_INFO("Enter");
5171
5172         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5173
5174         if (ret == CAMERA_ERROR_NONE)
5175                 *mode = (camera_attr_scene_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_SCENE_MODE];
5176
5177         CAM_LOG_INFO("ret : 0x%x", ret);
5178
5179         return ret;
5180 }
5181
5182
5183 int camera_attr_is_enabled_tag(camera_h camera, bool *enable)
5184 {
5185         int ret = CAMERA_ERROR_NONE;
5186         camera_cli_s *pc = (camera_cli_s *)camera;
5187         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_IS_ENABLED_TAG;
5188
5189         if (!pc || !pc->cb_info || !enable) {
5190                 CAM_LOG_ERROR("NULL pointer %p %p", pc, enable);
5191                 return CAMERA_ERROR_INVALID_PARAMETER;
5192         }
5193
5194         CAM_LOG_INFO("Enter");
5195
5196         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5197
5198         if (ret == CAMERA_ERROR_NONE)
5199                 *enable = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENABLED_TAG];
5200
5201         CAM_LOG_INFO("ret : 0x%x", ret);
5202
5203         return ret;
5204 }
5205
5206
5207 int camera_attr_get_tag_image_description(camera_h camera, char **description)
5208 {
5209         int ret = CAMERA_ERROR_NONE;
5210         camera_cli_s *pc = (camera_cli_s *)camera;
5211         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_TAG_IMAGE_DESCRIPTION;
5212
5213         if (!pc || !pc->cb_info || !description) {
5214                 CAM_LOG_ERROR("NULL pointer %p %p", pc, description);
5215                 return CAMERA_ERROR_INVALID_PARAMETER;
5216         }
5217
5218         CAM_LOG_INFO("Enter");
5219
5220         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5221
5222         if (ret == CAMERA_ERROR_NONE)
5223                 *description = strdup(pc->cb_info->get_string[MUSE_CAMERA_GET_STRING_TAG_IMAGE_DESCRIPTION]);
5224
5225         CAM_LOG_INFO("ret : 0x%x", ret);
5226
5227         return ret;
5228 }
5229
5230
5231 int camera_attr_get_tag_orientation(camera_h camera, camera_attr_tag_orientation_e *orientation)
5232 {
5233         int ret = CAMERA_ERROR_NONE;
5234         camera_cli_s *pc = (camera_cli_s *)camera;
5235         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_TAG_ORIENTATION;
5236
5237         if (!pc || !pc->cb_info || !orientation) {
5238                 CAM_LOG_ERROR("NULL pointer %p %p", pc, orientation);
5239                 return CAMERA_ERROR_INVALID_PARAMETER;
5240         }
5241
5242         CAM_LOG_INFO("Enter");
5243
5244         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5245
5246         if (ret == CAMERA_ERROR_NONE)
5247                 *orientation = (camera_attr_tag_orientation_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_TAG_ORIENTATION];
5248
5249         CAM_LOG_INFO("ret : 0x%x", ret);
5250
5251         return ret;
5252 }
5253
5254
5255 int camera_attr_get_tag_software(camera_h camera, char **software)
5256 {
5257         int ret = CAMERA_ERROR_NONE;
5258         camera_cli_s *pc = (camera_cli_s *)camera;
5259         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_TAG_SOFTWARE;
5260
5261         if (!pc || !pc->cb_info || !software) {
5262                 CAM_LOG_ERROR("NULL pointer %p %p", pc, software);
5263                 return CAMERA_ERROR_INVALID_PARAMETER;
5264         }
5265
5266         CAM_LOG_INFO("Enter");
5267
5268         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5269
5270         if (ret == CAMERA_ERROR_NONE)
5271                 *software = strdup(pc->cb_info->get_string[MUSE_CAMERA_GET_STRING_TAG_SOFTWARE]);
5272
5273         CAM_LOG_INFO("ret : 0x%x", ret);
5274
5275         return ret;
5276 }
5277
5278
5279 int camera_attr_get_geotag(camera_h camera, double *latitude, double *longitude, double *altitude)
5280 {
5281         int ret = CAMERA_ERROR_NONE;
5282         camera_cli_s *pc = (camera_cli_s *)camera;
5283         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_GEOTAG;
5284
5285         if (!pc || !pc->cb_info || !latitude || !longitude || !altitude) {
5286                 CAM_LOG_ERROR("NULL pointer %p %p %p %p", pc, latitude, longitude, altitude);
5287                 return CAMERA_ERROR_INVALID_PARAMETER;
5288         }
5289
5290         CAM_LOG_INFO("Enter");
5291
5292         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5293
5294         if (ret == CAMERA_ERROR_NONE) {
5295                 *latitude = pc->cb_info->get_geotag[0];
5296                 *longitude = pc->cb_info->get_geotag[1];
5297                 *altitude = pc->cb_info->get_geotag[2];
5298         }
5299
5300         CAM_LOG_INFO("ret : 0x%x", ret);
5301
5302         return ret;
5303 }
5304
5305
5306 int camera_attr_get_flash_mode(camera_h camera, camera_attr_flash_mode_e *mode)
5307 {
5308         int ret = CAMERA_ERROR_NONE;
5309         camera_cli_s *pc = (camera_cli_s *)camera;
5310         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_FLASH_MODE;
5311
5312         if (!pc || !pc->cb_info || !mode) {
5313                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
5314                 return CAMERA_ERROR_INVALID_PARAMETER;
5315         }
5316
5317         CAM_LOG_INFO("Enter");
5318
5319         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5320
5321         if (ret == CAMERA_ERROR_NONE)
5322                 *mode = (camera_attr_flash_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_FLASH_MODE];
5323
5324         CAM_LOG_INFO("ret : 0x%x", ret);
5325
5326         return ret;
5327 }
5328
5329
5330 int camera_get_flash_state(camera_device_e device, camera_flash_state_e *state)
5331 {
5332         int ret = CAMERA_ERROR_NONE;
5333         int get_flash_state = 0;
5334
5335         if (!state) {
5336                 CAM_LOG_ERROR("NULL pointer");
5337                 return CAMERA_ERROR_INVALID_PARAMETER;
5338         }
5339
5340         ret = _camera_independent_request(MUSE_CAMERA_API_GET_FLASH_STATE,
5341                 (int)device, "get_flash_state", &get_flash_state);
5342
5343         if (ret == CAMERA_ERROR_NONE) {
5344                 *state = (camera_flash_state_e)get_flash_state;
5345                 CAM_LOG_INFO("flash state %d", *state);
5346         } else {
5347                 CAM_LOG_ERROR("failed 0x%x", ret);
5348         }
5349
5350         return ret;
5351 }
5352
5353
5354 int camera_attr_foreach_supported_af_mode(camera_h camera, camera_attr_supported_af_mode_cb foreach_cb, void *user_data)
5355 {
5356         int ret = CAMERA_ERROR_NONE;
5357         camera_cli_s *pc = (camera_cli_s *)camera;
5358         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_AF_MODE;
5359
5360         if (!pc || !pc->cb_info || !foreach_cb) {
5361                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5362                 return CAMERA_ERROR_INVALID_PARAMETER;
5363         }
5364
5365         CAM_LOG_INFO("Enter");
5366
5367         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_AF_MODE] = foreach_cb;
5368         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_AF_MODE] = user_data;
5369
5370         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5371
5372         CAM_LOG_INFO("ret : 0x%x", ret);
5373
5374         return ret;
5375 }
5376
5377
5378 int camera_attr_foreach_supported_exposure_mode(camera_h camera, camera_attr_supported_exposure_mode_cb foreach_cb, void *user_data)
5379 {
5380         int ret = CAMERA_ERROR_NONE;
5381         camera_cli_s *pc = (camera_cli_s *)camera;
5382         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_EXPOSURE_MODE;
5383
5384         if (!pc || !pc->cb_info || !foreach_cb) {
5385                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5386                 return CAMERA_ERROR_INVALID_PARAMETER;
5387         }
5388
5389         CAM_LOG_INFO("Enter");
5390
5391         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_EXPOSURE_MODE] = foreach_cb;
5392         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_EXPOSURE_MODE] = user_data;
5393
5394         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5395
5396         CAM_LOG_INFO("ret : 0x%x", ret);
5397
5398         return ret;
5399 }
5400
5401
5402 int camera_attr_foreach_supported_iso(camera_h camera, camera_attr_supported_iso_cb foreach_cb, void *user_data)
5403 {
5404         int ret = CAMERA_ERROR_NONE;
5405         camera_cli_s *pc = (camera_cli_s *)camera;
5406         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_ISO;
5407
5408         if (!pc || !pc->cb_info || !foreach_cb) {
5409                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5410                 return CAMERA_ERROR_INVALID_PARAMETER;
5411         }
5412
5413         CAM_LOG_INFO("Enter");
5414
5415         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_ISO] = foreach_cb;
5416         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_ISO] = user_data;
5417
5418         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5419
5420         CAM_LOG_INFO("ret : 0x%x", ret);
5421
5422         return ret;
5423 }
5424
5425
5426 int camera_attr_foreach_supported_whitebalance(camera_h camera, camera_attr_supported_whitebalance_cb foreach_cb, void *user_data)
5427 {
5428         int ret = CAMERA_ERROR_NONE;
5429         camera_cli_s *pc = (camera_cli_s *)camera;
5430         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_WHITEBALANCE;
5431
5432         if (!pc || !pc->cb_info || !foreach_cb) {
5433                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5434                 return CAMERA_ERROR_INVALID_PARAMETER;
5435         }
5436
5437         CAM_LOG_INFO("Enter");
5438
5439         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_WHITEBALANCE] = foreach_cb;
5440         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_WHITEBALANCE] = user_data;
5441
5442         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5443
5444         CAM_LOG_INFO("ret : 0x%x", ret);
5445
5446         return ret;
5447 }
5448
5449
5450 int camera_attr_foreach_supported_effect(camera_h camera, camera_attr_supported_effect_cb foreach_cb, void *user_data)
5451 {
5452         int ret = CAMERA_ERROR_NONE;
5453         camera_cli_s *pc = (camera_cli_s *)camera;
5454         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_EFFECT;
5455
5456         if (!pc || !pc->cb_info || !foreach_cb) {
5457                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5458                 return CAMERA_ERROR_INVALID_PARAMETER;
5459         }
5460
5461         CAM_LOG_INFO("Enter");
5462
5463         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_EFFECT] = foreach_cb;
5464         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_EFFECT] = user_data;
5465
5466         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5467
5468         CAM_LOG_INFO("ret : 0x%x", ret);
5469
5470         return ret;
5471 }
5472
5473
5474 int camera_attr_foreach_supported_scene_mode(camera_h camera, camera_attr_supported_scene_mode_cb foreach_cb, void *user_data)
5475 {
5476         int ret = CAMERA_ERROR_NONE;
5477         camera_cli_s *pc = (camera_cli_s *)camera;
5478         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_SCENE_MODE;
5479
5480         if (!pc || !pc->cb_info || !foreach_cb) {
5481                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5482                 return CAMERA_ERROR_INVALID_PARAMETER;
5483         }
5484
5485         CAM_LOG_INFO("Enter");
5486
5487         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_SCENE_MODE] = foreach_cb;
5488         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_SCENE_MODE] = user_data;
5489
5490         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5491
5492         CAM_LOG_INFO("ret : 0x%x", ret);
5493
5494         return ret;
5495 }
5496
5497
5498 int camera_attr_foreach_supported_flash_mode(camera_h camera, camera_attr_supported_flash_mode_cb foreach_cb, void *user_data)
5499 {
5500         int ret = CAMERA_ERROR_NONE;
5501         camera_cli_s *pc = (camera_cli_s *)camera;
5502         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_FLASH_MODE;
5503
5504         if (!pc || !pc->cb_info || !foreach_cb) {
5505                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5506                 return CAMERA_ERROR_INVALID_PARAMETER;
5507         }
5508
5509         CAM_LOG_INFO("Enter");
5510
5511         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FLASH_MODE] = foreach_cb;
5512         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FLASH_MODE] = user_data;
5513
5514         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5515
5516         CAM_LOG_INFO("ret : 0x%x", ret);
5517
5518         return ret;
5519 }
5520
5521
5522 int camera_attr_foreach_supported_fps(camera_h camera, camera_attr_supported_fps_cb foreach_cb, void *user_data)
5523 {
5524         int ret = CAMERA_ERROR_NONE;
5525         camera_cli_s *pc = (camera_cli_s *)camera;
5526         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_FPS;
5527
5528         if (!pc || !pc->cb_info || !foreach_cb) {
5529                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5530                 return CAMERA_ERROR_INVALID_PARAMETER;
5531         }
5532
5533         CAM_LOG_INFO("Enter");
5534
5535         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FPS] = foreach_cb;
5536         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FPS] = user_data;
5537
5538         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5539
5540         CAM_LOG_INFO("Enter, handle :%td", pc->remote_handle);
5541
5542         return ret;
5543 }
5544
5545
5546 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)
5547 {
5548         int ret = CAMERA_ERROR_NONE;
5549         camera_cli_s *pc = (camera_cli_s *)camera;
5550         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_FPS_BY_RESOLUTION;
5551         camera_msg_param param;
5552         int value = 0;
5553
5554         if (!pc || !pc->cb_info || !foreach_cb) {
5555                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5556                 return CAMERA_ERROR_INVALID_PARAMETER;
5557         }
5558
5559         CAM_LOG_INFO("Enter");
5560
5561         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FPS_BY_RESOLUTION] = foreach_cb;
5562         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_FPS_BY_RESOLUTION] = user_data;
5563
5564         value = (width << 16) | height;
5565         CAMERA_MSG_PARAM_SET(param, INT, value);
5566
5567         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
5568
5569         CAM_LOG_INFO("ret : 0x%x", ret);
5570
5571         return ret;
5572 }
5573
5574
5575 int camera_attr_foreach_supported_stream_flip(camera_h camera, camera_attr_supported_stream_flip_cb foreach_cb, void *user_data)
5576 {
5577         int ret = CAMERA_ERROR_NONE;
5578         camera_cli_s *pc = (camera_cli_s *)camera;
5579         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_STREAM_FLIP;
5580
5581         if (!pc || !pc->cb_info || !foreach_cb) {
5582                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5583                 return CAMERA_ERROR_INVALID_PARAMETER;
5584         }
5585
5586         CAM_LOG_INFO("Enter");
5587
5588         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_STREAM_FLIP] = foreach_cb;
5589         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_STREAM_FLIP] = user_data;
5590
5591         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5592
5593         CAM_LOG_INFO("ret : 0x%x", ret);
5594
5595         return ret;
5596 }
5597
5598
5599 int camera_attr_foreach_supported_stream_rotation(camera_h camera, camera_attr_supported_stream_rotation_cb foreach_cb, void *user_data)
5600 {
5601         int ret = CAMERA_ERROR_NONE;
5602         camera_cli_s *pc = (camera_cli_s *)camera;
5603         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_STREAM_ROTATION;
5604
5605         if (!pc || !pc->cb_info || !foreach_cb) {
5606                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
5607                 return CAMERA_ERROR_INVALID_PARAMETER;
5608         }
5609
5610         CAM_LOG_INFO("Enter");
5611
5612         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_STREAM_ROTATION] = foreach_cb;
5613         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_STREAM_ROTATION] = user_data;
5614
5615         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5616
5617         CAM_LOG_INFO("ret : 0x%x", ret);
5618
5619         return ret;
5620 }
5621
5622
5623 int camera_attr_set_stream_rotation(camera_h camera, camera_rotation_e rotation)
5624 {
5625         int ret = CAMERA_ERROR_NONE;
5626         camera_cli_s *pc = (camera_cli_s *)camera;
5627         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_STREAM_ROTATION;
5628         camera_msg_param param;
5629         int set_rotation = (int)rotation;
5630
5631         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5632
5633         CAM_LOG_INFO("Enter");
5634
5635         CAMERA_MSG_PARAM_SET(param, INT, set_rotation);
5636
5637         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
5638
5639         CAM_LOG_INFO("ret : 0x%x", ret);
5640
5641         return ret;
5642 }
5643
5644
5645 int camera_attr_get_stream_rotation(camera_h camera, camera_rotation_e *rotation)
5646 {
5647         int ret = CAMERA_ERROR_NONE;
5648         camera_cli_s *pc = (camera_cli_s *)camera;
5649         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_STREAM_ROTATION;
5650
5651         if (!pc || !pc->cb_info || !rotation) {
5652                 CAM_LOG_ERROR("NULL pointer %p %p", pc, rotation);
5653                 return CAMERA_ERROR_INVALID_PARAMETER;
5654         }
5655
5656         CAM_LOG_INFO("Enter");
5657
5658         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5659
5660         if (ret == CAMERA_ERROR_NONE)
5661                 *rotation = (camera_rotation_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_STREAM_ROTATION];
5662
5663         CAM_LOG_INFO("ret : 0x%x", ret);
5664
5665         return ret;
5666 }
5667
5668
5669 int camera_attr_set_stream_flip(camera_h camera, camera_flip_e flip)
5670 {
5671         int ret = CAMERA_ERROR_NONE;
5672         camera_cli_s *pc = (camera_cli_s *)camera;
5673         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_STREAM_FLIP;
5674         camera_msg_param param;
5675         int set_flip = (int)flip;
5676
5677         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5678
5679         CAM_LOG_INFO("Enter");
5680
5681         CAMERA_MSG_PARAM_SET(param, INT, set_flip);
5682
5683         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
5684
5685         CAM_LOG_INFO("ret : 0x%x", ret);
5686
5687         return ret;
5688 }
5689
5690
5691 int camera_attr_get_stream_flip(camera_h camera, camera_flip_e *flip)
5692 {
5693         int ret = CAMERA_ERROR_NONE;
5694         camera_cli_s *pc = (camera_cli_s *)camera;
5695         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_STREAM_FLIP;
5696
5697         if (!pc || !pc->cb_info || !flip) {
5698                 CAM_LOG_ERROR("NULL pointer %p %p", pc, flip);
5699                 return CAMERA_ERROR_INVALID_PARAMETER;
5700         }
5701
5702         CAM_LOG_INFO("Enter");
5703
5704         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5705
5706         if (ret == CAMERA_ERROR_NONE)
5707                 *flip = (camera_flip_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_STREAM_FLIP];
5708
5709         CAM_LOG_INFO("ret : 0x%x", ret);
5710
5711         return ret;
5712 }
5713
5714 int camera_attr_set_hdr_mode(camera_h camera, camera_attr_hdr_mode_e mode)
5715 {
5716         return __set_mode(camera, MUSE_CAMERA_API_ATTR_SET_HDR_MODE, (int)mode);
5717 }
5718
5719
5720 int camera_attr_get_hdr_mode(camera_h camera, camera_attr_hdr_mode_e *mode)
5721 {
5722         int ret = CAMERA_ERROR_NONE;
5723         camera_cli_s *pc = (camera_cli_s *)camera;
5724         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_HDR_MODE;
5725
5726         if (!pc || !pc->cb_info || !mode) {
5727                 CAM_LOG_ERROR("NULL pointer %p %p", pc, mode);
5728                 return CAMERA_ERROR_INVALID_PARAMETER;
5729         }
5730
5731         CAM_LOG_INFO("Enter");
5732
5733         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5734
5735         if (ret == CAMERA_ERROR_NONE)
5736                 *mode = (camera_attr_hdr_mode_e)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_HDR_MODE];
5737
5738         CAM_LOG_INFO("ret : 0x%x", ret);
5739
5740         return ret;
5741 }
5742
5743
5744 bool camera_attr_is_supported_hdr_capture(camera_h camera)
5745 {
5746         return __is_supported(camera, MUSE_CAMERA_API_ATTR_IS_SUPPORTED_HDR_CAPTURE);
5747 }
5748
5749
5750 int camera_attr_set_hdr_capture_progress_cb(camera_h camera, camera_attr_hdr_progress_cb callback, void *user_data)
5751 {
5752         int ret = CAMERA_ERROR_NONE;
5753         camera_cli_s *pc = (camera_cli_s *)camera;
5754         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_HDR_CAPTURE_PROGRESS_CB;
5755
5756         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5757
5758         CAM_LOG_INFO("Enter");
5759
5760         if (!camera_attr_is_supported_hdr_capture(camera)) {
5761                 CAM_LOG_ERROR("HDR not supported");
5762                 return CAMERA_ERROR_NOT_SUPPORTED;
5763         }
5764
5765         if (!callback) {
5766                 CAM_LOG_ERROR("NULL callback");
5767                 return CAMERA_ERROR_INVALID_PARAMETER;
5768         }
5769
5770         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5771
5772         if (ret == CAMERA_ERROR_NONE) {
5773                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS]);
5774
5775                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS] = callback;
5776                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS] = user_data;
5777
5778                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS]);
5779         }
5780
5781         CAM_LOG_INFO("ret : 0x%x", ret);
5782
5783         return ret;
5784 }
5785
5786
5787 int camera_attr_unset_hdr_capture_progress_cb(camera_h camera)
5788 {
5789         int ret = CAMERA_ERROR_NONE;
5790         camera_cli_s *pc = (camera_cli_s *)camera;
5791         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_UNSET_HDR_CAPTURE_PROGRESS_CB;
5792
5793         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5794
5795         CAM_LOG_INFO("Enter");
5796
5797         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5798
5799         if (ret == CAMERA_ERROR_NONE) {
5800                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS]);
5801
5802                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS] = NULL;
5803                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS] = NULL;
5804
5805                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_HDR_PROGRESS]);
5806         }
5807
5808         CAM_LOG_INFO("ret : 0x%x", ret);
5809
5810         return ret;
5811 }
5812
5813
5814 int camera_attr_enable_anti_shake(camera_h camera, bool enable)
5815 {
5816         return __set_enable(camera, MUSE_CAMERA_API_ATTR_ENABLE_ANTI_SHAKE, (int)enable);
5817 }
5818
5819
5820 int camera_attr_is_enabled_anti_shake(camera_h camera, bool *enabled)
5821 {
5822         int ret = CAMERA_ERROR_NONE;
5823         camera_cli_s *pc = (camera_cli_s *)camera;
5824         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_IS_ENABLED_ANTI_SHAKE;
5825
5826         if (!pc || !pc->cb_info || !enabled) {
5827                 CAM_LOG_ERROR("NULL pointer %p %p", pc, enabled);
5828                 return CAMERA_ERROR_INVALID_PARAMETER;
5829         }
5830
5831         CAM_LOG_INFO("Enter");
5832
5833         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5834
5835         if (ret == CAMERA_ERROR_NONE)
5836                 *enabled = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENABLED_ANTI_SHAKE];
5837
5838         CAM_LOG_INFO("ret : 0x%x", ret);
5839
5840         return ret;
5841 }
5842
5843
5844 bool camera_attr_is_supported_anti_shake(camera_h camera)
5845 {
5846         return __is_supported(camera, MUSE_CAMERA_API_ATTR_IS_SUPPORTED_ANTI_SHAKE);
5847 }
5848
5849
5850 int camera_attr_enable_video_stabilization(camera_h camera, bool enable)
5851 {
5852         return __set_enable(camera, MUSE_CAMERA_API_ATTR_ENABLE_VIDEO_STABILIZATION, (int)enable);
5853 }
5854
5855
5856 int camera_attr_is_enabled_video_stabilization(camera_h camera, bool *enabled)
5857 {
5858         int ret = CAMERA_ERROR_NONE;
5859         camera_cli_s *pc = (camera_cli_s *)camera;
5860         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_IS_ENABLED_VIDEO_STABILIZATION;
5861
5862         if (!pc || !pc->cb_info || !enabled) {
5863                 CAM_LOG_ERROR("NULL pointer %p %p", pc, enabled);
5864                 return CAMERA_ERROR_INVALID_PARAMETER;
5865         }
5866
5867         CAM_LOG_INFO("Enter");
5868
5869         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5870
5871         if (ret == CAMERA_ERROR_NONE)
5872                 *enabled = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENABLED_VIDEO_STABILIZATION];
5873
5874         CAM_LOG_INFO("ret : 0x%x", ret);
5875
5876         return ret;
5877 }
5878
5879
5880 bool camera_attr_is_supported_video_stabilization(camera_h camera)
5881 {
5882         return __is_supported(camera, MUSE_CAMERA_API_ATTR_IS_SUPPORTED_VIDEO_STABILIZATION);
5883 }
5884
5885
5886 int camera_attr_enable_auto_contrast(camera_h camera, bool enable)
5887 {
5888         return __set_enable(camera, MUSE_CAMERA_API_ATTR_ENABLE_AUTO_CONTRAST, (int)enable);
5889 }
5890
5891
5892 int camera_attr_is_enabled_auto_contrast(camera_h camera, bool *enabled)
5893 {
5894         int ret = CAMERA_ERROR_NONE;
5895         camera_cli_s *pc = (camera_cli_s *)camera;
5896         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_IS_ENABLED_AUTO_CONTRAST;
5897
5898         if (!pc || !pc->cb_info || !enabled) {
5899                 CAM_LOG_ERROR("NULL pointer %p %p", pc, enabled);
5900                 return CAMERA_ERROR_INVALID_PARAMETER;
5901         }
5902
5903         CAM_LOG_INFO("Enter");
5904
5905         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5906
5907         if (ret == CAMERA_ERROR_NONE)
5908                 *enabled = (bool)pc->cb_info->get_int[MUSE_CAMERA_GET_INT_ENABLED_AUTO_CONTRAST];
5909
5910         CAM_LOG_INFO("ret : 0x%x", ret);
5911
5912         return ret;
5913 }
5914
5915
5916 bool camera_attr_is_supported_auto_contrast(camera_h camera)
5917 {
5918         return __is_supported(camera, MUSE_CAMERA_API_ATTR_IS_SUPPORTED_AUTO_CONTRAST);
5919 }
5920
5921
5922 int camera_attr_disable_shutter_sound(camera_h camera, bool disable)
5923 {
5924         int ret = CAMERA_ERROR_NONE;
5925         camera_cli_s *pc = (camera_cli_s *)camera;
5926         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_DISABLE_SHUTTER_SOUND;
5927         camera_msg_param param;
5928         int set_disable = (int)disable;
5929
5930         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5931
5932         CAM_LOG_INFO("Enter");
5933
5934         CAMERA_MSG_PARAM_SET(param, INT, set_disable);
5935
5936         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
5937
5938         CAM_LOG_INFO("ret : 0x%x", ret);
5939
5940         return ret;
5941 }
5942
5943
5944 int camera_attr_set_pan(camera_h camera, camera_attr_ptz_move_type_e move_type, int pan_step)
5945 {
5946         int ret = CAMERA_ERROR_NONE;
5947         camera_cli_s *pc = (camera_cli_s *)camera;
5948         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_PAN;
5949         camera_msg_param param0;
5950         camera_msg_param param1;
5951
5952         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
5953
5954         CAM_LOG_INFO("Enter");
5955
5956         CAMERA_MSG_PARAM_SET(param0, INT, move_type);
5957         CAMERA_MSG_PARAM_SET(param1, INT, pan_step);
5958
5959         _camera_msg_send_param2_int(api, pc->cb_info, &ret,
5960                 &param0, &param1, CAMERA_CB_TIMEOUT);
5961
5962         CAM_LOG_INFO("ret : 0x%x", ret);
5963
5964         return ret;
5965 }
5966
5967
5968 int camera_attr_get_pan(camera_h camera, int *pan_step)
5969 {
5970         int ret = CAMERA_ERROR_NONE;
5971         camera_cli_s *pc = (camera_cli_s *)camera;
5972         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_PAN;
5973
5974         if (!pc || !pc->cb_info || !pan_step) {
5975                 CAM_LOG_ERROR("NULL pointer %p %p", pc, pan_step);
5976                 return CAMERA_ERROR_INVALID_PARAMETER;
5977         }
5978
5979         CAM_LOG_INFO("Enter");
5980
5981         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
5982
5983         if (ret == CAMERA_ERROR_NONE)
5984                 *pan_step = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_PAN];
5985
5986         CAM_LOG_INFO("ret : 0x%x", ret);
5987
5988         return ret;
5989 }
5990
5991
5992 int camera_attr_get_pan_range(camera_h camera, int *min, int *max)
5993 {
5994         int ret = CAMERA_ERROR_NONE;
5995         camera_cli_s *pc = (camera_cli_s *)camera;
5996         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_PAN_RANGE;
5997
5998         if (!pc || !pc->cb_info || !min || !max) {
5999                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
6000                 return CAMERA_ERROR_INVALID_PARAMETER;
6001         }
6002
6003         CAM_LOG_INFO("Enter");
6004
6005         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6006
6007         if (ret == CAMERA_ERROR_NONE) {
6008                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_PAN_RANGE][0];
6009                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_PAN_RANGE][1];
6010         }
6011
6012         CAM_LOG_INFO("ret : 0x%x", ret);
6013
6014         return ret;
6015 }
6016
6017
6018 int camera_attr_set_tilt(camera_h camera, camera_attr_ptz_move_type_e move_type, int tilt_step)
6019 {
6020         int ret = CAMERA_ERROR_NONE;
6021         camera_cli_s *pc = (camera_cli_s *)camera;
6022         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_TILT;
6023         camera_msg_param param0;
6024         camera_msg_param param1;
6025
6026         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6027
6028         CAM_LOG_INFO("Enter");
6029
6030         CAMERA_MSG_PARAM_SET(param0, INT, move_type);
6031         CAMERA_MSG_PARAM_SET(param1, INT, tilt_step);
6032
6033         _camera_msg_send_param2_int(api, pc->cb_info, &ret,
6034                 &param0, &param1, CAMERA_CB_TIMEOUT);
6035
6036         CAM_LOG_INFO("ret : 0x%x", ret);
6037
6038         return ret;
6039 }
6040
6041
6042 int camera_attr_get_tilt(camera_h camera, int *tilt_step)
6043 {
6044         int ret = CAMERA_ERROR_NONE;
6045         camera_cli_s *pc = (camera_cli_s *)camera;
6046         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_TILT;
6047
6048         if (!pc || !pc->cb_info || !tilt_step) {
6049                 CAM_LOG_ERROR("NULL pointer %p %p", pc, tilt_step);
6050                 return CAMERA_ERROR_INVALID_PARAMETER;
6051         }
6052
6053         CAM_LOG_INFO("Enter");
6054
6055         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6056
6057         if (ret == CAMERA_ERROR_NONE)
6058                 *tilt_step = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_TILT];
6059
6060         CAM_LOG_INFO("ret : 0x%x", ret);
6061
6062         return ret;
6063 }
6064
6065
6066 int camera_attr_get_tilt_range(camera_h camera, int *min, int *max)
6067 {
6068         int ret = CAMERA_ERROR_NONE;
6069         camera_cli_s *pc = (camera_cli_s *)camera;
6070         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_TILT_RANGE;
6071
6072         if (!pc || !pc->cb_info || !min || !max) {
6073                 CAM_LOG_ERROR("NULL pointer %p %p %p", pc, min, max);
6074                 return CAMERA_ERROR_INVALID_PARAMETER;
6075         }
6076
6077         CAM_LOG_INFO("Enter");
6078
6079         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6080
6081         if (ret == CAMERA_ERROR_NONE) {
6082                 *min = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_TILT_RANGE][0];
6083                 *max = pc->cb_info->get_int_pair[MUSE_CAMERA_GET_INT_PAIR_TILT_RANGE][1];
6084         }
6085
6086         CAM_LOG_INFO("ret : 0x%x", ret);
6087
6088         return ret;
6089 }
6090
6091
6092 int camera_attr_set_ptz_type(camera_h camera, camera_attr_ptz_type_e ptz_type)
6093 {
6094         int ret = CAMERA_ERROR_NONE;
6095         camera_cli_s *pc = (camera_cli_s *)camera;
6096         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_PTZ_TYPE;
6097         camera_msg_param param;
6098         int set_ptz_type = (int)ptz_type;
6099
6100         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6101
6102         CAM_LOG_INFO("Enter");
6103
6104         CAMERA_MSG_PARAM_SET(param, INT, set_ptz_type);
6105
6106         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
6107
6108         CAM_LOG_INFO("ret : 0x%x", ret);
6109
6110         return ret;
6111 }
6112
6113
6114 int camera_attr_foreach_supported_ptz_type(camera_h camera, camera_attr_supported_ptz_type_cb foreach_cb, void *user_data)
6115 {
6116         int ret = CAMERA_ERROR_NONE;
6117         camera_cli_s *pc = (camera_cli_s *)camera;
6118         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_FOREACH_SUPPORTED_PTZ_TYPE;
6119
6120         if (!pc || !pc->cb_info || !foreach_cb) {
6121                 CAM_LOG_ERROR("NULL pointer %p %p", pc, foreach_cb);
6122                 return CAMERA_ERROR_INVALID_PARAMETER;
6123         }
6124
6125         CAM_LOG_INFO("Enter");
6126
6127         pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PTZ_TYPE] = foreach_cb;
6128         pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_FOREACH_SUPPORTED_PTZ_TYPE] = user_data;
6129
6130         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6131
6132         CAM_LOG_INFO("ret : 0x%x", ret);
6133
6134         return ret;
6135 }
6136
6137
6138 int camera_attr_set_display_roi_area(camera_h camera, int x, int y, int width, int height)
6139 {
6140         int ret = CAMERA_ERROR_NONE;
6141         camera_cli_s *pc = (camera_cli_s *)camera;
6142         muse_camera_api_e api = MUSE_CAMERA_API_SET_DISPLAY_ROI_AREA;
6143         int set_display_roi_area[4] = {x, y, width, height};
6144         char *msg = NULL;
6145         int length = 0;
6146
6147         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6148
6149         CAM_LOG_INFO("Enter");
6150
6151         if (pc->cb_info->is_evas_render) {
6152                 ret = mm_display_interface_evas_set_roi_area(pc->cb_info->dp_interface, x, y, width, height);
6153                 if (ret != MM_ERROR_NONE) {
6154                         CAM_LOG_ERROR("mm_evas_renderer_set_roi_area error 0x%x", ret);
6155                         return CAMERA_ERROR_INVALID_OPERATION;
6156                 }
6157         }
6158
6159         length = sizeof(set_display_roi_area) / sizeof(int) + \
6160                 (sizeof(set_display_roi_area) % sizeof(int) ? 1 : 0);
6161
6162         msg = muse_core_msg_new(api,
6163                 MUSE_TYPE_ARRAY, "set_display_roi_area", length, (int *)set_display_roi_area,
6164                 NULL);
6165
6166         __send_message_get_return(pc->cb_info, api, msg, CAMERA_CB_TIMEOUT, &ret);
6167
6168         return ret;
6169 }
6170
6171
6172 int camera_attr_get_display_roi_area(camera_h camera, int *x, int *y, int *width, int *height)
6173 {
6174         camera_cli_s *pc = (camera_cli_s *)camera;
6175         int ret = CAMERA_ERROR_NONE;
6176         muse_camera_api_e api = MUSE_CAMERA_API_GET_DISPLAY_ROI_AREA;
6177
6178         if (!pc || !pc->cb_info || !x || !y || !width || !height) {
6179                 CAM_LOG_ERROR("NULL pointer %p %p %p %p %p", pc, x, y, width, height);
6180                 return CAMERA_ERROR_INVALID_PARAMETER;
6181         }
6182
6183         CAM_LOG_INFO("Enter");
6184
6185         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6186
6187         if (ret == CAMERA_ERROR_NONE) {
6188                 *x = pc->cb_info->get_display_roi_area[0];
6189                 *y = pc->cb_info->get_display_roi_area[1];
6190                 *width = pc->cb_info->get_display_roi_area[2];
6191                 *height = pc->cb_info->get_display_roi_area[3];
6192         }
6193
6194         CAM_LOG_INFO("ret : 0x%x", ret);
6195
6196         return ret;
6197 }
6198
6199
6200 int camera_get_device_state(camera_device_e device, camera_device_state_e *state)
6201 {
6202         int ret = CAMERA_ERROR_NONE;
6203         int get_device_state = 0;
6204
6205         if (!state) {
6206                 CAM_LOG_ERROR("NULL pointer");
6207                 return CAMERA_ERROR_INVALID_PARAMETER;
6208         }
6209
6210         ret = _camera_independent_request(MUSE_CAMERA_API_GET_DEVICE_STATE,
6211                 (int)device, "get_device_state", &get_device_state);
6212
6213         if (ret == CAMERA_ERROR_NONE) {
6214                 *state = (camera_device_state_e)get_device_state;
6215                 CAM_LOG_INFO("device state %d", *state);
6216         } else {
6217                 CAM_LOG_ERROR("failed 0x%x", ret);
6218         }
6219
6220         return ret;
6221 }
6222
6223
6224 int camera_add_device_state_changed_cb(camera_device_state_changed_cb callback, void *user_data, int *cb_id)
6225 {
6226         int ret = CAMERA_ERROR_NONE;
6227         camera_device_state_e state = CAMERA_DEVICE_STATE_NULL;
6228         camera_cb_info *info = NULL;
6229
6230         if (!callback || !cb_id) {
6231                 CAM_LOG_ERROR("invalid pointer %p %p", callback, cb_id);
6232                 return CAMERA_ERROR_INVALID_PARAMETER;
6233         }
6234
6235         /* check camera support */
6236         ret = camera_get_device_state(CAMERA_DEVICE_CAMERA0, &state);
6237         if (ret != CAMERA_ERROR_NONE) {
6238                 CAM_LOG_ERROR("get device state failed");
6239                 return ret;
6240         }
6241
6242         g_mutex_lock(&g_cam_dev_state_changed_cb_lock);
6243
6244         info = g_new0(camera_cb_info, 1);
6245         if (!info) {
6246                 CAM_LOG_ERROR("info failed");
6247                 ret = CAMERA_ERROR_OUT_OF_MEMORY;
6248                 goto _DONE;
6249         }
6250
6251         info->id = ++g_cam_dev_state_changed_cb_id;
6252         info->callback = (void *)callback;
6253         info->user_data = user_data;
6254
6255         *cb_id = info->id;
6256
6257         /* subscribe dbus signal for camera state change */
6258         if (!g_cam_dev_state_changed_cb_conn) {
6259                 g_cam_dev_state_changed_cb_conn = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, NULL);
6260                 if (!g_cam_dev_state_changed_cb_conn) {
6261                         CAM_LOG_ERROR("failed to get gdbus connection");
6262                         ret = CAMERA_ERROR_INVALID_OPERATION;
6263                         goto _DONE;
6264                 }
6265
6266                 CAM_LOG_INFO("subscribe signal %s - %s - %s",
6267                         MM_CAMCORDER_DBUS_OBJECT,
6268                         MM_CAMCORDER_DBUS_INTERFACE_CAMERA,
6269                         MM_CAMCORDER_DBUS_SIGNAL_STATE_CHANGED);
6270
6271                 g_cam_dev_state_changed_cb_subscribe_id = g_dbus_connection_signal_subscribe(g_cam_dev_state_changed_cb_conn,
6272                         NULL, MM_CAMCORDER_DBUS_INTERFACE_CAMERA, MM_CAMCORDER_DBUS_SIGNAL_STATE_CHANGED, MM_CAMCORDER_DBUS_OBJECT, NULL,
6273                         G_DBUS_SIGNAL_FLAGS_NONE, (GDBusSignalCallback)__camera_device_state_changed_cb, NULL, NULL);
6274                 if (!g_cam_dev_state_changed_cb_subscribe_id) {
6275                         CAM_LOG_ERROR("failed to get gdbus connection");
6276                         ret = CAMERA_ERROR_INVALID_OPERATION;
6277                         goto _DONE;
6278                 }
6279
6280                 CAM_LOG_INFO("signal subscribe id %u", g_cam_dev_state_changed_cb_subscribe_id);
6281         }
6282
6283         g_cam_dev_state_changed_cb_list = g_list_prepend(g_cam_dev_state_changed_cb_list, (gpointer)info);
6284
6285         CAM_LOG_INFO("callback id %d", info->id);
6286
6287 _DONE:
6288         if (ret != CAMERA_ERROR_NONE) {
6289                 if (info) {
6290                         g_free(info);
6291                         info = NULL;
6292                 }
6293
6294                 if (g_cam_dev_state_changed_cb_conn) {
6295                         g_object_unref(g_cam_dev_state_changed_cb_conn);
6296                         g_cam_dev_state_changed_cb_conn = NULL;
6297                 }
6298         }
6299
6300         g_mutex_unlock(&g_cam_dev_state_changed_cb_lock);
6301
6302         return ret;
6303 }
6304
6305
6306 int camera_remove_device_state_changed_cb(int cb_id)
6307 {
6308         int ret = CAMERA_ERROR_NONE;
6309         camera_device_state_e state = CAMERA_DEVICE_STATE_NULL;
6310         GList *tmp_list = NULL;
6311         camera_cb_info *info = NULL;
6312
6313         /* check camera support */
6314         ret = camera_get_device_state(CAMERA_DEVICE_CAMERA0, &state);
6315         if (ret != CAMERA_ERROR_NONE) {
6316                 CAM_LOG_ERROR("get device state failed");
6317                 return ret;
6318         }
6319
6320         g_mutex_lock(&g_cam_dev_state_changed_cb_lock);
6321
6322         if (!g_cam_dev_state_changed_cb_list) {
6323                 CAM_LOG_ERROR("there is no callback info");
6324                 ret = CAMERA_ERROR_INVALID_OPERATION;
6325                 goto _DONE;
6326         }
6327
6328         tmp_list = g_cam_dev_state_changed_cb_list;
6329
6330         do {
6331                 info = tmp_list->data;
6332                 tmp_list = tmp_list->next;
6333
6334                 if (!info) {
6335                         CAM_LOG_WARNING("NULL info");
6336                         continue;
6337                 }
6338
6339                 if (info->id == cb_id) {
6340                         g_cam_dev_state_changed_cb_list = g_list_remove(g_cam_dev_state_changed_cb_list, info);
6341
6342                         g_free(info);
6343                         info = NULL;
6344
6345                         if (!g_cam_dev_state_changed_cb_list) {
6346                                 /* no remained callback */
6347                                 if (g_cam_dev_state_changed_cb_conn) {
6348                                         /* unsubscribe signal */
6349                                         g_dbus_connection_signal_unsubscribe(g_cam_dev_state_changed_cb_conn, g_cam_dev_state_changed_cb_subscribe_id);
6350                                         g_cam_dev_state_changed_cb_subscribe_id = 0;
6351
6352                                         /* unref connection */
6353                                         g_object_unref(g_cam_dev_state_changed_cb_conn);
6354                                         g_cam_dev_state_changed_cb_conn = NULL;
6355                                 }
6356                         }
6357
6358                         CAM_LOG_INFO("id %d callback removed", cb_id);
6359                         ret = CAMERA_ERROR_NONE;
6360
6361                         goto _DONE;
6362                 }
6363         } while (tmp_list);
6364
6365         CAM_LOG_ERROR("id %d callback not found", cb_id);
6366         ret = CAMERA_ERROR_INVALID_PARAMETER;
6367
6368 _DONE:
6369         g_mutex_unlock(&g_cam_dev_state_changed_cb_lock);
6370
6371         return ret;
6372 }
6373
6374
6375 //LCOV_EXCL_START
6376 int camera_media_bridge_set_bridge(camera_h camera, media_bridge_h bridge)
6377 {
6378         int ret = CAMERA_ERROR_NONE;
6379         camera_cli_s *pc = (camera_cli_s *)camera;
6380         muse_camera_api_e api = MUSE_CAMERA_API_SET_MEDIA_BRIDGE;
6381
6382         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6383
6384         g_mutex_lock(&pc->cb_info->bridge_lock);
6385
6386         if (pc->cb_info->bridge) {
6387                 CAM_LOG_ERROR("media bridge[%p] is already set", pc->cb_info->bridge);
6388                 ret = CAMERA_ERROR_INVALID_OPERATION;
6389                 goto _SET_MEDIA_BRIDGE_DONE;
6390         }
6391
6392         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6393         if (ret != CAMERA_ERROR_NONE) {
6394                 CAM_LOG_ERROR("set media bridge failed[0x%x]", ret);
6395                 goto _SET_MEDIA_BRIDGE_DONE;
6396         }
6397
6398         pc->cb_info->bridge = bridge;
6399
6400         CAM_LOG_INFO("[%p] set media bridge[%p]", camera, bridge);
6401
6402 _SET_MEDIA_BRIDGE_DONE:
6403         g_mutex_unlock(&pc->cb_info->bridge_lock);
6404
6405         return ret;
6406 }
6407
6408
6409 int camera_media_bridge_unset_bridge(camera_h camera)
6410 {
6411         int ret = CAMERA_ERROR_NONE;
6412         camera_cli_s *pc = (camera_cli_s *)camera;
6413         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_MEDIA_BRIDGE;
6414
6415         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6416
6417         g_mutex_lock(&pc->cb_info->bridge_lock);
6418
6419         if (!pc->cb_info->bridge) {
6420                 CAM_LOG_ERROR("no media bridge");
6421                 ret = CAMERA_ERROR_INVALID_OPERATION;
6422                 goto _UNSET_MEDIA_BRIDGE_DONE;
6423         }
6424
6425         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6426         if (ret != CAMERA_ERROR_NONE) {
6427                 CAM_LOG_ERROR("unset media bridge failed[0x%x]", ret);
6428                 goto _UNSET_MEDIA_BRIDGE_DONE;
6429         }
6430
6431         CAM_LOG_INFO("[%p] unset media bridge[%p]", camera, pc->cb_info->bridge);
6432
6433         pc->cb_info->bridge = NULL;
6434
6435 _UNSET_MEDIA_BRIDGE_DONE:
6436         g_mutex_unlock(&pc->cb_info->bridge_lock);
6437
6438         return ret;
6439 }
6440 //LCOV_EXCL_STOP
6441
6442
6443 int camera_create_network(camera_device_e device, camera_h *camera)
6444 {
6445         return _camera_create_private(device, true, camera);
6446 }
6447
6448
6449 int camera_device_manager_initialize(camera_device_manager_h *manager)
6450 {
6451         unsigned int i = 0;
6452         int ret = CAMERA_ERROR_NONE;
6453         void *dl_handle = NULL;
6454         camera_device_manager *new_manager = NULL;
6455         cdm_symbol_table sym_table[] = {
6456                 {(void **)&new_manager->initialize, "cdm_initialize"},
6457                 {(void **)&new_manager->deinitialize, "cdm_deinitialize"},
6458                 {(void **)&new_manager->get_device_list, "cdm_get_device_list"},
6459                 {(void **)&new_manager->add_device_connection_changed_cb, "cdm_add_device_connection_changed_cb"},
6460                 {(void **)&new_manager->remove_device_connection_changed_cb, "cdm_remove_device_connection_changed_cb"},
6461         };
6462
6463         CAMERA_CHECK_DEVICE_MANAGER;
6464
6465         new_manager = g_new0(camera_device_manager, 1);
6466
6467         if (!manager) {
6468                 CAM_LOG_ERROR("NULL manager");
6469                 ret = CAMERA_ERROR_INVALID_PARAMETER;
6470                 goto _INITIALIZE_FAILED;
6471         }
6472
6473         dl_handle = dlopen(LIB_CAMERA_DEVICE_MANAGER, RTLD_NOW);
6474         if (!dl_handle) {
6475                 CAM_LOG_ERROR("dlopen[%s] failed[%s]", LIB_CAMERA_DEVICE_MANAGER, dlerror());
6476                 ret = CAMERA_ERROR_INVALID_OPERATION;
6477                 goto _INITIALIZE_FAILED;
6478         }
6479
6480         /* get symbols */
6481         for (i = 0 ; i < G_N_ELEMENTS(sym_table) ; i++) {
6482                 *sym_table[i].func_ptr = dlsym(dl_handle, sym_table[i].func_name);
6483                 if (*sym_table[i].func_ptr == NULL) {
6484                         CAM_LOG_ERROR("symbol failed[%s]", sym_table[i].func_name);
6485                         ret = CAMERA_ERROR_INVALID_OPERATION;
6486                         goto _INITIALIZE_FAILED;
6487                 }
6488         }
6489
6490         ret = new_manager->initialize();
6491         if (ret != CAMERA_ERROR_NONE) {
6492                 CAM_LOG_ERROR("failed[0x%x]", ret);
6493                 goto _INITIALIZE_FAILED;
6494         }
6495
6496         new_manager->dl_handle = dl_handle;
6497         *manager = (camera_device_manager_h)new_manager;
6498
6499         CAM_LOG_INFO("camera device manager[%p](dl handle[%p]) initialized",
6500                 new_manager, dl_handle);
6501
6502         return CAMERA_ERROR_NONE;
6503
6504 _INITIALIZE_FAILED:
6505         if (dl_handle)
6506                 dlclose(dl_handle);
6507         g_free(new_manager);
6508         return ret;
6509 }
6510
6511
6512 //LCOV_EXCL_START
6513 int camera_device_manager_deinitialize(camera_device_manager_h manager)
6514 {
6515         int ret = CAMERA_ERROR_NONE;
6516         camera_device_manager *m = (camera_device_manager *)manager;
6517
6518         CAMERA_CHECK_DEVICE_MANAGER;
6519
6520         if (!m) {
6521                 CAM_LOG_ERROR("NULL manager");
6522                 return CAMERA_ERROR_INVALID_PARAMETER;
6523         }
6524
6525         CAM_LOG_INFO("deinitialize camera device manager[%p]", m);
6526
6527         ret = m->deinitialize();
6528         if (ret != CAMERA_ERROR_NONE) {
6529                 CAM_LOG_ERROR("failed[0x%x]", ret);
6530                 return ret;
6531         }
6532
6533         CAM_LOG_INFO("close dl handle[%p]", m->dl_handle);
6534
6535         dlclose(m->dl_handle);
6536
6537         memset(m, 0x0, sizeof(camera_device_manager));
6538         g_free(m);
6539
6540         return CAMERA_ERROR_NONE;
6541 }
6542
6543
6544 int camera_device_manager_foreach_supported_device(camera_device_manager_h manager, camera_supported_device_cb callback, void *user_data)
6545 {
6546         int ret = CAMERA_ERROR_NONE;
6547         unsigned int i = 0;
6548         camera_device_list_s device_list;
6549         camera_device_s *device = NULL;
6550         camera_device_manager *m = (camera_device_manager *)manager;
6551
6552         CAMERA_CHECK_DEVICE_MANAGER;
6553
6554         if (!m || !callback) {
6555                 CAM_LOG_ERROR("NULL parameter[%p,%p]", m, callback);
6556                 return CAMERA_ERROR_INVALID_PARAMETER;
6557         }
6558
6559         CAM_LOG_INFO("enter");
6560
6561         memset(&device_list, 0x0, sizeof(camera_device_list_s));
6562
6563         ret = m->get_device_list(&device_list);
6564         if (ret != CAMERA_ERROR_NONE) {
6565                 CAM_LOG_ERROR("failed[0x%x]", ret);
6566                 return ret;
6567         }
6568
6569         CAM_LOG_INFO("device count[%d]", device_list.count);
6570
6571         for (i = 0 ; i < device_list.count ; i++) {
6572                 device = &device_list.device[i];
6573
6574                 CAM_LOG_INFO("    [%d] : type[%d], index[%d], name[%s], id[%s], ex-stream[%d]",
6575                         i, device->type, device->index,
6576                         device->name, device->id, device->extra_stream_num);
6577
6578                 if (!callback(device->type, device->index, device->name,
6579                                 device->id, device->extra_stream_num, user_data)) {
6580                         CAM_LOG_WARNING("callback is stopped[called:%u,total:%u]",
6581                                 i + 1, device_list.count);
6582                         break;
6583                 }
6584         }
6585
6586         return CAMERA_ERROR_NONE;
6587 }
6588
6589
6590 int camera_device_manager_add_device_connection_changed_cb(camera_device_manager_h manager,
6591         camera_device_connection_changed_cb callback, void *user_data, int *cb_id)
6592 {
6593         int ret = CAMERA_ERROR_NONE;
6594         camera_device_manager *m = (camera_device_manager *)manager;
6595
6596         CAMERA_CHECK_DEVICE_MANAGER;
6597
6598         if (!m || !callback || !cb_id) {
6599                 CAM_LOG_ERROR("NULL parameter[%p,%p,%p]", m, callback, cb_id);
6600                 return CAMERA_ERROR_INVALID_PARAMETER;
6601         }
6602
6603         CAM_LOG_INFO("enter");
6604
6605         ret = m->add_device_connection_changed_cb(callback, user_data, cb_id);
6606         if (ret != CAMERA_ERROR_NONE) {
6607                 CAM_LOG_ERROR("failed[0x%x]", ret);
6608                 return ret;
6609         }
6610
6611         CAM_LOG_INFO("cb_id[%d] added", *cb_id);
6612
6613         return CAMERA_ERROR_NONE;
6614 }
6615
6616
6617 int camera_device_manager_remove_device_connection_changed_cb(camera_device_manager_h manager, int cb_id)
6618 {
6619         int ret = CAMERA_ERROR_NONE;
6620         camera_device_manager *m = (camera_device_manager *)manager;
6621
6622         CAMERA_CHECK_DEVICE_MANAGER;
6623
6624         if (!m) {
6625                 CAM_LOG_ERROR("NULL manager");
6626                 return CAMERA_ERROR_INVALID_PARAMETER;
6627         }
6628
6629         CAM_LOG_INFO("enter - cb_id[%d]", cb_id);
6630
6631         ret = m->remove_device_connection_changed_cb(cb_id);
6632         if (ret != CAMERA_ERROR_NONE) {
6633                 CAM_LOG_ERROR("failed[0x%x]", ret);
6634                 return ret;
6635         }
6636
6637         CAM_LOG_INFO("cb_id[%d] removed", cb_id);
6638
6639         return CAMERA_ERROR_NONE;
6640 }
6641 //LCOV_EXCL_STOP
6642
6643
6644 int camera_set_extra_preview_cb(camera_h camera, camera_extra_preview_cb callback, void *user_data)
6645 {
6646         int ret = CAMERA_ERROR_NONE;
6647         camera_cli_s *pc = (camera_cli_s *)camera;
6648         muse_camera_api_e api = MUSE_CAMERA_API_SET_EXTRA_PREVIEW_CB;
6649
6650         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6651
6652         if (!camera_is_supported_extra_preview(camera)) {
6653                 CAM_LOG_ERROR("extra preview is not supported");
6654                 return CAMERA_ERROR_NOT_SUPPORTED;
6655         }
6656
6657         if (!callback) {
6658                 CAM_LOG_ERROR("NULL callback");
6659                 return CAMERA_ERROR_INVALID_PARAMETER;
6660         }
6661
6662         CAM_LOG_INFO("Enter");
6663
6664         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6665
6666         if (ret == CAMERA_ERROR_NONE) {
6667                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW]);
6668
6669                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW] = callback;
6670                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW] = user_data;
6671
6672                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW]);
6673         }
6674
6675         CAM_LOG_INFO("ret : 0x%x", ret);
6676
6677         return ret;
6678 }
6679
6680
6681 int camera_unset_extra_preview_cb(camera_h camera)
6682 {
6683         int ret = CAMERA_ERROR_NONE;
6684         camera_cli_s *pc = (camera_cli_s *)camera;
6685         muse_camera_api_e api = MUSE_CAMERA_API_UNSET_EXTRA_PREVIEW_CB;
6686
6687         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6688
6689         if (!camera_is_supported_extra_preview(camera)) {
6690                 CAM_LOG_ERROR("extra preview is not supported");
6691                 return CAMERA_ERROR_NOT_SUPPORTED;
6692         }
6693
6694         CAM_LOG_INFO("Enter");
6695
6696         _camera_msg_send(api, NULL, pc->cb_info, &ret, CAMERA_CB_TIMEOUT);
6697
6698         if (ret == CAMERA_ERROR_NONE) {
6699                 g_mutex_lock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW]);
6700
6701                 pc->cb_info->user_cb[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW] = NULL;
6702                 pc->cb_info->user_data[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW] = NULL;
6703
6704                 g_mutex_unlock(&pc->cb_info->user_cb_mutex[MUSE_CAMERA_EVENT_TYPE_EXTRA_PREVIEW]);
6705         }
6706
6707         CAM_LOG_INFO("ret : 0x%x", ret);
6708
6709         return ret;
6710 }
6711
6712
6713 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)
6714 {
6715         int ret = CAMERA_ERROR_NONE;
6716         int stream_format[4] = {pixel_format, width, height, fps};
6717         char *msg = NULL;
6718         camera_cli_s *pc = (camera_cli_s *)camera;
6719         muse_camera_api_e api = MUSE_CAMERA_API_SET_EXTRA_PREVIEW_STREAM_FORMAT;
6720
6721         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6722
6723         CAM_LOG_INFO("Enter - stream[%d],[%d,%dx%d,%d]",
6724                 stream_id, pixel_format, width, height, fps);
6725
6726         msg = muse_core_msg_new(api,
6727                 MUSE_TYPE_INT, "stream_id", stream_id,
6728                 MUSE_TYPE_ARRAY, "stream_format", 4, stream_format,
6729                 NULL);
6730
6731         __send_message_get_return(pc->cb_info, api, msg, CAMERA_CB_TIMEOUT, &ret);
6732
6733         return ret;
6734 }
6735
6736
6737 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)
6738 {
6739         int ret = CAMERA_ERROR_NONE;
6740         camera_cli_s *pc = (camera_cli_s *)camera;
6741         camera_msg_param param;
6742         muse_camera_api_e api = MUSE_CAMERA_API_GET_EXTRA_PREVIEW_STREAM_FORMAT;
6743
6744         if (!pc || !pc->cb_info || !pixel_format || !width || !height || !fps) {
6745                 CAM_LOG_ERROR("NULL pointer %p %p %p %p %p", pc, pixel_format, width, height, fps);
6746                 return CAMERA_ERROR_INVALID_PARAMETER;
6747         }
6748
6749         CAM_LOG_INFO("Enter - stream[%d]", stream_id);
6750
6751         CAMERA_MSG_PARAM_SET(param, INT, stream_id);
6752
6753         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
6754
6755         if (ret == CAMERA_ERROR_NONE) {
6756                 *pixel_format = (camera_pixel_format_e)pc->cb_info->get_extra_preview_stream_format[0];
6757                 *width = pc->cb_info->get_extra_preview_stream_format[1];
6758                 *height = pc->cb_info->get_extra_preview_stream_format[2];
6759                 *fps = pc->cb_info->get_extra_preview_stream_format[3];
6760         }
6761
6762         CAM_LOG_INFO("ret : 0x%x", ret);
6763
6764         return ret;
6765 }
6766
6767
6768 int camera_attr_set_extra_preview_bitrate(camera_h camera, int stream_id, int bitrate)
6769 {
6770         int ret = CAMERA_ERROR_NONE;
6771         camera_cli_s *pc = (camera_cli_s *)camera;
6772         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_EXTRA_PREVIEW_BITRATE;
6773         camera_msg_param param0;
6774         camera_msg_param param1;
6775
6776         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6777
6778         CAM_LOG_INFO("Enter - stream[%d], bitrate[%d]", stream_id, bitrate);
6779
6780         CAMERA_MSG_PARAM_SET(param0, INT, stream_id);
6781         CAMERA_MSG_PARAM_SET(param1, INT, bitrate);
6782
6783         _camera_msg_send_param2_int(api, pc->cb_info, &ret,
6784                 &param0, &param1, CAMERA_CB_TIMEOUT);
6785
6786         CAM_LOG_INFO("ret : 0x%x", ret);
6787
6788         return ret;
6789 }
6790
6791
6792 int camera_attr_get_extra_preview_bitrate(camera_h camera, int stream_id, int *bitrate)
6793 {
6794         int ret = CAMERA_ERROR_NONE;
6795         camera_cli_s *pc = (camera_cli_s *)camera;
6796         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EXTRA_PREVIEW_BITRATE;
6797         camera_msg_param param;
6798
6799         if (!pc || !pc->cb_info || !bitrate) {
6800                 CAM_LOG_ERROR("NULL pointer %p %p", pc, bitrate);
6801                 return CAMERA_ERROR_INVALID_PARAMETER;
6802         }
6803
6804         CAM_LOG_INFO("Enter - stream[%d]", stream_id);
6805
6806         CAMERA_MSG_PARAM_SET(param, INT, stream_id);
6807
6808         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
6809
6810         if (ret == CAMERA_ERROR_NONE) {
6811                 *bitrate = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_EXTRA_PREVIEW_BITRATE];
6812                 CAM_LOG_INFO("get bitrate[%d] for stream[%d]", *bitrate, stream_id);
6813         } else {
6814                 CAM_LOG_ERROR("get bitrate failed for stream[%d] : 0x%x", stream_id, ret);
6815         }
6816
6817         return ret;
6818 }
6819
6820
6821 int camera_attr_set_extra_preview_gop_interval(camera_h camera, int stream_id, int interval)
6822 {
6823         int ret = CAMERA_ERROR_NONE;
6824         camera_cli_s *pc = (camera_cli_s *)camera;
6825         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_SET_EXTRA_PREVIEW_GOP_INTERVAL;
6826         camera_msg_param param0;
6827         camera_msg_param param1;
6828
6829         CAMERA_CHECK_HANDLE_RETURN_VAL(pc, CAMERA_ERROR_INVALID_PARAMETER);
6830
6831         CAM_LOG_INFO("Enter - stream[%d], GOP interval[%d]", stream_id, interval);
6832
6833         CAMERA_MSG_PARAM_SET(param0, INT, stream_id);
6834         CAMERA_MSG_PARAM_SET(param1, INT, interval);
6835
6836         _camera_msg_send_param2_int(api, pc->cb_info, &ret,
6837                 &param0, &param1, CAMERA_CB_TIMEOUT);
6838
6839         CAM_LOG_INFO("ret : 0x%x", ret);
6840
6841         return ret;
6842 }
6843
6844
6845 int camera_attr_get_extra_preview_gop_interval(camera_h camera, int stream_id, int *interval)
6846 {
6847         int ret = CAMERA_ERROR_NONE;
6848         camera_cli_s *pc = (camera_cli_s *)camera;
6849         muse_camera_api_e api = MUSE_CAMERA_API_ATTR_GET_EXTRA_PREVIEW_GOP_INTERVAL;
6850         camera_msg_param param;
6851
6852         if (!pc || !pc->cb_info || !interval) {
6853                 CAM_LOG_ERROR("NULL pointer %p %p", pc, interval);
6854                 return CAMERA_ERROR_INVALID_PARAMETER;
6855         }
6856
6857         CAM_LOG_INFO("Enter - stream[%d]", stream_id);
6858
6859         CAMERA_MSG_PARAM_SET(param, INT, stream_id);
6860
6861         _camera_msg_send_param1(api, pc->cb_info, &ret, &param, CAMERA_CB_TIMEOUT);
6862
6863         if (ret == CAMERA_ERROR_NONE) {
6864                 *interval = pc->cb_info->get_int[MUSE_CAMERA_GET_INT_EXTRA_PREVIEW_GOP_INTERVAL];
6865                 CAM_LOG_INFO("get GOP interval[%d] for stream[%d]", *interval, stream_id);
6866         } else {
6867                 CAM_LOG_ERROR("get GOP interval failed for stream[%d] : 0x%x", stream_id, ret);
6868         }
6869
6870         return ret;
6871 }
6872
6873
6874 int camera_attr_get_preview_frame_rotation(camera_h camera, camera_rotation_e *rotation)
6875 {
6876         camera_cli_s *pc = (camera_cli_s *)camera;
6877
6878         if (!pc || !pc->cb_info || !rotation) {
6879                 CAM_LOG_ERROR("NULL pointer %p %p", pc, rotation);
6880                 return CAMERA_ERROR_INVALID_PARAMETER;
6881         }
6882
6883         if (!pc->cb_info->stream_data) {
6884                 CAM_LOG_ERROR("no stream data, maybe it's not in preview callback");
6885                 return CAMERA_ERROR_INVALID_OPERATION;
6886         }
6887
6888         *rotation = pc->cb_info->stream_data->rotation;
6889
6890         CAM_LOG_DEBUG("frame rotation[%d]", *rotation);
6891
6892         return CAMERA_ERROR_NONE;
6893 }
6894
6895
6896 int _camera_get_log_level(void)
6897 {
6898         return g_camera_log_level;
6899 }
6900