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