ast_h323.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. /*
  2. * ast_h323.h
  3. *
  4. * OpenH323 Channel Driver for ASTERISK PBX.
  5. * By Jeremy McNamara
  6. * For The NuFone Network
  7. *
  8. * This code has been derived from code created by
  9. * Michael Manousos and Mark Spencer
  10. *
  11. * This file is part of the chan_h323 driver for Asterisk
  12. *
  13. * chan_h323 is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * chan_h323 is distributed WITHOUT ANY WARRANTY; without even
  19. * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  20. * PURPOSE. See the GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25. *
  26. * Version Info: $Id$
  27. */
  28. #ifndef AST_H323_H
  29. #define AST_H323_H
  30. /** These need to be redefined here because the C++
  31. side of this driver is blind to the asterisk headers */
  32. /*! G.723.1 compression */
  33. #define AST_FORMAT_G723_1 (1 << 0)
  34. /*! GSM compression */
  35. #define AST_FORMAT_GSM (1 << 1)
  36. /*! Raw mu-law data (G.711) */
  37. #define AST_FORMAT_ULAW (1 << 2)
  38. /*! Raw A-law data (G.711) */
  39. #define AST_FORMAT_ALAW (1 << 3)
  40. /*! MPEG-2 layer 3 */
  41. #define AST_FORMAT_MP3 (1 << 4)
  42. /*! ADPCM (whose?) */
  43. #define AST_FORMAT_ADPCM (1 << 5)
  44. /*! Raw 16-bit Signed Linear (8000 Hz) PCM */
  45. #define AST_FORMAT_SLINEAR (1 << 6)
  46. /*! LPC10, 180 samples/frame */
  47. #define AST_FORMAT_LPC10 (1 << 7)
  48. /*! G.729A audio */
  49. #define AST_FORMAT_G729A (1 << 8)
  50. /*! SpeeX Free Compression */
  51. #define AST_FORMAT_SPEEX (1 << 9)
  52. /*! ILBC Free Codec */
  53. #define AST_FORMAT_ILBC (1 << 10)
  54. /**This class describes the G.723.1 codec capability.
  55. */
  56. class H323_G7231Capability : public H323AudioCapability
  57. {
  58. PCLASSINFO(H323_G7231Capability, H323AudioCapability);
  59. public:
  60. H323_G7231Capability(
  61. BOOL annexA = TRUE /// Enable Annex A silence insertion descriptors
  62. );
  63. Comparison Compare(const PObject & obj) const;
  64. PObject * Clone() const;
  65. virtual H323Codec * CreateCodec(
  66. H323Codec::Direction direction /// Direction in which this instance runs
  67. ) const;
  68. unsigned GetSubType() const;
  69. PString GetFormatName() const;
  70. BOOL OnSendingPDU(
  71. H245_AudioCapability & pdu, /// PDU to set information on
  72. unsigned packetSize /// Packet size to use in capability
  73. ) const;
  74. BOOL OnReceivedPDU(
  75. const H245_AudioCapability & pdu, /// PDU to get information from
  76. unsigned & packetSize /// Packet size to use in capability
  77. );
  78. protected:
  79. BOOL annexA;
  80. };
  81. /**This class describes the (fake) G729 codec capability.
  82. */
  83. class AST_G729Capability : public H323AudioCapability
  84. {
  85. PCLASSINFO(AST_G729Capability, H323AudioCapability);
  86. public:
  87. /**@name Construction */
  88. //@{
  89. /**Create a new G.729 capability.
  90. */
  91. AST_G729Capability();
  92. //@}
  93. /**@name Overrides from class PObject */
  94. //@{
  95. /**Create a copy of the object.
  96. */
  97. virtual PObject * Clone() const;
  98. //@}
  99. /**@name Operations */
  100. //@{
  101. /**Create the codec instance, allocating resources as required.
  102. */
  103. virtual H323Codec * CreateCodec(
  104. H323Codec::Direction direction /// Direction in which this instance runs
  105. ) const;
  106. //@}
  107. /**@name Identification functions */
  108. //@{
  109. /**Get the sub-type of the capability. This is a code dependent on the
  110. main type of the capability.
  111. This returns one of the four possible combinations of mode and speed
  112. using the enum values of the protocol ASN H245_AudioCapability class.
  113. */
  114. virtual unsigned GetSubType() const;
  115. /**Get the name of the media data format this class represents.
  116. */
  117. virtual PString GetFormatName() const;
  118. //@}
  119. };
  120. /**This class describes the VoiceAge G729A codec capability.
  121. */
  122. class AST_G729ACapability : public H323AudioCapability
  123. {
  124. PCLASSINFO(AST_G729ACapability, H323AudioCapability);
  125. public:
  126. /**@name Construction */
  127. //@{
  128. /**Create a new G.729A capability.
  129. */
  130. AST_G729ACapability();
  131. //@}
  132. /**@name Overrides from class PObject */
  133. //@{
  134. /**Create a copy of the object.
  135. */
  136. virtual PObject * Clone() const;
  137. //@}
  138. /**@name Operations */
  139. //@{
  140. /**Create the codec instance, allocating resources as required.
  141. */
  142. virtual H323Codec * CreateCodec(
  143. H323Codec::Direction direction /// Direction in which this instance runs
  144. ) const;
  145. //@}
  146. /**@name Identification functions */
  147. //@{
  148. /**Get the sub-type of the capability. This is a code dependent on the
  149. main type of the capability.
  150. This returns one of the four possible combinations of mode and speed
  151. using the enum values of the protocol ASN H245_AudioCapability class.
  152. */
  153. virtual unsigned GetSubType() const;
  154. /**Get the name of the media data format this class represents.
  155. */
  156. virtual PString GetFormatName() const;
  157. //@}
  158. };
  159. class MyH323EndPoint : public H323EndPoint {
  160. PCLASSINFO(MyH323EndPoint, H323EndPoint);
  161. public:
  162. int MakeCall(const PString &, PString &, unsigned int *, unsigned int, char *, char *s);
  163. BOOL ClearCall(const PString &);
  164. void OnClosedLogicalChannel(H323Connection &, const H323Channel &);
  165. void OnConnectionEstablished(H323Connection &, const PString &);
  166. void OnConnectionCleared(H323Connection &, const PString &);
  167. H323Connection * CreateConnection(unsigned, void *);
  168. void SendUserTone(const PString &, char);
  169. H323Capabilities GetCapabilities(void);
  170. BOOL OnConnectionForwarded(H323Connection &, const PString &, const H323SignalPDU &);
  171. BOOL ForwardConnection(H323Connection &, const PString &, const H323SignalPDU &);
  172. PStringArray SupportedPrefixes;
  173. void SetEndpointTypeInfo( H225_EndpointType & info ) const;
  174. void SetGateway(void);
  175. };
  176. class MyH323Connection : public H323Connection {
  177. PCLASSINFO(MyH323Connection, H323Connection);
  178. public:
  179. MyH323Connection(MyH323EndPoint &, unsigned, unsigned);
  180. ~MyH323Connection();
  181. H323Channel * CreateRealTimeLogicalChannel(const H323Capability &,
  182. H323Channel::Directions,
  183. unsigned,
  184. const H245_H2250LogicalChannelParameters *);
  185. H323Connection::AnswerCallResponse OnAnswerCall(const PString &, const H323SignalPDU &, H323SignalPDU &);
  186. void OnReceivedReleaseComplete(const H323SignalPDU &);
  187. BOOL OnAlerting(const H323SignalPDU &, const PString &);
  188. BOOL OnSendReleaseComplete(H323SignalPDU &);
  189. BOOL OnReceivedSignalSetup(const H323SignalPDU &);
  190. BOOL OnReceivedFacility(const H323SignalPDU &);
  191. BOOL OnSendSignalSetup(H323SignalPDU &);
  192. BOOL OnStartLogicalChannel(H323Channel &);
  193. BOOL OnClosingLogicalChannel(H323Channel &);
  194. void SendUserInputTone(char, unsigned);
  195. void OnUserInputTone(char, unsigned, unsigned, unsigned);
  196. void OnUserInputString(const PString &value);
  197. PString sourceAliases;
  198. PString destAliases;
  199. PString sourceE164;
  200. PString destE164;
  201. PIPSocket::Address externalIpAddress;
  202. WORD externalPort;
  203. WORD sessionId;
  204. BOOL bridging;
  205. BOOL AST_RTP_Connected;
  206. BOOL AST_Outgoing;
  207. };
  208. class MyH323_ExternalRTPChannel : public H323_ExternalRTPChannel {
  209. PCLASSINFO(MyH323_ExternalRTPChannel, H323_ExternalRTPChannel);
  210. public:
  211. MyH323_ExternalRTPChannel(
  212. MyH323Connection & connection,
  213. const H323Capability & capability,
  214. Directions direction,
  215. unsigned sessionID);
  216. MyH323_ExternalRTPChannel(
  217. MyH323Connection & connection,
  218. const H323Capability & capability,
  219. Directions direction,
  220. unsigned sessionID,
  221. const H323TransportAddress & data,
  222. const H323TransportAddress & control);
  223. /* Create a new channel. */
  224. MyH323_ExternalRTPChannel(
  225. MyH323Connection & connection,
  226. const H323Capability & capability,
  227. Directions direction,
  228. unsigned sessionID,
  229. const PIPSocket::Address & ip,
  230. WORD dataPort);
  231. /* Destructor */
  232. ~MyH323_ExternalRTPChannel();
  233. BOOL OnReceivedAckPDU(const H245_H2250LogicalChannelAckParameters & param);
  234. PIPSocket::Address externalIpAddress;
  235. WORD externalPort;
  236. };
  237. /**
  238. * The MyProcess is a necessary descendant PProcess class so that the H323EndPoint
  239. * objected to be created from within that class. (Who owns main() problem).
  240. */
  241. class MyProcess : public PProcess {
  242. PCLASSINFO(MyProcess, PProcess);
  243. public:
  244. MyProcess();
  245. void Main();
  246. };
  247. #endif /* !defined AST_H323_H */