1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
|
// SPDX-License-Identifier: Apache-2.0
/*
* Copyright (C) 2013 Intel Corporation
*
*/
#define _GNU_SOURCE
#include "if-main.h"
#include "../hal-utils.h"
const bthf_interface_t *if_hf = NULL;
SINTMAP(bthf_at_response_t, -1, "(unknown)")
DELEMENT(BTHF_AT_RESPONSE_ERROR),
DELEMENT(BTHF_AT_RESPONSE_OK),
ENDMAP
SINTMAP(bthf_connection_state_t, -1, "(unknown)")
DELEMENT(BTHF_CONNECTION_STATE_DISCONNECTED),
DELEMENT(BTHF_CONNECTION_STATE_CONNECTING),
DELEMENT(BTHF_CONNECTION_STATE_CONNECTED),
DELEMENT(BTHF_CONNECTION_STATE_SLC_CONNECTED),
DELEMENT(BTHF_CONNECTION_STATE_DISCONNECTING),
ENDMAP
SINTMAP(bthf_audio_state_t, -1, "(unknown)")
DELEMENT(BTHF_AUDIO_STATE_DISCONNECTED),
DELEMENT(BTHF_AUDIO_STATE_CONNECTING),
DELEMENT(BTHF_AUDIO_STATE_CONNECTED),
DELEMENT(BTHF_AUDIO_STATE_DISCONNECTING),
ENDMAP
SINTMAP(bthf_vr_state_t, -1, "(unknown)")
DELEMENT(BTHF_VR_STATE_STOPPED),
DELEMENT(BTHF_VR_STATE_STARTED),
ENDMAP
SINTMAP(bthf_volume_type_t, -1, "(unknown)")
DELEMENT(BTHF_VOLUME_TYPE_SPK),
DELEMENT(BTHF_VOLUME_TYPE_MIC),
ENDMAP
SINTMAP(bthf_nrec_t, -1, "(unknown)")
DELEMENT(BTHF_NREC_STOP),
DELEMENT(BTHF_NREC_START),
ENDMAP
SINTMAP(bthf_chld_type_t, -1, "(unknown)")
DELEMENT(BTHF_CHLD_TYPE_RELEASEHELD),
DELEMENT(BTHF_CHLD_TYPE_RELEASEACTIVE_ACCEPTHELD),
DELEMENT(BTHF_CHLD_TYPE_HOLDACTIVE_ACCEPTHELD),
DELEMENT(BTHF_CHLD_TYPE_ADDHELDTOCONF),
ENDMAP
/* Network Status */
SINTMAP(bthf_network_state_t, -1, "(unknown)")
DELEMENT(BTHF_NETWORK_STATE_NOT_AVAILABLE),
DELEMENT(BTHF_NETWORK_STATE_AVAILABLE),
ENDMAP
/* Service type */
SINTMAP(bthf_service_type_t, -1, "(unknown)")
DELEMENT(BTHF_SERVICE_TYPE_HOME),
DELEMENT(BTHF_SERVICE_TYPE_ROAMING),
ENDMAP
SINTMAP(bthf_call_state_t, -1, "(unknown)")
DELEMENT(BTHF_CALL_STATE_ACTIVE),
DELEMENT(BTHF_CALL_STATE_HELD),
DELEMENT(BTHF_CALL_STATE_DIALING),
DELEMENT(BTHF_CALL_STATE_ALERTING),
DELEMENT(BTHF_CALL_STATE_INCOMING),
DELEMENT(BTHF_CALL_STATE_WAITING),
DELEMENT(BTHF_CALL_STATE_IDLE),
ENDMAP
SINTMAP(bthf_call_direction_t, -1, "(unknown)")
DELEMENT(BTHF_CALL_DIRECTION_OUTGOING),
DELEMENT(BTHF_CALL_DIRECTION_INCOMING),
ENDMAP
SINTMAP(bthf_call_mode_t, -1, "(unknown)")
DELEMENT(BTHF_CALL_TYPE_VOICE),
DELEMENT(BTHF_CALL_TYPE_DATA),
DELEMENT(BTHF_CALL_TYPE_FAX),
ENDMAP
SINTMAP(bthf_call_mpty_type_t, -1, "(unknown)")
DELEMENT(BTHF_CALL_MPTY_TYPE_SINGLE),
DELEMENT(BTHF_CALL_MPTY_TYPE_MULTI),
ENDMAP
SINTMAP(bthf_call_addrtype_t, -1, "(unknown)")
DELEMENT(BTHF_CALL_ADDRTYPE_UNKNOWN),
DELEMENT(BTHF_CALL_ADDRTYPE_INTERNATIONAL),
ENDMAP
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
SINTMAP(bthf_wbs_config_t, -1, "(unknown)")
DELEMENT(BTHF_WBS_NONE),
DELEMENT(BTHF_WBS_NO),
DELEMENT(BTHF_WBS_YES),
ENDMAP
#endif
/* Callbacks */
static char last_addr[MAX_ADDR_STR_LEN];
/*
* Callback for connection state change.
* state will have one of the values from BtHfConnectionState
*/
static void connection_state_cb(bthf_connection_state_t state,
bt_bdaddr_t *bd_addr)
{
haltest_info("%s: state=%s bd_addr=%s\n", __func__,
bthf_connection_state_t2str(state),
bt_bdaddr_t2str(bd_addr, last_addr));
}
/*
* Callback for audio connection state change.
* state will have one of the values from BtHfAudioState
*/
static void audio_state_cb(bthf_audio_state_t state, bt_bdaddr_t *bd_addr)
{
haltest_info("%s: state=%s bd_addr=%s\n", __func__,
bthf_audio_state_t2str(state),
bt_bdaddr_t2str(bd_addr, last_addr));
}
/*
* Callback for VR connection state change.
* state will have one of the values from BtHfVRState
*/
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void vr_cmd_cb(bthf_vr_state_t state, bt_bdaddr_t *bd_addr)
{
haltest_info("%s: state=%s bd_addr=%s\n", __func__,
bthf_vr_state_t2str(state),
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void vr_cmd_cb(bthf_vr_state_t state)
{
haltest_info("%s: state=%s\n", __func__, bthf_vr_state_t2str(state));
}
#endif
/* Callback for answer incoming call (ATA) */
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void answer_call_cmd_cb(bt_bdaddr_t *bd_addr)
{
haltest_info("%s: bd_addr=%s\n", __func__,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void answer_call_cmd_cb(void)
{
haltest_info("%s\n", __func__);
}
#endif
/* Callback for disconnect call (AT+CHUP) */
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void hangup_call_cmd_cb(bt_bdaddr_t *bd_addr)
{
haltest_info("%s: bd_addr=%s\n", __func__,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void hangup_call_cmd_cb(void)
{
haltest_info("%s\n", __func__);
}
#endif
/*
* Callback for disconnect call (AT+CHUP)
* type will denote Speaker/Mic gain (BtHfVolumeControl).
*/
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void volume_cmd_cb(bthf_volume_type_t type, int volume,
bt_bdaddr_t *bd_addr)
{
haltest_info("%s: type=%s volume=%d bd_addr=%s\n", __func__,
bthf_volume_type_t2str(type), volume,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void volume_cmd_cb(bthf_volume_type_t type, int volume)
{
haltest_info("%s: type=%s volume=%d\n", __func__,
bthf_volume_type_t2str(type), volume);
}
#endif
/*
* Callback for dialing an outgoing call
* If number is NULL, redial
*/
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void dial_call_cmd_cb(char *number, bt_bdaddr_t *bd_addr)
{
haltest_info("%s: number=%s bd_addr=%s\n", __func__, number,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void dial_call_cmd_cb(char *number)
{
haltest_info("%s: number=%s\n", __func__, number);
}
#endif
/*
* Callback for sending DTMF tones
* tone contains the dtmf character to be sent
*/
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void dtmf_cmd_cb(char tone, bt_bdaddr_t *bd_addr)
{
haltest_info("%s: tone=%d bd_addr=%s\n", __func__, tone,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void dtmf_cmd_cb(char tone)
{
haltest_info("%s: tone=%d\n", __func__, tone);
}
#endif
/*
* Callback for enabling/disabling noise reduction/echo cancellation
* value will be 1 to enable, 0 to disable
*/
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void nrec_cmd_cb(bthf_nrec_t nrec, bt_bdaddr_t *bd_addr)
{
haltest_info("%s: nrec=%s bd_addr=%s\n", __func__,
bthf_nrec_t2str(nrec),
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void nrec_cmd_cb(bthf_nrec_t nrec)
{
haltest_info("%s: nrec=%s\n", __func__, bthf_nrec_t2str(nrec));
}
#endif
/*
* Callback for call hold handling (AT+CHLD)
* value will contain the call hold command (0, 1, 2, 3)
*/
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void chld_cmd_cb(bthf_chld_type_t chld, bt_bdaddr_t *bd_addr)
{
haltest_info("%s: chld=%s bd_addr=%s\n", __func__,
bthf_chld_type_t2str(chld),
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void chld_cmd_cb(bthf_chld_type_t chld)
{
haltest_info("%s: chld=%s\n", __func__, bthf_chld_type_t2str(chld));
}
#endif
/* Callback for CNUM (subscriber number) */
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void cnum_cmd_cb(bt_bdaddr_t *bd_addr)
{
haltest_info("%s: bd_addr=%s\n", __func__,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void cnum_cmd_cb(void)
{
haltest_info("%s\n", __func__);
}
#endif
/* Callback for indicators (CIND) */
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void cind_cmd_cb(bt_bdaddr_t *bd_addr)
{
haltest_info("%s: bd_addr=%s\n", __func__,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void cind_cmd_cb(void)
{
haltest_info("%s\n", __func__);
}
#endif
/* Callback for operator selection (COPS) */
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void cops_cmd_cb(bt_bdaddr_t *bd_addr)
{
haltest_info("%s: bd_addr=%s\n", __func__,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void cops_cmd_cb(void)
{
haltest_info("%s\n", __func__);
}
#endif
/* Callback for call list (AT+CLCC) */
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void clcc_cmd_cb(bt_bdaddr_t *bd_addr)
{
haltest_info("%s: bd_addr=%s\n", __func__,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void clcc_cmd_cb(void)
{
haltest_info("%s\n", __func__);
}
#endif
/*
* Callback for unknown AT command recd from HF
* at_string will contain the unparsed AT string
*/
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void unknown_at_cmd_cb(char *at_string, bt_bdaddr_t *bd_addr)
{
haltest_info("%s: at_string=%s bd_addr=%s\n", __func__, at_string,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void unknown_at_cmd_cb(char *at_string)
{
haltest_info("%s: at_string=%s\n", __func__, at_string);
}
#endif
/* Callback for keypressed (HSP) event. */
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void key_pressed_cmd_cb(bt_bdaddr_t *bd_addr)
{
haltest_info("%s: bd_addr=%s\n", __func__,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#else
static void key_pressed_cmd_cb(void)
{
haltest_info("%s\n", __func__);
}
#endif
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void wbs_cb(bthf_wbs_config_t wbs, bt_bdaddr_t *bd_addr)
{
haltest_info("%s: bd_addr=%s\n", __func__,
bt_bdaddr_t2str(bd_addr, last_addr));
}
#endif
static bthf_callbacks_t hf_cbacks = {
.size = sizeof(hf_cbacks),
.connection_state_cb = connection_state_cb,
.audio_state_cb = audio_state_cb,
.vr_cmd_cb = vr_cmd_cb,
.answer_call_cmd_cb = answer_call_cmd_cb,
.hangup_call_cmd_cb = hangup_call_cmd_cb,
.volume_cmd_cb = volume_cmd_cb,
.dial_call_cmd_cb = dial_call_cmd_cb,
.dtmf_cmd_cb = dtmf_cmd_cb,
.nrec_cmd_cb = nrec_cmd_cb,
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
.wbs_cb = wbs_cb,
#endif
.chld_cmd_cb = chld_cmd_cb,
.cnum_cmd_cb = cnum_cmd_cb,
.cind_cmd_cb = cind_cmd_cb,
.cops_cmd_cb = cops_cmd_cb,
.clcc_cmd_cb = clcc_cmd_cb,
.unknown_at_cmd_cb = unknown_at_cmd_cb,
.key_pressed_cmd_cb = key_pressed_cmd_cb,
};
/* init */
static void init_p(int argc, const char **argv)
{
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
int max_hf_clients;
#endif
RETURN_IF_NULL(if_hf);
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
if (argc <= 2)
max_hf_clients = 1;
else
max_hf_clients = atoi(argv[2]);
EXEC(if_hf->init, &hf_cbacks, max_hf_clients);
#else
EXEC(if_hf->init, &hf_cbacks);
#endif
}
/* connect */
static void connect_c(int argc, const char **argv, enum_func *enum_func,
void **user)
{
if (argc == 3) {
*user = NULL;
*enum_func = enum_devices;
}
}
static void connect_p(int argc, const char **argv)
{
bt_bdaddr_t addr;
RETURN_IF_NULL(if_hf);
VERIFY_ADDR_ARG(2, &addr);
EXEC(if_hf->connect, &addr);
}
/* disconnect */
/*
* This completion function will be used for several methods
* returning recently connected address
*/
static void connected_addr_c(int argc, const char **argv, enum_func *enum_func,
void **user)
{
if (argc == 3) {
*user = last_addr;
*enum_func = enum_one_string;
}
}
/* Map completion to connected_addr_c */
#define disconnect_c connected_addr_c
static void disconnect_p(int argc, const char **argv)
{
bt_bdaddr_t addr;
RETURN_IF_NULL(if_hf);
VERIFY_ADDR_ARG(2, &addr);
EXEC(if_hf->disconnect, &addr);
}
/* create an audio connection */
/* Map completion to connected_addr_c */
#define connect_audio_c connected_addr_c
static void connect_audio_p(int argc, const char **argv)
{
bt_bdaddr_t addr;
RETURN_IF_NULL(if_hf);
VERIFY_ADDR_ARG(2, &addr);
EXEC(if_hf->connect_audio, &addr);
}
/* close the audio connection */
/* Map completion to connected_addr_c */
#define disconnect_audio_c connected_addr_c
static void disconnect_audio_p(int argc, const char **argv)
{
bt_bdaddr_t addr;
RETURN_IF_NULL(if_hf);
VERIFY_ADDR_ARG(2, &addr);
EXEC(if_hf->disconnect_audio, &addr);
}
/* start voice recognition */
static void start_voice_recognition_p(int argc, const char **argv)
{
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
bt_bdaddr_t addr;
#endif
RETURN_IF_NULL(if_hf);
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
VERIFY_ADDR_ARG(2, &addr);
EXEC(if_hf->start_voice_recognition, &addr);
#else
EXEC(if_hf->start_voice_recognition);
#endif
}
/* stop voice recognition */
static void stop_voice_recognition_p(int argc, const char **argv)
{
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
bt_bdaddr_t addr;
#endif
RETURN_IF_NULL(if_hf);
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
VERIFY_ADDR_ARG(2, &addr);
EXEC(if_hf->stop_voice_recognition, &addr);
#else
EXEC(if_hf->stop_voice_recognition);
#endif
}
/* volume control */
static void volume_control_c(int argc, const char **argv, enum_func *enum_func,
void **user)
{
if (argc == 3) {
*user = TYPE_ENUM(bthf_volume_type_t);
*enum_func = enum_defines;
}
}
static void volume_control_p(int argc, const char **argv)
{
bthf_volume_type_t type;
int volume;
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
bt_bdaddr_t addr;
#endif
RETURN_IF_NULL(if_hf);
/* volume type */
if (argc <= 2) {
haltest_error("No volume type specified\n");
return;
}
type = str2bthf_volume_type_t(argv[2]);
/* volume */
if (argc <= 3) {
haltest_error("No volume specified\n");
return;
}
volume = atoi(argv[3]);
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
VERIFY_ADDR_ARG(4, &addr);
EXEC(if_hf->volume_control, type, volume, &addr);
#else
EXEC(if_hf->volume_control, type, volume);
#endif
}
/* Combined device status change notification */
static void device_status_notification_c(int argc, const char **argv,
enum_func *enum_func,
void **user)
{
if (argc == 3) {
*user = TYPE_ENUM(bthf_network_state_t);
*enum_func = enum_defines;
} else if (argc == 4) {
*user = TYPE_ENUM(bthf_service_type_t);
*enum_func = enum_defines;
}
}
static void device_status_notification_p(int argc, const char **argv)
{
bthf_network_state_t ntk_state;
bthf_service_type_t svc_type;
int signal;
int batt_chg;
RETURN_IF_NULL(if_hf);
/* network state */
if (argc <= 2) {
haltest_error("No network state specified\n");
return;
}
ntk_state = str2bthf_network_state_t(argv[2]);
/* service type */
if (argc <= 3) {
haltest_error("No service type specified\n");
return;
}
svc_type = str2bthf_service_type_t(argv[3]);
/* signal */
if (argc <= 4) {
haltest_error("No signal specified\n");
return;
}
signal = atoi(argv[4]);
/* batt_chg */
if (argc <= 5) {
haltest_error("No batt_chg specified\n");
return;
}
batt_chg = atoi(argv[5]);
EXEC(if_hf->device_status_notification, ntk_state, svc_type, signal,
batt_chg);
}
/* Response for COPS command */
static void cops_response_p(int argc, const char **argv)
{
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
bt_bdaddr_t addr;
#endif
RETURN_IF_NULL(if_hf);
/* response */
if (argc <= 2) {
haltest_error("No cops specified\n");
return;
}
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
VERIFY_ADDR_ARG(3, &addr);
EXEC(if_hf->cops_response, argv[2], &addr);
#else
EXEC(if_hf->cops_response, argv[2]);
#endif
}
/* Response for CIND command */
static void cind_response_c(int argc, const char **argv, enum_func *enum_func,
void **user)
{
if (argc == 6) {
*user = TYPE_ENUM(bthf_call_state_t);
*enum_func = enum_defines;
}
}
static void cind_response_p(int argc, const char **argv)
{
int svc;
int num_active;
int num_held;
bthf_call_state_t call_setup_state;
int signal;
int roam;
int batt_chg;
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
bt_bdaddr_t addr;
#endif
RETURN_IF_NULL(if_hf);
/* svc */
if (argc <= 2) {
haltest_error("No service specified\n");
return;
}
svc = atoi(argv[2]);
/* num active */
if (argc <= 3) {
haltest_error("No num active specified\n");
return;
}
num_active = atoi(argv[3]);
/* num held */
if (argc <= 4) {
haltest_error("No num held specified\n");
return;
}
num_held = atoi(argv[4]);
/* call setup state */
if (argc <= 5) {
haltest_error("No call setup state specified\n");
return;
}
call_setup_state = str2bthf_call_state_t(argv[5]);
/* signal */
if (argc <= 6) {
haltest_error("No signal specified\n");
return;
}
signal = atoi(argv[6]);
/* roam */
if (argc <= 7) {
haltest_error("No roam specified\n");
return;
}
roam = atoi(argv[7]);
/* batt_chg */
if (argc <= 8) {
haltest_error("No batt_chg specified\n");
return;
}
batt_chg = atoi(argv[8]);
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
VERIFY_ADDR_ARG(9, &addr);
EXEC(if_hf->cind_response, svc, num_active, num_held, call_setup_state,
signal, roam, batt_chg, &addr);
#else
EXEC(if_hf->cind_response, svc, num_active, num_held, call_setup_state,
signal, roam, batt_chg);
#endif
}
/* Pre-formatted AT response, typically in response to unknown AT cmd */
static void formatted_at_response_p(int argc, const char **argv)
{
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
bt_bdaddr_t addr;
#endif
RETURN_IF_NULL(if_hf);
/* response */
if (argc <= 2) {
haltest_error("No response specified\n");
return;
}
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
VERIFY_ADDR_ARG(3, &addr);
EXEC(if_hf->formatted_at_response, argv[2], &addr);
#else
EXEC(if_hf->formatted_at_response, argv[2]);
#endif
}
/* at_response */
static void at_response_c(int argc, const char **argv, enum_func *enum_func,
void **user)
{
if (argc == 3) {
*user = TYPE_ENUM(bthf_at_response_t);
*enum_func = enum_defines;
}
}
static void at_response_p(int argc, const char **argv)
{
bthf_at_response_t response_code;
int error_code;
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
bt_bdaddr_t addr;
#endif
RETURN_IF_NULL(if_hf);
/* response type */
if (argc <= 2) {
haltest_error("No response specified\n");
return;
}
response_code = str2bthf_at_response_t(argv[2]);
/* error code */
if (argc <= 3)
error_code = 0;
else
error_code = atoi(argv[3]);
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
VERIFY_ADDR_ARG(4, &addr);
EXEC(if_hf->at_response, response_code, error_code, &addr);
#else
EXEC(if_hf->at_response, response_code, error_code);
#endif
}
/* response for CLCC command */
static void clcc_response_c(int argc, const char **argv, enum_func *enum_func,
void **user)
{
if (argc == 4) {
*user = TYPE_ENUM(bthf_call_direction_t);
*enum_func = enum_defines;
} else if (argc == 5) {
*user = TYPE_ENUM(bthf_call_state_t);
*enum_func = enum_defines;
} else if (argc == 6) {
*user = TYPE_ENUM(bthf_call_mode_t);
*enum_func = enum_defines;
} else if (argc == 7) {
*user = TYPE_ENUM(bthf_call_mpty_type_t);
*enum_func = enum_defines;
} else if (argc == 9) {
*user = TYPE_ENUM(bthf_call_addrtype_t);
*enum_func = enum_defines;
}
}
static void clcc_response_p(int argc, const char **argv)
{
int index;
bthf_call_direction_t dir;
bthf_call_state_t state;
bthf_call_mode_t mode;
bthf_call_mpty_type_t mpty;
const char *number;
bthf_call_addrtype_t type;
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
bt_bdaddr_t addr;
#endif
RETURN_IF_NULL(if_hf);
/* index */
if (argc <= 2) {
haltest_error("No index specified\n");
return;
}
index = atoi(argv[2]);
/* direction */
if (argc <= 3) {
haltest_error("No direction specified\n");
return;
}
dir = str2bthf_call_direction_t(argv[3]);
/* call state */
if (argc <= 4) {
haltest_error("No call state specified\n");
return;
}
state = str2bthf_call_state_t(argv[4]);
/* call mode */
if (argc <= 5) {
haltest_error("No mode specified\n");
return;
}
mode = str2bthf_call_mode_t(argv[5]);
/* call mpty type */
if (argc <= 6) {
haltest_error("No mpty type specified\n");
return;
}
mpty = str2bthf_call_mpty_type_t(argv[6]);
/* number */
if (argc <= 7) {
haltest_error("No number specified\n");
return;
}
number = argv[7];
/* call mpty type */
if (argc <= 8) {
haltest_error("No address type specified\n");
return;
}
type = str2bthf_call_addrtype_t(argv[8]);
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
VERIFY_ADDR_ARG(9, &addr);
EXEC(if_hf->clcc_response, index, dir, state, mode, mpty, number,
type, &addr);
#else
EXEC(if_hf->clcc_response, index, dir, state, mode, mpty, number,
type);
#endif
}
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
static void configure_wbs_c(int argc, const char **argv, enum_func *enum_func,
void **user)
{
if (argc == 4) {
*user = TYPE_ENUM(bthf_wbs_config_t);
*enum_func = enum_defines;
}
}
static void configure_wbs_p(int argc, const char **argv)
{
bthf_wbs_config_t wbs;
bt_bdaddr_t addr;
RETURN_IF_NULL(if_hf);
if (argc <= 3) {
haltest_error("Too few parameters specified\n");
return;
}
VERIFY_ADDR_ARG(2, &addr);
wbs = str2bthf_wbs_config_t(argv[3]);
EXEC(if_hf->configure_wbs, &addr, wbs);
}
#endif
/* phone state change */
static void phone_state_change_c(int argc, const char **argv,
enum_func *enum_func, void **user)
{
if (argc == 5) {
*user = TYPE_ENUM(bthf_call_state_t);
*enum_func = enum_defines;
} else if (argc == 7) {
*user = TYPE_ENUM(bthf_call_addrtype_t);
*enum_func = enum_defines;
}
}
static void phone_state_change_p(int argc, const char **argv)
{
int num_active;
int num_held;
bthf_call_state_t call_setup_state;
const char *number;
bthf_call_addrtype_t type;
RETURN_IF_NULL(if_hf);
/* num_active */
if (argc <= 2) {
haltest_error("No num_active specified\n");
return;
}
num_active = atoi(argv[2]);
/* num_held */
if (argc <= 3) {
haltest_error("No num_held specified\n");
return;
}
num_held = atoi(argv[3]);
/* setup state */
if (argc <= 4) {
haltest_error("No call setup state specified\n");
return;
}
call_setup_state = str2bthf_call_state_t(argv[4]);
/* number */
if (argc <= 5) {
haltest_error("No number specified\n");
return;
}
number = argv[5];
/* call mpty type */
if (argc <= 6) {
haltest_error("No address type specified\n");
return;
}
type = str2bthf_call_addrtype_t(argv[6]);
EXEC(if_hf->phone_state_change, num_active, num_held, call_setup_state,
number, type);
}
/* cleanup */
static void cleanup_p(int argc, const char **argv)
{
RETURN_IF_NULL(if_hf);
EXECV(if_hf->cleanup);
if_hf = NULL;
}
static struct method methods[] = {
#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
STD_METHODH(init, "[<max_hf_clients>]"),
STD_METHODH(start_voice_recognition, "<addr>"),
STD_METHODH(stop_voice_recognition, "<addr>"),
STD_METHODCH(volume_control, "<vol_type> <volume> <addr>"),
STD_METHODH(cops_response, "<cops string> <addr>"),
STD_METHODCH(cind_response,
"<svc> <num_active> <num_held> <setup_state> <signal> "
"<roam> <batt_chg> <addr>"),
STD_METHODH(formatted_at_response, "<at_response> <addr>"),
STD_METHODCH(at_response, "<response_code> [<error_code> <bdaddr>]"),
STD_METHODCH(clcc_response,
"<index> <direction> <state> <mode> <mpty> <number> "
"<type> <addr>"),
STD_METHODCH(configure_wbs, "<addr> <wbs config>"),
#else
STD_METHOD(init),
STD_METHOD(start_voice_recognition),
STD_METHOD(stop_voice_recognition),
STD_METHODCH(volume_control, "<vol_type> <volume>"),
STD_METHODH(cops_response, "<cops string>"),
STD_METHODCH(cind_response,
"<svc> <num_active> <num_held> <setup_state> <signal> "
"<roam> <batt_chg>"),
STD_METHODH(formatted_at_response, "<at_response>"),
STD_METHODCH(at_response, "<response_code> [<error_code>]"),
STD_METHODCH(clcc_response,
"<index> <direction> <state> <mode> <mpty> <number> "
"<type>"),
#endif
STD_METHODCH(connect, "<addr>"),
STD_METHODCH(disconnect, "<addr>"),
STD_METHODCH(connect_audio, "<addr>"),
STD_METHODCH(disconnect_audio, "<addr>"),
STD_METHODCH(device_status_notification,
"<ntk_state> <svt_type> <signal> <batt_chg>"),
STD_METHODCH(phone_state_change,
"<num_active> <num_held> <setup_state> <number> "
"<type>"),
STD_METHOD(cleanup),
END_METHOD
};
const struct interface hf_if = {
.name = "handsfree",
.methods = methods
};
|