HFP_1_7: eSCO s4 setting Changes
[platform/core/connectivity/bluetooth-agent.git] / ag-agent / bluetooth-ag-agent.h
1 /*
2  * Bluetooth-ag-agent.h
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact:     Hocheol Seo <hocheol.seo@samsung.com>
7  *              Chethan TN <chethan.tn@samsung.com>
8  *              Chanyeol Park <chanyeol.park@samsung.com>
9  *              Rakesh MK <rakesh.mk@samsung.com>
10  *
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *              http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  */
24
25 #ifndef __DEF_BT_AG_AGENT_H_
26 #define __DEF_BT_AG_AGENT_H_
27
28 #undef LOG_TAG
29 #define LOG_TAG "BLUETOOTH_AG_AGENT"
30
31 #define LOG_COLOR_RESET    "\033[0m"
32 #define LOG_COLOR_RED      "\033[31m"
33 #define LOG_COLOR_YELLOW   "\033[33m"
34 #define LOG_COLOR_GREEN         "\033[32m"
35 #define LOG_COLOR_BLUE          "\033[36m"
36 #define LOG_COLOR_PURPLE   "\033[35m"
37
38 #define DBG(fmt, args...) SLOGD(fmt, ##args)
39 #define INFO(fmt, args...) SLOGI(fmt, ##args)
40 #define ERR(fmt, args...) SLOGE(fmt, ##args)
41 #define DBG_SECURE(fmt, args...) SECURE_SLOGD(fmt, ##args)
42 #define INFO_SECURE(fmt, args...) SECURE_SLOGI(fmt, ##args)
43 #define ERR_SECURE(fmt, args...) SECURE_SLOGE(fmt, ##args)
44 #define DBG_SECURE(fmt, args...) SECURE_SLOGD(fmt, ##args)
45 #define ERR_SECURE(fmt, args...) SECURE_SLOGE(fmt, ##args)
46 #define INFO_C(fmt, arg...) \
47         SLOGI_IF(TRUE,  LOG_COLOR_BLUE" "fmt" "LOG_COLOR_RESET, ##arg)
48 #define ERR_C(fmt, arg...) \
49         SLOGI_IF(TRUE,  LOG_COLOR_RED" "fmt" "LOG_COLOR_RESET, ##arg)
50
51 #include <unistd.h>
52 #include <dlog.h>
53 #include <stdio.h>
54 #include <signal.h>
55 #include <string.h>
56 #include <unistd.h>
57 #include <fcntl.h>
58 #include <inttypes.h>
59 #include <sys/socket.h>
60 #include <glib.h>
61 #include <gio/gio.h>
62 #include <errno.h>
63
64 #include "vconf.h"
65 #include "vconf-keys.h"
66
67 #define BT_AG_SERVICE_NAME "org.bluez.ag_agent"
68 #define BT_AG_AGENT_OBJECT_PATH "/org/bluez/hfp_agent"
69 #define BT_HS_AG_AGENT_OBJECT_PATH "/org/bluez/hsp_agent"
70 #define BLUEZ_AG_INTERFACE_NAME "Hands-Free Audio Gateway"
71 #define BLUEZ_SERVICE_NAME "org.bluez"
72 #define BLUEZ_PROFILE_MGMT_INTERFACE "org.bluez.ProfileManager1"
73 #define BT_MANAGER_INTERFACE "org.freedesktop.DBus.ObjectManager"
74 #define HFP_APP_INTERFACE "Org.Hfp.App.Interface"
75 #define TELEPHONY_APP_INTERFACE "org.tizen.csd.Call.Instance"
76 #define BT_HEADSET_INTERFACE "org.bluez.Headset"
77 #define BT_ADAPTER_INTERFACE    "org.bluez.Adapter1"
78 #ifdef TIZEN_FEATURE_BT_MEDIA_ENHANCE
79 #define BT_PROPERTIES_INTERFACE "org.freedesktop.DBus.Properties"
80 #define BLUEZ_MEDIA_TRANSPORT_INTERFACE "org.bluez.MediaTransport1"
81 #define BLUEZ_MEDIA_ENDPOINT_INTERFACE "org.bluez.MediaEndpoint1"
82 #define BLUEZ_DEVICE_INTERFACE  "org.bluez.Device1"
83 #define A2DP_SOURCE_ENDPOINT "/MediaEndpoint/A2DPSource"
84 #endif
85
86 #define BT_ADAPTER_OBJECT_PATH_MAX 50
87
88 #define BT_ADDRESS_STRING_SIZE 18
89 #define MAX_BUFFER_SIZE 1024
90
91 /* Response and hold values */
92 #define BT_RSP_HOLD_NOT_SUPPORTED       -2
93 #define HANDSFREE_FEATURE_CALL_WAITING_AND_3WAY 0x0002
94
95 /* HFP Agent Indicator event values */
96 #define INDICATOR_EVENT_SERVICE_NONE                    0
97 #define INDICATOR_EVENT_SERVICE_PRESENT         1
98
99 #define INDICATOR_EVENT_CALL_INACTIVE                   0
100 #define INDICATOR_EVENT_CALL_ACTIVE                     1
101
102 #define INDICATOR_EVENT_CALLSETUP_INACTIVE               0
103 #define INDICATOR_EVENT_CALLSETUP_INCOMING               1
104 #define INDICATOR_EVENT_CALLSETUP_OUTGOING               2
105 #define INDICATOR_EVENT_CALLSETUP_ALERTING               3
106
107 #define INDICATOR_EVENT_CALLHELD_NONE                   0
108 #define INDICATOR_EVENT_CALLHELD_MULTIPLE               1
109 #define INDICATOR_EVENT_CALLHELD_ON_HOLD                2
110
111 #define INDICATOR_EVENT_ROAM_INACTIVE                   0
112 #define INDICATOR_EVENT_ROAM_ACTIVE                     1
113
114 /* Telephony number types */
115 #define AGENT_NUMBER_TYPE_TELEPHONY             129
116 #define AGENT_NUMBER_TYPE_INTERNATIONAL 145
117
118 /* Call direction parameters */
119 #define AGENT_CALL_DIRECTION_OUTGOING   0
120 #define AGENT_CALL_DIRECTION_INCOMING           1
121
122 #define AGENT_CALL_STATUS_ACTIVE                0
123 #define AGENT_CALL_STATUS_HELD          1
124 #define AGENT_CALL_STATUS_DIALING               2
125 #define AGENT_CALL_STATUS_ALERTING      3
126 #define AGENT_CALL_STATUS_INCOMING      4
127 #define AGENT_CALL_STATUS_WAITING               5
128
129 #define AGENT_CALL_MODE_VOICE           0
130 #define AGENT_CALL_MODE_DATA            1
131 #define AGENT_CALL_MODE_FAX             2
132
133 #define AGENT_CALL_MULTIPARTY_NO                0
134 #define AGENT_CALL_MULTIPARTY_YES               1
135
136 /* Subscriber number parameters*/
137 #define AGENT_SUBSCRIBER_SERVICE_VOICE  4
138
139 /* Operator selection mode values */
140 #define AGENT_OPERATOR_MODE_AUTO                        0
141 #define HSP_VERSION_1_2  0x0102
142
143 /* Voice recognition blacklist file */
144 #define AGENT_VR_BLACKLIST_FILE (APP_SYSCONFDIR"/voice-recognition-blacklist")
145
146 #define BT_LOWER_ADDRESS_LENGTH 9
147
148 enum hfp_version {
149         HFP_VERSION_1_5 = 0x0105,
150         HFP_VERSION_1_6 = 0x0106,
151         HFP_VERSION_1_7 = 0x0107,
152         HFP_VERSION_LATEST = HFP_VERSION_1_7,
153 };
154
155 /* BD Address */
156 typedef struct {
157         uint8_t b[6];
158 } __attribute__((packed)) bt_addrs;
159
160 /**
161  * @brief Outgoing call type status
162  *
163  * 0 : Follow last call log \n
164  * 1 : Voice call \n
165  * 2 : Video call \n
166  */
167 #define BT_FOLLOW_CALL_LOG 0
168 #define BT_VOICE_CALL 1
169 #define BT_VIDEO_CALL 2
170
171 /**
172  * @brief The status of making outgoing calls with BT headsets
173  *
174  * 0 : Even when device locked \n
175  * 1 : Only when device unlocked \n
176  */
177 #define BT_MO_EVEN_LOCKED 0
178 #define BT_MO_ONLY_UNLOCKED 1
179
180 #define BT_CVSD_CODEC_ID 1
181 #define BT_MSBC_CODEC_ID 2
182
183 #define BT_CVSD_CODEC_MASK 0x0001
184 #define BT_MSBC_CODEC_MASK 0x0002
185
186 #define BT_HFP_MSBC_VOICE                       0x0063
187 #define BT_HFP_CVSD_VOICE                       0x0060
188
189 #define BT_SOCKET_LEVEL                 274
190 #define BT_VOICE_NUM                    11
191
192 #define BT_SCO_PRTCL    2
193
194 #define HFP_CODEC_NEGOTIATION_TIMEOUT 3 /* 3 seconds */
195
196 #define BT_SCO_OPEN_DELAY_TIMER 1000 /*1000 milliseconds*/
197
198 /* AT+CSQ : Returns received signal strength indication.
199      Command response: +CSQ: <rssi>,<ber>
200     <ber> is not supported and has a constant value of 99, included for compatibility reasons.
201 */
202 #define BT_SIGNAL_QUALITY_BER 99
203
204 /*Length of the string used to send telephone number*/
205 #define BT_MAX_TEL_NUM_STRING 30
206
207 #define FUCNTION_CALLS
208 #ifdef FUCNTION_CALLS
209 #define FN_START        DBG("ENTER==>")
210 #define FN_END          DBG("EXIT===>")
211 #else
212 #define FN_START
213 #define FN_END
214 #endif
215
216 /* HS states */
217 typedef enum {
218         HEADSET_STATE_DISCONNECTED,
219         HEADSET_STATE_CONNECTING,
220         HEADSET_STATE_CONNECTED,
221         HEADSET_STATE_PLAY_IN_PROGRESS,
222         HEADSET_STATE_ON_CALL
223 } hs_state_t;
224
225 typedef enum {
226         HFP_STATE_MNGR_ERR_AG_FAILURE = 0,
227         HFP_STATE_MNGR_NO_PHONE_CONNECTION = 1,
228         HFP_STATE_MNGR_ERR_NOT_ALLOWED  = 3,
229         HFP_STATE_MNGR_ERR_NOT_SUPPORTED        = 4,
230         HFP_STATE_MNGR_ERR_SIM_BUSY     = 14,
231         HFP_STATE_MNGR_ERR_INVALID_INDEX        = 21,
232         HFP_STATE_MNGR_ERR_INVALID_CHAR_IN_STRING       = 25,
233         HFP_STATE_MNGR_ERR_NO_NETWORK_SERVICE   = 30,
234         HFP_STATE_MNGR_ERR_NONE = 0x8000
235 } hfp_state_manager_err_t;
236
237 typedef enum {
238         BT_AG_FEATURE_THREE_WAY_CALL                    = 0x0001,
239         BT_AG_FEATURE_EC_AND_NR                         = 0x0002,
240         BT_AG_FEATURE_VOICE_RECOGNITION                 = 0x0004,
241         BT_AG_FEATURE_INBAND_RINGTONE                   = 0x0008,
242         BT_AG_FEATURE_ATTACH_NUMBER_TO_VOICETAG         = 0x0010,
243         BT_AG_FEATURE_REJECT_CALL                       = 0x0020,
244         BT_AG_FEATURE_ENHANCED_CALL_STATUS              = 0x0040,
245         BT_AG_FEATURE_ENHANCED_CALL_CONTROL             = 0x0080,
246         BT_AG_FEATURE_EXTENDED_ERROR_RESULT_CODES       = 0x0100,
247         BT_AG_FEATURE_CODEC_NEGOTIATION                 = 0x0200,
248         BT_AG_FEATURE_HF_INDICATORS                     = 0x0400,
249         BT_AG_FEATURE_ESCO_S4_T2_SUPPORT                = 0x0800,
250 } bt_ag_agent_feature_t;
251
252 typedef enum {
253         BT_HF_FEATURE_EC_ANDOR_NR                       = 0x0001,
254         BT_HF_FEATURE_CALL_WAITING_AND_3WAY     = 0x0002,
255         BT_HF_FEATURE_CLI_PRESENTATION          = 0x0004,
256         BT_HF_FEATURE_VOICE_RECOGNITION         = 0x0008,
257         BT_HF_FEATURE_REMOTE_VOLUME_CONTROL     = 0x0010,
258         BT_HF_FEATURE_ENHANCED_CALL_STATUS              = 0x0020,
259         BT_HF_FEATURE_ENHANCED_CALL_CONTROL     = 0x0040,
260         BT_HF_FEATURE_CODEC_NEGOTIATION = 0x0080,
261 } bt_hf_agent_feature_t;
262
263 /* HFP AG service record bitmap. Bluetooth HFP 1.6 spec page 95 */
264 #define BT_AG_FEATURE_SDP_3WAY                  0x1
265 #define BT_AG_FEATURE_SDP_ECNR                  0x2
266 #define BT_AG_FEATURE_SDP_VOICE_RECOG           0x4
267 #define BT_AG_FEATURE_SDP_IN_BAND_RING_TONE     0x8
268 #define BT_AG_FEATURE_SDP_ATTACH_VOICE_TAG              0x10
269 #define BT_AG_FEATURE_SDP_WIDEBAND_SPEECH               0x20
270
271 #define BT_AG_AGENT_ERROR (__bt_ag_agent_error_quark())
272
273 #define BT_ERROR_INTERNAL "InternalError"
274 #define BT_ERROR_NOT_AVAILABLE "NotAvailable"
275 #define BT_ERROR_NOT_CONNECTED "NotConnected"
276 #define BT_ERROR_BUSY "InProgress"
277 #define BT_ERROR_INVALID_PARAM "InvalidArguments"
278 #define BT_ERROR_ALREADY_EXSIST "AlreadyExists"
279 #define BT_ERROR_ALREADY_CONNECTED "Already Connected"
280 #define BT_ERROR_NO_MEMORY "No memory"
281 #define BT_ERROR_I_O_ERROR "I/O error"
282 #define BT_ERROR_OPERATION_NOT_AVAILABLE "Operation currently not available"
283 #define BT_ERROR_BATTERY "Battery error "
284 #define BT_ERROR_SIGNAL "Signal error"
285 #define BT_ERROR_NO_CALL_LOG "No Call log"
286 #define BT_ERROR_INVLAID_DTMF "Invalid dtmf"
287
288 #define BT_CHECK_SIGNAL_STRENGTH(rssi) \
289         if (rssi >= VCONFKEY_TELEPHONY_RSSI_4) \
290                 rssi = VCONFKEY_TELEPHONY_RSSI_5
291
292 typedef enum {
293         BT_HFP_AGENT_ERROR_NONE,
294         BT_HFP_AGENT_ERROR_INTERNAL,
295         BT_HFP_AGENT_ERROR_NOT_AVAILABLE,
296         BT_HFP_AGENT_ERROR_NOT_CONNECTED,
297         BT_HFP_AGENT_ERROR_BUSY,
298         BT_HFP_AGENT_ERROR_INVALID_PARAM,
299         BT_HFP_AGENT_ERROR_ALREADY_EXSIST,
300         BT_HFP_AGENT_ERROR_ALREADY_CONNECTED,
301         BT_HFP_AGENT_ERROR_NO_MEMORY,
302         BT_HFP_AGENT_ERROR_I_O_ERROR,
303         BT_HFP_AGENT_ERROR_OPERATION_NOT_AVAILABLE,
304         BT_HFP_AGENT_ERROR_NO_CALL_LOGS,
305         BT_HFP_AGENT_ERROR_INVALID_MEMORY_INDEX,
306         BT_HFP_AGENT_ERROR_INVALID_CHLD_INDEX,
307         BT_HFP_AGENT_ERROR_BATTERY_STATUS,
308         BT_HFP_AGENT_ERROR_SIGNAL_STATUS,
309         BT_HFP_AGENT_ERROR_NOT_SUPPORTED,
310         BT_HFP_AGENT_ERROR_INVALID_NUMBER,
311         BT_HFP_AGENT_ERROR_APPLICATION,
312         BT_HFP_AGENT_ERROR_INVALID_DTMF,
313 } bt_hfp_agent_error_t;
314
315 typedef enum {
316         BT_AGENT_NETWORK_REG_STATUS_HOME,
317         BT_AGENT_NETWORK_REG_STATUS_ROAMING,
318         BT_AGENT_NETWORK_REG_STATUS_OFFLINE,
319         BT_AGENT_NETWORK_REG_STATUS_SEARCHING,
320         BT_AGENT_NETWORK_REG_STATUS_NO_SIM,
321         BT_AGENT_NETWORK_REG_STATUS_POWEROFF,
322         BT_AGENT_NETWORK_REG_STATUS_POWERSAFE,
323         BT_AGENT_NETWORK_REG_STATUS_NO_COVERAGE,
324         BT_AGENT_NETWORK_REG_STATUS_REJECTED,
325         BT_AGENT_NETWORK_REG_STATUS_UNKOWN,
326 } bt_hfp_agent_network_registration_status_t;
327
328 typedef enum {
329         BT_AGENT_NETWORK_REG_STATUS_NOT_REGISTER,
330         BT_AGENT_NETWORK_REG_STATUS_REGISTER_HOME_NETWORK,
331         BT_AGENT_NETWORK_REG_STATUS_SEARCH,
332         BT_AGENT_NETWORK_REG_STATUS_REGISTRATION_DENIED,
333         BT_AGENT_NETWORK_REG_STATUS_UNKNOWN,
334         BT_AGENT_NETWORK_REG_STATUS_REGISTERED_ROAMING,
335         BT_AGENT_NETWORK_REG_STATUS_REGISTERED_SMS_HOME,
336         BT_AGENT_NETWORK_REG_STATUS_REGISTERED_SMS_ROAMING,
337         BT_AGENT_NETWORK_REG_STATUS_EMERGENCY,
338         BT_AGENT_NETWORK_REG_STATUS_REGISTERED_CSFB_HOME,
339         BT_AGENT_NETWORK_REG_STATUS_REGISTERED_CSFB_ROAMING,
340 } bt_hfp_agent_reg_status_t;
341
342 #ifdef TIZEN_FEATURE_BT_MEDIA_ENHANCE
343 typedef enum media_transport_state {
344         MEDIA_TRANSPORT_STATE_DISCONNECTED,
345         MEDIA_TRANSPORT_STATE_IDLE,
346         MEDIA_TRANSPORT_STATE_PLAYING
347 } bt_ag_media_transport_state_t;
348
349 /* Profile states matched to btd_service_state_t of bluez service.h */
350 typedef enum {
351         BT_PROFILE_STATE_UNAVAILABLE,
352         BT_PROFILE_STATE_DISCONNECTED,
353         BT_PROFILE_STATE_CONNECTING,
354         BT_PROFILE_STATE_CONNECTED,
355         BT_PROFILE_STATE_DISCONNECTING,
356 } bt_profile_state_t;
357 #endif
358
359 #define retv_if(expr, val) \
360         do { \
361                 if (expr) { \
362                         ERR("(%s) return", #expr); \
363                         return (val); \
364                 } \
365         } while (0)
366
367 #define ret_if(expr) \
368         do { \
369                 if (expr) { \
370                         ERR("(%s) return", #expr); \
371                         return; \
372                 } \
373         } while (0)
374
375 typedef struct {
376         unsigned char b[6];
377 } __attribute__((packed)) bdaddr_t;
378
379 /* Remote socket address */
380 struct sockaddr_remote {
381         sa_family_t     family;
382         bdaddr_t        remote_bdaddr;
383         uint8_t         channel;
384 };
385
386 typedef struct {
387         const char *indicator_desc;
388         const char *indicator_range;
389         int hfp_value;
390         gboolean ignore;
391         gboolean is_activated;
392 } bt_ag_indicators_t;
393
394 typedef struct {
395         gboolean telephony_ready;       /* plugin initialized */
396         uint32_t features;            /* AG features */
397         const bt_ag_indicators_t *indicators;     /* Supported indicators */
398         int er_mode;               /* Event reporting mode */
399         int er_ind;                 /* Event reporting for indicators */
400         int rh;                 /* Response and Hold state */
401         char *number;             /* Incoming phone number */
402         int number_type;                /* Incoming number type */
403         guint ring_timer;               /* For incoming call indication */
404         const char *chld;               /* Response to AT+CHLD=? */
405         uint32_t sdp_features; /* SDP features */
406 } bt_ag_status_t;
407
408 typedef struct {
409         char buffer[MAX_BUFFER_SIZE];
410
411         int start;
412         int length;
413
414         gboolean is_nrec;
415         gboolean is_nrec_req;
416         gboolean is_pending_ring;
417         gboolean is_inband_ring;
418         gboolean is_cme_enabled;
419         gboolean is_cwa_enabled;
420         gboolean is_client_active;
421         gboolean is_voice_recognition_running;
422
423         int speaker_gain;
424         int microphone_gain;
425
426         unsigned int hs_features;
427 } bt_ag_slconn_t;
428
429 typedef struct {
430 /*      DBusMessage *msg;
431         DBusPendingCall *call;*/
432         GIOChannel *io;
433         int err;
434         hs_state_t target_state;
435         GSList *callbacks;
436         uint16_t svclass;
437 } hs_connecting_t;
438
439 typedef struct {
440         char *object_path;
441         gboolean is_negotiating;
442         gboolean requested_by_hf;
443         guint nego_timer;
444         unsigned int remote_codecs;
445         unsigned int sending_codec;
446         unsigned int final_codec;
447 } bt_negotiation_info_t;
448
449 typedef struct {
450         const char *path;
451         guint32 fd;
452
453         gboolean auto_connect;
454         GIOChannel *io_chan;
455         char *remote_addr;
456         guint watch_id;
457         GIOChannel *sco_server;
458         guint sco_watch_id;
459
460         GIOChannel *rfcomm;
461         GIOChannel *sco;
462         guint sco_id;
463         guint sco_incoming_id;
464         guint codec;
465
466         gboolean auto_dc;
467
468         guint dc_timer;
469
470         gboolean hfp_active;
471         gboolean search_hfp;
472         gboolean rfcomm_initiator;
473         gboolean vr_blacklisted;
474
475         hs_state_t state;
476         bt_ag_slconn_t *slc;
477         hs_connecting_t *pending;
478         GSList *nrec_cbs;
479         gboolean sco_server_started;
480         gboolean nrec_status;
481         bt_negotiation_info_t codec_info;
482 #if defined(TIZEN_SUPPORT_DUAL_HF)
483         gboolean is_companion_device;
484 #endif
485 } bt_ag_info_t;
486
487 typedef void (*headset_nrec_cb) (bt_ag_info_t *hs,
488                                         gboolean nrec,
489                                         void *user_data);
490
491 struct hs_nrec_callback {
492         unsigned int id;
493         headset_nrec_cb cb;
494         void *user_data;
495 };
496
497 typedef void (*hs_state_cb) (bt_ag_info_t *hs,
498                 hs_state_t old_state,
499                 hs_state_t new_state,
500                 void *user_data);
501
502 struct hs_state_callback {
503                 hs_state_cb cb;
504                 void *user_data;
505                 unsigned int id;
506 };
507
508 int __attribute__((format(printf, 2, 3)))
509                         _bt_ag_send_at(bt_ag_info_t *hs, char *format, ...);
510 void __attribute__((format(printf, 3, 4)))
511                 _bt_ag_send_foreach_headset(GSList *devices,
512                 int (*cmp) (bt_ag_info_t *hs),
513                 char *format, ...);
514 void _bt_ag_slconn_complete(bt_ag_info_t *hs);
515 int _bt_ag_send_response(bt_ag_info_t *hs, hfp_state_manager_err_t err);
516 void _bt_hfp_call_hold_request(const char *t_cmd, void *t_device);
517 void _bt_hfp_key_press_request(const char *t_key_press, void *t_device);
518 void _bt_hfp_terminate_call_request(void *t_device);
519 void _bt_hfp_answer_call_request(void *t_device);
520 void _bt_hfp_update_event_request(int indicator, void *t_device);
521 void _bt_hfp_response_and_hold_request(void *t_device);
522 void _bt_hfp_last_dialed_number_request(void *t_device);
523 void _bt_hfp_dial_number_request(const char *dial_number, void *t_device);
524 void _bt_hfp_channel_dtmf_request(char t_tone, void *t_device);
525 void _bt_hfp_subscriber_number_request(void *t_device);
526 void _bt_hfp_get_operator_selection_request(void *t_device);
527 void _bt_hfp_noise_red_and_echo_cancel_request(gboolean t_enable,
528                         void *t_device);
529 void _bt_hfp_voice_dial_request(gboolean t_enable, void *t_device);
530 void _bt_hfp_set_indicators(const char *t_command, void *t_device);
531 void _bt_hfp_select_phonebook_memory_status(void *t_device);
532 void _bt_hfp_select_phonebook_memory_list(void *t_device);
533 void _bt_hfp_select_phonebook_memory(void *t_device, const gchar *pb_path);
534 void _bt_hfp_read_phonebook_entries_list(void *t_device);
535 void _bt_hfp_read_phonebook_entries(void *t_device, const char *cmd);
536 void _bt_hfp_find_phonebook_entries_status(void *t_device);
537 void _bt_hfp_find_phonebook_entries(void *t_device, const char *cmd);
538 void _bt_hfp_get_character_set(void *t_device);
539 void _bt_hfp_list_supported_character(void *t_device);
540 void _bt_hfp_set_character_set(void *t_device, const char *cmd);
541 void _bt_hfp_get_battery_property(void *t_device);
542 void _bt_hfp_signal_quality_reply(int32_t rssi, int32_t ber,
543         void *t_device);
544 void _bt_hfp_battery_property_reply(void *data, int32_t bcs,
545                         int32_t bcl);
546 void _bt_hfp_operator_reply(char *operator_name,  void *t_device);
547 bt_hfp_agent_error_t _bt_ag_agent_dial_num(const gchar *number, guint flags);
548 bt_hfp_agent_error_t _bt_ag_agent_dial_last_num(void *device);
549 bt_hfp_agent_error_t _bt_ag_agent_send_dtmf(const gchar *dtmf,
550                                 const gchar *path, const gchar *sender);
551 bt_hfp_agent_error_t _bt_ag_agent_dial_memory(unsigned int location);
552 gboolean _bt_ag_agent_get_signal_quality(void *device);
553 gboolean _bt_ag_agent_get_battery_status(void *device);
554 gboolean _bt_ag_agent_get_operator_name(void *device);
555 gboolean _bt_hfp_agent_nrec_status(gboolean status,
556         void *t_device);
557 gboolean _bt_ag_agent_voice_dial(gboolean activate);
558 gboolean _bt_ag_agent_answer_call(unsigned int call_id,
559                                 const gchar *path, const gchar *sender);
560 gboolean _bt_ag_agent_reject_call(unsigned int call_id,
561                                 const gchar *path, const gchar *sender);
562 gboolean _bt_ag_agent_release_call(unsigned int call_id,
563                                 const gchar *path, const gchar *sender);
564 gboolean _bt_ag_agent_threeway_call(unsigned int chld_value,
565                                 const gchar *path, const gchar *sender);
566 void _bt_list_current_calls(void *t_device);
567 void _bt_get_activity_status(void *t_device);
568 int _bt_hfp_set_property_name(const char *property, const char *operator_name);
569 void _bt_hfp_get_imei_number_reply(char *imei_number,  void *t_device);
570 void _bt_hfp_get_model_info_reply(char *model,  void *t_device);
571 void _bt_hfp_get_device_manufacturer_reply(char *manufacturer,  void *t_device);
572 void _bt_hfp_get_revision_info_reply(char *revision,  void *t_device);
573 void _bt_hfp_device_disconnected(void *t_device);
574 int _bt_hfp_get_equipment_identity(bt_ag_info_t *device, const char *buf);
575 int _bt_hfp_get_model_information(bt_ag_info_t *device, const char *buf);
576 int _bt_hfp_get_device_manufacturer(bt_ag_info_t *device, const char *buf);
577 int _bt_hfp_get_imsi(bt_ag_info_t *device, const char *buf);
578 int _bt_hfp_get_creg_status(bt_ag_info_t *device, const char *buf);
579 int _bt_hfp_get_revision_information(bt_ag_info_t *device, const char *buf);
580 void _bt_hfp_get_equipment_identity_req(void *t_device);
581 bt_hfp_agent_error_t _bt_hfp_register_telephony_agent(gboolean register_flag,
582                 const char *path_to_register,
583                 const char *sender);
584 bt_hfp_agent_error_t _bt_hfp_incoming_call(const char *call_path,
585                 const char *incoming_number,
586                 uint32_t incoming_call_id,
587                 const char *sender);
588 bt_hfp_agent_error_t _bt_hfp_outgoing_call(const char *call_path,
589                 const char *number,
590                 uint32_t call_id, const char *sender);
591 bt_hfp_agent_error_t _bt_hfp_change_call_status(const char *call_path,
592                 const char *number,
593                 uint32_t call_status,
594                 uint32_t call_id,
595                 const char *sender);
596 void _bt_hfp_initialize_telephony_manager(uint32_t ag_features);
597 void _bt_hfp_deinitialize_telephony_manager(void);
598 gboolean _bt_ag_agent_emit_property_changed(
599                                 GDBusConnection *connection,
600                                 const char *path,
601                                 const char *interface,
602                                 const char *name,
603                                 GVariant *property);
604 void _bt_hfp_get_model_info_req(void *t_device);
605 void _bt_hfp_get_device_manufacturer_req(void *t_device);
606 void _bt_hfp_get_imsi_req(void *t_device);
607 void _bt_hfp_get_creg_status_req(void *t_device);
608 void _bt_hfp_get_revision_info_req(void *t_device);
609 gboolean _bt_hfp_is_call_exist(void);
610 void _bt_hfp_release_all_calls_by_sender(const char *sender);
611 void _bt_hfp_get_imsi_reply(char *mcc, char *mnc, char *msin, void *t_device);
612 void _bt_hfp_get_creg_status_reply(int n, int status, void *t_device);
613 int _bt_hfp_set_property_value(const char *property, int value);
614 void _bt_hfp_vendor_cmd_request(const char *cmd,
615                                                 void *t_device);
616
617 gboolean _bt_ag_agent_get_imei_number(void *device);
618 void _bt_ag_agent_get_model_name(void *device);
619 void _bt_ag_agent_get_manufacturer_name(void *device);
620 void _bt_ag_agent_get_imsi(void *device);
621 void _bt_ag_agent_get_creg_status(void *device);
622 void _bt_ag_agent_get_revision_information(void *device);
623 bt_hfp_agent_error_t _bt_ag_agent_vendor_cmd(const gchar *cmd,
624                 const gchar *path, const gchar *sender);
625 #ifdef TIZEN_FEATURE_BT_MEDIA_ENHANCE
626 void _bt_ag_agent_check_transport_state(void);
627 #endif
628
629 #endif /* __DEF_BT_AG_AGENT_H_ */