voicecall.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. *
  3. * oFono - Open Source Telephony
  4. *
  5. * Copyright (C) 2008-2011 Intel Corporation. All rights reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. *
  20. */
  21. #ifndef __OFONO_VOICECALL_H
  22. #define __OFONO_VOICECALL_H
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #include <ofono/types.h>
  27. struct ofono_voicecall;
  28. typedef void (*ofono_voicecall_cb_t)(const struct ofono_error *error,
  29. void *data);
  30. /* Voice call related functionality, including ATD, ATA, +CHLD, CTFR, CLCC
  31. * and VTS.
  32. *
  33. * It is up to the plugin to implement polling of CLCC if the modem does
  34. * not support vendor extensions for call progress indication.
  35. */
  36. struct ofono_voicecall_driver {
  37. const char *name;
  38. int (*probe)(struct ofono_voicecall *vc, unsigned int vendor,
  39. void *data);
  40. void (*remove)(struct ofono_voicecall *vc);
  41. /* According to 22.030 the dial is expected to do the following:
  42. * - If an there is an existing active call(s), and the dial is
  43. * successful, the active calls are automatically put on hold.
  44. * Driver must take special care to put the call on hold before
  45. * returning from atd call.
  46. *
  47. * - The dial has no affect on the state of the waiting call,
  48. * if the hardware does not support this, then it is better
  49. * to return an error here. No special handling of the
  50. * waiting call is performed by the core
  51. */
  52. void (*dial)(struct ofono_voicecall *vc,
  53. const struct ofono_phone_number *number,
  54. enum ofono_clir_option clir, ofono_voicecall_cb_t cb,
  55. void *data);
  56. /* Answers an incoming call, this usually corresponds to ATA */
  57. void (*answer)(struct ofono_voicecall *vc,
  58. ofono_voicecall_cb_t cb, void *data);
  59. /* Hangs up active, dialing, alerting or incoming calls */
  60. void (*hangup_active)(struct ofono_voicecall *vc,
  61. ofono_voicecall_cb_t cb, void *data);
  62. /* Hangs up all calls except waiting calls */
  63. void (*hangup_all)(struct ofono_voicecall *vc,
  64. ofono_voicecall_cb_t cb, void *data);
  65. /*
  66. * Holds all active calls and answers waiting call. If there is
  67. * no waiting calls, retrieves held call. This usually
  68. * corresponds to +CHLD=2
  69. */
  70. void (*hold_all_active)(struct ofono_voicecall *vc,
  71. ofono_voicecall_cb_t cb, void *data);
  72. /* Releases all held calls, this usually corresponds to +CHLD=0*/
  73. void (*release_all_held)(struct ofono_voicecall *vc,
  74. ofono_voicecall_cb_t cb, void *data);
  75. /*
  76. * Sets the UDUB condition on a waiting call. This usually
  77. * corresponds to +CHLD=0
  78. */
  79. void (*set_udub)(struct ofono_voicecall *vc,
  80. ofono_voicecall_cb_t cb, void *data);
  81. /*
  82. * Releases all active calls and accepts a possible waiting call.
  83. * This usually corresponds to +CHLD=1
  84. */
  85. void (*release_all_active)(struct ofono_voicecall *vc,
  86. ofono_voicecall_cb_t cb, void *data);
  87. /*
  88. * Releases a specific call given by id. This usually corresponds to
  89. * +CHLD=1X. In 3GPP this command is only guaranteed to affect active
  90. * calls. Plugins are encouraged to implement this using vendor
  91. * commands that can also affect held calls
  92. */
  93. void (*release_specific)(struct ofono_voicecall *vc, int id,
  94. ofono_voicecall_cb_t cb, void *data);
  95. /*
  96. * Breaks out a party given by id from a multiparty call. This
  97. * usually corresponds to +CHLD=2X
  98. */
  99. void (*private_chat)(struct ofono_voicecall *vc, int id,
  100. ofono_voicecall_cb_t cb, void *data);
  101. /*
  102. * Joins held and active calls together into a multiparty call. This
  103. * usually corresponds to +CHLD=3
  104. */
  105. void (*create_multiparty)(struct ofono_voicecall *vc,
  106. ofono_voicecall_cb_t cb, void *data);
  107. /*
  108. * Connects two calls together and disconnects from both calls. This
  109. * usually corresponds to +CHLD=4
  110. */
  111. void (*transfer)(struct ofono_voicecall *vc,
  112. ofono_voicecall_cb_t cb, void *data);
  113. /*
  114. * Deflects an incoming or waiting call to a given number. This
  115. * usually corresponds to +CTFR
  116. */
  117. void (*deflect)(struct ofono_voicecall *vc,
  118. const struct ofono_phone_number *ph,
  119. ofono_voicecall_cb_t cb, void *data);
  120. /*
  121. * This is equivalent to +CHLD=2 but does not affect a possible
  122. * waiting call.
  123. */
  124. void (*swap_without_accept)(struct ofono_voicecall *vc,
  125. ofono_voicecall_cb_t cb, void *data);
  126. void (*send_tones)(struct ofono_voicecall *vc, const char *tones,
  127. ofono_voicecall_cb_t cb, void *data);
  128. };
  129. void ofono_voicecall_en_list_notify(struct ofono_voicecall *vc,
  130. char **nw_en_list);
  131. void ofono_voicecall_notify(struct ofono_voicecall *vc,
  132. const struct ofono_call *call);
  133. void ofono_voicecall_disconnected(struct ofono_voicecall *vc, int id,
  134. enum ofono_disconnect_reason reason,
  135. const struct ofono_error *error);
  136. /*
  137. * For those protocols where MPTY creation happens outside of oFono's control,
  138. * e.g. Bluetooth Handsfree, set the hint of the MPTY call list by passing
  139. * in a bitmask of ids participating in the MPTY call
  140. */
  141. void ofono_voicecall_mpty_hint(struct ofono_voicecall *vc, unsigned int ids);
  142. int ofono_voicecall_driver_register(const struct ofono_voicecall_driver *d);
  143. void ofono_voicecall_driver_unregister(const struct ofono_voicecall_driver *d);
  144. struct ofono_voicecall *ofono_voicecall_create(struct ofono_modem *modem,
  145. unsigned int vendor,
  146. const char *driver, void *data);
  147. void ofono_voicecall_register(struct ofono_voicecall *vc);
  148. void ofono_voicecall_remove(struct ofono_voicecall *vc);
  149. void ofono_voicecall_set_data(struct ofono_voicecall *vc, void *data);
  150. void *ofono_voicecall_get_data(struct ofono_voicecall *vc);
  151. int ofono_voicecall_get_next_callid(struct ofono_voicecall *vc);
  152. void ofono_voicecall_ssn_mo_notify(struct ofono_voicecall *vc, unsigned int id,
  153. int code, int index);
  154. void ofono_voicecall_ssn_mt_notify(struct ofono_voicecall *vc, unsigned int id,
  155. int code, int index,
  156. const struct ofono_phone_number *ph);
  157. #ifdef __cplusplus
  158. }
  159. #endif
  160. #endif /* __OFONO_VOICECALL_H */