Merge branch 'tizen_3.0' into tizen
[platform/core/multimedia/libmm-sound.git] / include / mm_sound_common.h
1 /*
2  * libmm-sound
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Seungbae Shin <seungbae.shin@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #ifndef __MM_SOUND_COMMON_H__
23 #define __MM_SOUND_COMMON_H__
24
25 #include <errno.h>
26
27 ///////////////////////////////////
28 ////     MMSOUND VOLUME APIs
29 ///////////////////////////////////
30 #define VCONF_KEY_VOLUME_PREFIX                         "file/private/sound/volume"
31 #define VCONF_KEY_VOLUME_TYPE_SYSTEM            VCONF_KEY_VOLUME_PREFIX"/system"
32 #define VCONF_KEY_VOLUME_TYPE_NOTIFICATION      VCONF_KEY_VOLUME_PREFIX"/notification"
33 #define VCONF_KEY_VOLUME_TYPE_ALARM                     VCONF_KEY_VOLUME_PREFIX"/alarm"
34 #define VCONF_KEY_VOLUME_TYPE_RINGTONE          VCONF_KEY_VOLUME_PREFIX"/ringtone"
35 #define VCONF_KEY_VOLUME_TYPE_MEDIA                     VCONF_KEY_VOLUME_PREFIX"/media"
36 #define VCONF_KEY_VOLUME_TYPE_CALL                      VCONF_KEY_VOLUME_PREFIX"/call"
37 #define VCONF_KEY_VOLUME_TYPE_VOIP                      VCONF_KEY_VOLUME_PREFIX"/voip"
38 #define VCONF_KEY_VOLUME_TYPE_VOICE             VCONF_KEY_VOLUME_PREFIX"/voice"
39 #define VCONF_KEY_VOLUME_TYPE_ANDROID           VCONF_KEY_VOLUME_PREFIX"/fixed"
40
41 #ifndef _TIZEN_PUBLIC_
42 #define VCONF_KEY_VR_LEFTHAND_ENABLED           VCONFKEY_SETAPPL_PERFERED_ARM_LEFT_BOOL
43 #endif
44
45 #define PA_READY "/tmp/.pa_ready"
46 #ifdef USE_LWIPC
47 #define SOUND_SERVER_READY "/tmp/.sound_server_ready"
48 #endif
49 #define FOCUS_SERVER_READY "/tmp/.focus_server_ready"
50
51 #define MMSOUND_ENTER_CRITICAL_SECTION(x_mutex) \
52 switch ( pthread_mutex_lock( x_mutex ) ) \
53 { \
54 case EINVAL: \
55         debug_warning("try mutex init..\n"); \
56         if( 0 > pthread_mutex_init( x_mutex, NULL) ) { \
57                 return; \
58         } else { \
59                 break; \
60         } \
61         return; \
62 case 0: \
63         break; \
64 default: \
65         debug_error("mutex lock failed\n"); \
66         return; \
67 }
68
69 #define MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(x_mutex,x_return) \
70 switch ( pthread_mutex_lock( x_mutex ) ) \
71 { \
72 case EINVAL: \
73         debug_warning("try mutex init..\n"); \
74         if( 0 > pthread_mutex_init( x_mutex, NULL) ) { \
75                 return x_return; \
76         } else { \
77                 break; \
78         } \
79         return x_return; \
80 case 0: \
81         break; \
82 default: \
83         debug_error("mutex lock failed\n"); \
84         return x_return; \
85 }
86
87 #define MMSOUND_LEAVE_CRITICAL_SECTION(x_mutex) \
88 if( pthread_mutex_unlock( x_mutex ) ) { \
89         debug_error("mutex unlock failed\n"); \
90 }
91
92 #define MMSOUND_STRNCPY(dst, src, size) \
93 do { \
94         if (dst == NULL) \
95                 debug_error("STRNCPY ERROR: Destination String is NULL"); \
96         else if (src == NULL) \
97                 debug_error("STRNCPY ERROR: Source String is NULL"); \
98         else if (size <= 0) \
99                 debug_error("STRNCPY ERROR: Size(%d) <= 0", size); \
100         else { \
101                 strncpy(dst, src, size - 1); \
102                 dst[size - 1] = '\0';\
103         } \
104 } while(0)
105
106 #endif /* __MM_SOUND_COMMON_H__ */
107