Adopt stream-based routing
[platform/core/api/tone-player.git] / src / tone_player.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
19
20 #define LOG_TAG "CAPI_MEDIA_TONE_PLAYER"
21
22 #include <sound_manager.h>
23 #include <sound_manager_internal.h>
24 #include <tone_player.h>
25 #include <mm_sound.h>
26 #include <mm_sound_private.h>
27 #include <stdio.h>
28 #include <limits.h>
29 #include <string.h>
30 #include <unistd.h>
31 #include <dlog.h>
32
33
34 static int __convert_tone_player_error_code(const char *func, int code){
35         int ret = TONE_PLAYER_ERROR_NONE;
36         char *errorstr = NULL;
37         switch(code)
38         {
39                 case MM_ERROR_NONE:
40                         ret = TONE_PLAYER_ERROR_NONE;
41                         errorstr = "ERROR_NONE";
42                         break;
43                 case TONE_PLAYER_ERROR_INVALID_PARAMETER:
44                 case MM_ERROR_INVALID_ARGUMENT:
45                 case MM_ERROR_SOUND_INVALID_POINTER:
46                         ret = TONE_PLAYER_ERROR_INVALID_PARAMETER;
47                         errorstr = "INVALID_PARAMETER";
48                         break;
49                 case MM_ERROR_SOUND_INTERNAL:
50                         ret = TONE_PLAYER_ERROR_INVALID_OPERATION;
51                         errorstr = "INVALID_OPERATION";
52                         break;
53         }
54         LOGE( "[%s] %s(0x%08x) : core frameworks error code(0x%08x)",func, errorstr, ret, code);
55         return ret;
56 }
57
58 int tone_player_start(tone_type_e tone, sound_type_e type, int duration, int *id){
59         int ret;
60         int player;
61         if( tone < TONE_TYPE_DEFAULT || tone > TONE_TYPE_USER_DEFINED_HIGH_FRE )
62                 return __convert_tone_player_error_code(__func__, TONE_PLAYER_ERROR_INVALID_PARAMETER);
63
64         ret = mm_sound_play_tone(tone, type , 1, duration, &player);
65
66         if( ret == 0 && id != NULL)
67                 *id = player;
68         return __convert_tone_player_error_code(__func__, ret);
69 }
70
71 int tone_player_start_with_stream_info(tone_type_e tone, sound_stream_info_h stream_info, int duration, int * id){
72         int ret;
73         int player;
74         double vol = 1.0;
75         char *stream_type = NULL;
76         int stream_id;
77
78         if( tone < TONE_TYPE_DEFAULT || tone > TONE_TYPE_USER_DEFINED_HIGH_FRE )
79                 return __convert_tone_player_error_code(__func__, TONE_PLAYER_ERROR_INVALID_PARAMETER);
80
81         ret = sound_manager_get_type_from_stream_information(stream_info, &stream_type);
82         if( ret )
83                 return __convert_tone_player_error_code(__func__, ret);
84         ret = sound_manager_get_index_from_stream_information(stream_info, &stream_id);
85         if( ret )
86                 return __convert_tone_player_error_code(__func__, ret);
87
88         ret = mm_sound_play_tone_with_stream_info(tone, stream_type, stream_id, vol, duration, &player);
89
90         if( ret == 0 && id != NULL)
91                 *id = player;
92
93         return __convert_tone_player_error_code(__func__, ret);
94
95
96 }
97
98 int tone_player_stop(int id){
99         return __convert_tone_player_error_code(__func__, mm_sound_stop_sound(id));
100 }
101