[TV] Build fix: add sound_server.ready
[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 #ifdef TIZEN_MICRO
43 #define VCONF_KEY_VR_LEFTHAND_ENABLED           VCONFKEY_SETAPPL_PERFERED_ARM_LEFT_BOOL
44 #endif
45 #endif
46
47 #define PA_READY "/tmp/.pa_ready"
48
49 #ifdef TIZEN_TV
50 #define SOUND_SERVER_READY "/tmp/.sound_server_ready"
51 #endif
52
53 #define MMSOUND_ENTER_CRITICAL_SECTION(x_mutex) \
54 switch ( pthread_mutex_lock( x_mutex ) ) \
55 { \
56 case EINVAL: \
57         debug_warning("try mutex init..\n"); \
58         if( 0 > pthread_mutex_init( x_mutex, NULL) ) { \
59                 return; \
60         } else { \
61                 break; \
62         } \
63         return; \
64 case 0: \
65         break; \
66 default: \
67         debug_error("mutex lock failed\n"); \
68         return; \
69 }
70
71 #define MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(x_mutex,x_return) \
72 switch ( pthread_mutex_lock( x_mutex ) ) \
73 { \
74 case EINVAL: \
75         debug_warning("try mutex init..\n"); \
76         if( 0 > pthread_mutex_init( x_mutex, NULL) ) { \
77                 return x_return; \
78         } else { \
79                 break; \
80         } \
81         return x_return; \
82 case 0: \
83         break; \
84 default: \
85         debug_error("mutex lock failed\n"); \
86         return x_return; \
87 }
88
89 #define MMSOUND_LEAVE_CRITICAL_SECTION(x_mutex) \
90 if( pthread_mutex_unlock( x_mutex ) ) { \
91         debug_error("mutex unlock failed\n"); \
92 }
93
94 #define MMSOUND_STRNCPY(dst, src, size) \
95 do { \
96         if (dst == NULL) \
97                 debug_error("STRNCPY ERROR: Destination String is NULL"); \
98         else if (src == NULL) \
99                 debug_error("STRNCPY ERROR: Source String is NULL"); \
100         else if (size <= 0) \
101                 debug_error("STRNCPY ERROR: Size(%d) <= 0", size); \
102         else { \
103                 strncpy(dst, src, size - 1); \
104                 dst[size - 1] = '\0';\
105         } \
106 } while(0)
107
108 #endif /* __MM_SOUND_COMMON_H__ */
109