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

http://mobicents.googlecode.com/ · Java · 117 lines · 68 code · 28 blank · 21 comment · 1 complexity · 9d72e413f81b7c9dce77ed96202b8414 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.restartinprogress;
  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.Constants;
  27. import jain.protocol.ip.mgcp.message.RestartInProgress;
  28. import jain.protocol.ip.mgcp.message.RestartInProgressResponse;
  29. import jain.protocol.ip.mgcp.message.parms.EndpointIdentifier;
  30. import jain.protocol.ip.mgcp.message.parms.NotifiedEntity;
  31. import jain.protocol.ip.mgcp.message.parms.RestartMethod;
  32. import org.apache.log4j.Logger;
  33. import org.mobicents.protocols.mgcp.stack.JainMgcpExtendedListener;
  34. import org.mobicents.protocols.mgcp.stack.JainMgcpStackProviderImpl;
  35. import org.mobicents.protocols.mgcp.stack.test.auditendpoint.AuditEndpointTest;
  36. public class MGW implements JainMgcpExtendedListener {
  37. private static Logger logger = Logger.getLogger(MGW.class);
  38. private boolean responseReceived = false;
  39. int caPort = 0;
  40. JainMgcpStackProviderImpl mgwProvider;
  41. public MGW(JainMgcpStackProviderImpl mgwProvider, int caPort) {
  42. this.mgwProvider = mgwProvider;
  43. this.caPort = caPort;
  44. }
  45. public void sendRestartInProgress() {
  46. try {
  47. this.mgwProvider.addJainMgcpListener(this);
  48. EndpointIdentifier endpointID = new EndpointIdentifier("media/trunk/Announcement/enp-1", "127.0.0.1:"
  49. + caPort);
  50. RestartInProgress restartInProgress = new RestartInProgress(this, endpointID, RestartMethod.Graceful);
  51. restartInProgress.setTransactionHandle(mgwProvider.getUniqueTransactionHandler());
  52. mgwProvider.sendMgcpEvents(new JainMgcpEvent[] { restartInProgress });
  53. logger.debug(" RestartInProgress command sent for TxId " + restartInProgress.getTransactionHandle());
  54. } catch (Exception e) {
  55. e.printStackTrace();
  56. AuditEndpointTest.fail("Unexpected Exception");
  57. }
  58. }
  59. public void checkState() {
  60. RestartInProgressTest.assertTrue("Expect to Receive RSIP Response", responseReceived);
  61. }
  62. public void transactionEnded(int handle) {
  63. logger.info("transactionEnded " + handle);
  64. }
  65. public void transactionRxTimedOut(JainMgcpCommandEvent command) {
  66. logger.info("transactionRxTimedOut " + command);
  67. }
  68. public void transactionTxTimedOut(JainMgcpCommandEvent command) {
  69. logger.info("transactionTxTimedOut " + command);
  70. }
  71. public void processMgcpCommandEvent(JainMgcpCommandEvent jainmgcpcommandevent) {
  72. logger.info("processMgcpCommandEvent " + jainmgcpcommandevent);
  73. }
  74. public void processMgcpResponseEvent(JainMgcpResponseEvent jainmgcpresponseevent) {
  75. logger.info("processMgcpResponseEvent " + jainmgcpresponseevent);
  76. switch (jainmgcpresponseevent.getObjectIdentifier()) {
  77. case Constants.RESP_RESTART_IN_PROGRESS:
  78. RestartInProgressResponse response = (RestartInProgressResponse) jainmgcpresponseevent;
  79. NotifiedEntity notifiedEntity = response.getNotifiedEntity();
  80. RestartInProgressTest.assertNotNull(notifiedEntity);
  81. RestartInProgressTest.assertEquals("127.0.0.1", notifiedEntity.getDomainName());
  82. responseReceived = true;
  83. break;
  84. default:
  85. logger.warn("This RESPONSE is unexpected " + jainmgcpresponseevent);
  86. break;
  87. }
  88. }
  89. }