/protocols/jain-mgcp/stack/src/test/java/org/mobicents/protocols/mgcp/stack/test/auditendpoint/MGW.java

http://mobicents.googlecode.com/ · Java · 108 lines · 61 code · 26 blank · 21 comment · 1 complexity · fe6ecc0c89a1709579059c0335cff5ea MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright 2011, Red Hat, Inc. and individual contributors
  4. * by the @authors tag. See the copyright.txt in the distribution for a
  5. * full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. package org.mobicents.protocols.mgcp.stack.test.auditendpoint;
  23. import jain.protocol.ip.mgcp.JainMgcpCommandEvent;
  24. import jain.protocol.ip.mgcp.JainMgcpEvent;
  25. import jain.protocol.ip.mgcp.JainMgcpResponseEvent;
  26. import jain.protocol.ip.mgcp.message.AuditEndpoint;
  27. import jain.protocol.ip.mgcp.message.AuditEndpointResponse;
  28. import jain.protocol.ip.mgcp.message.Constants;
  29. import jain.protocol.ip.mgcp.message.parms.InfoCode;
  30. import jain.protocol.ip.mgcp.message.parms.ReturnCode;
  31. import java.util.TooManyListenersException;
  32. import org.apache.log4j.Logger;
  33. import org.mobicents.protocols.mgcp.stack.JainMgcpExtendedListener;
  34. import org.mobicents.protocols.mgcp.stack.JainMgcpStackProviderImpl;
  35. public class MGW implements JainMgcpExtendedListener {
  36. private static Logger logger = Logger.getLogger(MGW.class);
  37. private boolean responseSent = false;
  38. JainMgcpStackProviderImpl mgwProvider;
  39. public MGW(JainMgcpStackProviderImpl mgwProvider) {
  40. this.mgwProvider = mgwProvider;
  41. try {
  42. this.mgwProvider.addJainMgcpListener(this);
  43. } catch (TooManyListenersException e) {
  44. e.printStackTrace();
  45. AuditEndpointTest.fail("Unexpected Exception");
  46. }
  47. }
  48. public void checkState() {
  49. AuditEndpointTest.assertTrue("Expect to sent CRCX Response", responseSent);
  50. }
  51. public void transactionEnded(int handle) {
  52. logger.info("transactionEnded " + handle);
  53. }
  54. public void transactionRxTimedOut(JainMgcpCommandEvent command) {
  55. logger.info("transactionRxTimedOut " + command);
  56. }
  57. public void transactionTxTimedOut(JainMgcpCommandEvent command) {
  58. logger.info("transactionTxTimedOut " + command);
  59. }
  60. public void processMgcpCommandEvent(JainMgcpCommandEvent jainmgcpcommandevent) {
  61. logger.info("processMgcpCommandEvent " + jainmgcpcommandevent);
  62. switch (jainmgcpcommandevent.getObjectIdentifier()) {
  63. case Constants.CMD_AUDIT_ENDPOINT:
  64. AuditEndpoint auditEndpoint = (AuditEndpoint) jainmgcpcommandevent;
  65. InfoCode[] infoCodeList = auditEndpoint.getRequestedInfo();
  66. AuditEndpointTest.assertEquals(1, infoCodeList.length);
  67. AuditEndpointTest.assertEquals(InfoCode.CAPABILITIES, infoCodeList[0].getInfoCode());
  68. AuditEndpointResponse response = new AuditEndpointResponse(jainmgcpcommandevent.getSource(),
  69. ReturnCode.Transaction_Executed_Normally);
  70. response.setTransactionHandle(jainmgcpcommandevent.getTransactionHandle());
  71. mgwProvider.sendMgcpEvents(new JainMgcpEvent[] { response });
  72. responseSent = true;
  73. break;
  74. default:
  75. logger.warn("This REQUEST is unexpected " + jainmgcpcommandevent);
  76. break;
  77. }
  78. }
  79. public void processMgcpResponseEvent(JainMgcpResponseEvent jainmgcpresponseevent) {
  80. logger.info("processMgcpResponseEvent " + jainmgcpresponseevent);
  81. }
  82. }