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