init pending state when new state is same with current, remove useless debug
[platform/core/multimedia/libmm-player.git] / src / include / mm_player_utils.h
1 /*
2  * libmm-player
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: JongHyuk Choi <jhchoi.choi@samsung.com>, YeJin Cho <cho.yejin@samsung.com>, YoungHwan An <younghwan_.an@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 __MMF_PLAYER_UTILS_H__
23 #define __MMF_PLAYER_UTILS_H__
24
25 #include <glib.h>
26 #include <gst/gst.h>
27 #include <mm_player_ini.h>
28 #include <mm_types.h>
29 #include <mm_error.h>
30 #include <mm_message.h>
31
32 #ifdef __cplusplus
33         extern "C" {
34 #endif
35
36 /* general */
37 #ifndef ARRAY_SIZE
38 #define ARRAY_SIZE(arr)         (sizeof(arr) / sizeof((arr)[0]))
39 #endif
40
41 #define MMPLAYER_MAX_INT        (2147483647)
42
43 #define MMPLAYER_FREEIF(x) \
44 if ( x ) \
45         g_free( x ); \
46 x = NULL;
47
48 #define MMPLAYER_CMD_LOCK(x_player) \
49 do \
50 { \
51         GMutex* cmd_lock = ((mm_player_t *)x_player)->cmd_lock; \
52         if (cmd_lock) \
53                 g_mutex_lock(cmd_lock); \
54         else \
55         { \
56                 debug_log("don't get command lock"); \
57                 return MM_ERROR_PLAYER_NOT_INITIALIZED; \
58         } \
59 } while (0);
60
61 #define MMPLAYER_CMD_UNLOCK(x_player)   g_mutex_unlock( ((mm_player_t*)x_player)->cmd_lock )
62
63 #define MMPLAYER_MSG_POST_LOCK(x_player)        g_mutex_lock( ((mm_player_t*)x_player)->msg_cb_lock )
64 #define MMPLAYER_MSG_POST_UNLOCK(x_player)      g_mutex_unlock( ((mm_player_t*)x_player)->msg_cb_lock )
65
66 #define MMPLAYER_GET_ATTRS(x_player)            ((mm_player_t*)x_player)->attrs
67
68 /* sbs : for bluetooth */
69 #define MAX_SOUND_DEVICE_LEN    18      
70
71 /* element linking */
72 #ifdef GST_EXT_PAD_LINK_UNCHECKED
73 #define GST_ELEMENT_LINK_FILTERED       gst_element_link_filtered_unchecked
74 #define GST_ELEMENT_LINK_MANY           gst_element_link_many_unchecked
75 #define GST_ELEMENT_LINK                        gst_element_link_unchecked
76 #define GST_ELEMENT_LINK_PADS           gst_element_link_pads_unchecked
77 #define GST_PAD_LINK                            gst_pad_link_unchecked
78 #else
79 #define GST_ELEMENT_LINK_FILTERED       gst_element_link_filtered
80 #define GST_ELEMENT_LINK_MANY           gst_element_link_many
81 #define GST_ELEMENT_LINK                        gst_element_link
82 #define GST_ELEMENT_UNLINK                      gst_element_unlink
83 #define GST_ELEMENT_LINK_PADS           gst_element_link_pads
84 #define GST_PAD_LINK                            gst_pad_link
85 #endif
86
87 /* debug caps string */
88 #define MMPLAYER_LOG_GST_CAPS_TYPE(x_caps) \
89 do \
90 { \
91         gchar* caps_type = NULL; \
92         caps_type = gst_caps_to_string(x_caps); \
93         debug_log ("caps: %s\n", caps_type ); \
94         MMPLAYER_FREEIF (caps_type) \
95 } while (0);
96
97 /* message posting */
98 #define MMPLAYER_POST_MSG( x_player, x_msgtype, x_msg_param ) \
99 debug_log("posting %s to application\n", #x_msgtype); \
100 __mmplayer_post_message(x_player, x_msgtype, x_msg_param);
101
102 /* setting player state */
103 #define MMPLAYER_SET_STATE( x_player, x_state ) \
104 debug_log("setting state machine to %d\n", x_state); \
105 __mmplayer_set_state(x_player, x_state);
106
107
108 #define MMPLAYER_CHECK_STATE_RETURN_IF_FAIL( x_player, x_command ) \
109 debug_log("checking player state before doing %s\n", #x_command); \
110 switch ( __mmplayer_check_state(x_player, x_command) ) \
111 { \
112         case MM_ERROR_PLAYER_INVALID_STATE: \
113                 return MM_ERROR_PLAYER_INVALID_STATE; \
114         break; \
115         /* NOTE : for robustness of player. we won't treat it as an error */ \
116         case MM_ERROR_PLAYER_NO_OP: \
117                 return MM_ERROR_NONE; \
118         break; \
119         case MM_ERROR_PLAYER_DOING_SEEK: \
120                 return MM_ERROR_PLAYER_DOING_SEEK; \
121         default: \
122         break; \
123 }
124
125 /* setting element state */ 
126 #define MMPLAYER_ELEMENT_SET_STATE( x_element, x_state ) \
127 debug_log("setting state [%s:%d] to [%s]\n", #x_state, x_state, GST_ELEMENT_NAME( x_element ) ); \
128 if ( GST_STATE_CHANGE_FAILURE == gst_element_set_state ( x_element, x_state) ) \
129 { \
130         debug_error("failed to set state %s to %s\n", #x_state, GST_ELEMENT_NAME( x_element )); \
131         goto STATE_CHANGE_FAILED; \
132 }
133
134 #define MMPLAYER_CHECK_NULL( x_var ) \
135 if ( ! x_var ) \
136 { \
137         debug_error("[%s] is NULL\n", #x_var ); \
138         goto ERROR; \
139 }
140
141 #define MMPLAYER_CHECK_CMD_IF_EXIT( x_player ) \
142 if ( x_player->cmd == MMPLAYER_COMMAND_UNREALIZE || x_player->cmd == MMPLAYER_COMMAND_DESTROY ) \
143 { \
144         debug_log("it's exit state...\n");\
145         goto ERROR;  \
146 }
147 /* volume */
148 /* 
149 |----|-------|-------|-------|-------|
150 |Res. | HFK(7)  |  BT(7)  |  E.J(7)  | SPK(7) |
151 |----|-------|-------|-------|-------|
152 */
153
154 /* 090424 Fix me : Currently volume is 0~9, so bt volume can be only 0.0 ~ 0.9 */
155 #define GET_VOLUME_BT(volume) (volume/10.)
156
157 #if 0
158 #define GET_VOLUME_SPK(volume) ((volume) & 0x7F)
159 #define GET_VOLUME_EARJACK(volume) ((volume >> 7)& 0x7F)
160 #define GET_VOLUME_HFK(volume) ((volume >> 21) & 0x7F)
161
162 #define SET_VOLUME_SPK(volume,input) (volume |= (input &0x7F))
163 #define SET_VOLUME_EARJACK(volume,input) (volume |= ((input & 0x7F)<<7))
164 #define SET_VOLUME_BT(volume,input) (volume |= ((input & 0x7F)<<14))
165 #define SET_VOLUME_HFK(volume,input) (volume |= ((input & 0x7F)<<21))
166 #endif
167
168
169 /* pad probe for pipeilne debugging */
170 gboolean __util_gst_pad_probe(GstPad *pad, GstBuffer *buffer, gpointer u_data);
171
172 #define MM_PROBE_DEFAULT                        (0)
173 #define MM_PROBE_TIMESTAMP                      (1)
174 #define MM_PROBE_BUFFERSIZE                     (1 << 1)
175 #define MM_PROBE_CAPS                           (1 << 2)
176 #define MM_PROBE_BUFFER_DURATION        (1 << 3)
177 #define MM_PROBE_DROP_BUFFER            (1 << 4)
178 #define MM_PROBE_CLOCK_TIME                     (1 << 5)
179 /* ... add more */
180
181 /* messages are treated as warnings bcz those code should not be checked in. 
182  * and no error handling will supported for same manner. 
183  */
184 #define MMPLAYER_ADD_PROBE(x_pad, x_flag) \
185 debug_warning("adding pad probe\n"); \
186 if ( ! gst_pad_add_buffer_probe(x_pad, \
187         G_CALLBACK(__util_gst_pad_probe), \
188         (gpointer)x_flag) ) \
189 { \
190         debug_error("failed to add pad probe\n"); \
191 }
192
193
194 /* generating dot */
195 #define MMPLAYER_GENERATE_DOT_IF_ENABLED( x_player, x_name ) \
196 if ( PLAYER_INI()->generate_dot ) \
197 { \
198         debug_log("generating dot file(%s)\n", #x_name); \
199         GST_DEBUG_BIN_TO_DOT_FILE (GST_BIN (player->pipeline->mainbin[MMPLAYER_M_PIPE].gst), \
200         GST_DEBUG_GRAPH_SHOW_ALL, x_name); \
201 }
202
203 /* signal manipulation */
204 #define MMPLAYER_SIGNAL_CONNECT( x_player, x_object, x_signal, x_callback, x_arg ) \
205 do \
206 { \
207         MMPlayerSignalItem* item = NULL; \
208         item = (MMPlayerSignalItem*) g_malloc( sizeof (MMPlayerSignalItem) ); \
209         if ( ! item ) \
210         { \
211                 debug_error("cannot connect signal [%s]\n", x_signal ); \
212         } \
213         else \
214         { \
215                 item->obj = G_OBJECT( x_object ); \
216                 item->sig = g_signal_connect( G_OBJECT(x_object), x_signal, \
217                                         x_callback, x_arg ); \
218                 x_player->signals = g_list_append(x_player->signals, item); \
219         } \
220 } while ( 0 );
221
222
223 /* state */
224 #define MMPLAYER_PREV_STATE(x_player)           ((mm_player_t*)x_player)->prev_state 
225 #define MMPLAYER_CURRENT_STATE(x_player)                ((mm_player_t*)x_player)->state 
226 #define         MMPLAYER_PENDING_STATE(x_player)                ((mm_player_t*)x_player)->pending_state 
227 #define         MMPLAYER_TARGET_STATE(x_player)         ((mm_player_t*)x_player)->target_state 
228 #define         MMPLAYER_STATE_GET_NAME(state) __get_state_name(state)
229
230 #define         MMPLAYER_PRINT_STATE(x_player) \
231 debug_log("-----------------------PLAYER STATE-------------------------\n"); \
232 debug_log(" prev %s, current %s, pending %s, target %s \n", \
233         MMPLAYER_STATE_GET_NAME(MMPLAYER_PREV_STATE(x_player)), \
234         MMPLAYER_STATE_GET_NAME(MMPLAYER_CURRENT_STATE(x_player)), \
235         MMPLAYER_STATE_GET_NAME(MMPLAYER_PENDING_STATE(x_player)), \
236         MMPLAYER_STATE_GET_NAME(MMPLAYER_TARGET_STATE(x_player))); \
237 debug_log("------------------------------------------------------------\n"); 
238
239
240 #define         MMPLAYER_STATE_CHANGE_TIMEOUT(x_player )         ((mm_player_t*)x_player)->state_change_timeout 
241
242 /* streaming */
243 #define MMPLAYER_IS_STREAMING(x_player)                         __is_streaming(x_player)
244 #define MMPLAYER_IS_RTSP_STREAMING(x_player)    __is_rtsp_streaming(x_player)
245 #define MMPLAYER_IS_HTTP_STREAMING(x_player)    __is_http_streaming(x_player)
246 #define MMPLAYER_IS_HTTP_PD(x_player)                   __is_http_progressive_down(x_player)
247 #define MMPLAYER_IS_HTTP_LIVE_STREAMING(x_player)  __is_http_live_streaming(x_player)
248 #define MMPLAYER_IS_LIVE_STREAMING(x_player)    __is_live_streaming(x_player)
249
250 /* etc */
251 #define MMF_PLAYER_FILE_BACKUP_PATH             "/tmp/media_temp."
252 #define         MMPLAYER_PT_IS_AUDIO( x_pt )            ( strstr(x_pt, "_97") || strstr(x_pt, "audio") )
253 #define         MMPLAYER_PT_IS_VIDEO( x_pt )            ( strstr(x_pt, "_96") || strstr(x_pt, "video") )
254
255 bool util_is_sdp_file ( const char *path );
256 int64_t uti_get_time ( void );
257 int util_get_rank_increase ( const char *factory_class );
258 int util_factory_rank_compare(GstPluginFeature *f1, GstPluginFeature *f2); // @
259
260
261 bool util_exist_file_path(const char *file_path);
262 bool util_write_file_backup(const char *backup_path, char *data_ptr, int data_size);
263 bool util_remove_file_backup(const char *backup_path); /* For Midi Player */
264
265 int util_is_midi_type_by_mem(void *mem, int size);
266 int util_is_midi_type_by_file(const char *file_path);
267
268 char** util_get_cookie_list ( const char *cookies );
269 bool util_check_valid_url ( const char *proxy );
270
271 #ifdef __cplusplus
272         }
273 #endif
274
275 #endif /* __MMF_PLAYER_UTILS_H__ */
276