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