/servers/jain-sip-ha/core/src/main/java/org/mobicents/ha/javax/sip/SipLoadBalancer.java

http://mobicents.googlecode.com/ · Java · 222 lines · 146 code · 11 blank · 65 comment · 17 complexity · ed2c8a7466aafe6a64d4f17b40f19878 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. /*
  23. * This is free software; you can redistribute it and/or modify it
  24. * under the terms of the GNU Lesser General Public License as
  25. * published by the Free Software Foundation; either version 2.1 of
  26. * the License, or (at your option) any later version.
  27. *
  28. * This software is distributed in the hope that it will be useful,
  29. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  30. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  31. * Lesser General Public License for more details.
  32. *
  33. * You should have received a copy of the GNU Lesser General Public
  34. * License along with this software; if not, write to the Free
  35. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  36. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  37. */
  38. package org.mobicents.ha.javax.sip;
  39. import java.io.Serializable;
  40. import java.net.InetAddress;
  41. import javax.sip.PeerUnavailableException;
  42. import javax.sip.SipFactory;
  43. import javax.sip.address.Address;
  44. import javax.sip.address.AddressFactory;
  45. import javax.sip.address.SipURI;
  46. import javax.sip.header.HeaderFactory;
  47. import javax.sip.header.RouteHeader;
  48. /**
  49. *
  50. * @author <A HREF="mailto:jean.deruelle@gmail.com">Jean Deruelle</A>
  51. *
  52. */
  53. public class SipLoadBalancer implements Serializable {
  54. private static SipFactory sipFactory = SipFactory.getInstance();
  55. private static AddressFactory addressFactory;
  56. private static HeaderFactory headerFactory;
  57. static {
  58. try {
  59. addressFactory = sipFactory.createAddressFactory();
  60. headerFactory = sipFactory.createHeaderFactory();
  61. } catch (PeerUnavailableException e) {
  62. throw new RuntimeException("Problem with factory creation", e);
  63. }
  64. }
  65. private static final long serialVersionUID = 1L;
  66. private InetAddress address;
  67. private int sipPort;
  68. private int rmiPort;
  69. private transient LoadBalancerHeartBeatingService loadBalancerHeartBeatingService;
  70. private transient RouteHeader balancerRouteHeaderUdp;
  71. private transient RouteHeader balancerRouteHeaderTcp;
  72. private transient boolean available;
  73. private transient boolean displayWarning;
  74. private transient Address sipAddress;
  75. /**
  76. * @param address
  77. * @param sipPort
  78. * @param hostName
  79. */
  80. public SipLoadBalancer(LoadBalancerHeartBeatingService loadBalancerHeartBeatingService, InetAddress address, int sipPort, int rmiPort) {
  81. super();
  82. this.available = false;
  83. this.displayWarning = true;
  84. this.address = address;
  85. this.sipPort = sipPort;
  86. this.rmiPort = rmiPort;
  87. this.loadBalancerHeartBeatingService = loadBalancerHeartBeatingService;
  88. try {
  89. javax.sip.address.SipURI sipUriUdp = addressFactory.createSipURI(null, address.getHostAddress());
  90. sipUriUdp.setPort(sipPort);
  91. sipUriUdp.setLrParam();
  92. javax.sip.address.SipURI sipAddressUri = (SipURI) sipUriUdp.clone();
  93. sipUriUdp.setTransportParam("udp");
  94. javax.sip.address.SipURI sipUriTcp = (SipURI) sipUriUdp.clone();
  95. sipUriTcp.setTransportParam("tcp");
  96. javax.sip.address.Address routeAddressUdp =
  97. addressFactory.createAddress(sipUriUdp);
  98. balancerRouteHeaderUdp =
  99. headerFactory.createRouteHeader(routeAddressUdp);
  100. javax.sip.address.Address routeAddressTcp =
  101. addressFactory.createAddress(sipUriTcp);
  102. balancerRouteHeaderTcp =
  103. headerFactory.createRouteHeader(routeAddressTcp);
  104. sipAddress = addressFactory.createAddress(sipAddressUri);
  105. } catch (Exception e) {
  106. throw new RuntimeException(e);
  107. }
  108. }
  109. /**
  110. * @param address the address to set
  111. */
  112. public void setAddress(InetAddress address) {
  113. this.address = address;
  114. }
  115. /**
  116. * @return the address
  117. */
  118. public InetAddress getAddress() {
  119. return address;
  120. }
  121. /**
  122. * @param sipPort the sipPort to set
  123. */
  124. public void setSipPort(int sipPort) {
  125. this.sipPort = sipPort;
  126. }
  127. /**
  128. * @return the sipPort
  129. */
  130. public int getSipPort() {
  131. return sipPort;
  132. }
  133. public int getRmiPort() {
  134. return rmiPort;
  135. }
  136. public void setRmiPort(int rmiPort) {
  137. this.rmiPort = rmiPort;
  138. }
  139. public RouteHeader getBalancerRouteHeaderTcp() {
  140. return balancerRouteHeaderTcp;
  141. }
  142. public RouteHeader getBalancerRouteHeaderUdp() {
  143. return balancerRouteHeaderUdp;
  144. }
  145. public void setBalancerRouteHeaderTcp(RouteHeader balancerRouteHeader) {
  146. this.balancerRouteHeaderTcp = balancerRouteHeader;
  147. }
  148. public void setBalancerRouteHeaderUdp(RouteHeader balancerRouteHeader) {
  149. this.balancerRouteHeaderUdp = balancerRouteHeader;
  150. }
  151. public boolean isAvailable() {
  152. return available;
  153. }
  154. public void setAvailable(boolean available) {
  155. this.available = available;
  156. }
  157. public boolean isDisplayWarning() {
  158. return displayWarning;
  159. }
  160. public void setDisplayWarning(boolean displayWarning) {
  161. this.displayWarning = displayWarning;
  162. }
  163. /* (non-Javadoc)
  164. * @see java.lang.Object#hashCode()
  165. */
  166. @Override
  167. public int hashCode() {
  168. final int prime = 31;
  169. int result = 1;
  170. result = prime * result + ((address == null) ? 0 : address.hashCode());
  171. result = prime * result + sipPort;
  172. result = prime * result + rmiPort;
  173. return result;
  174. }
  175. /* (non-Javadoc)
  176. * @see java.lang.Object#equals(java.lang.Object)
  177. */
  178. @Override
  179. public boolean equals(Object obj) {
  180. if (this == obj)
  181. return true;
  182. if (obj == null)
  183. return false;
  184. if (getClass() != obj.getClass())
  185. return false;
  186. SipLoadBalancer other = (SipLoadBalancer) obj;
  187. if (address == null) {
  188. if (other.address != null)
  189. return false;
  190. } else if (!address.equals(other.address))
  191. return false;
  192. if (sipPort != other.sipPort)
  193. return false;
  194. if (rmiPort != other.rmiPort)
  195. return false;
  196. return true;
  197. }
  198. @Override
  199. public String toString() {
  200. return getAddress() + ":" + getSipPort() + ":" + getRmiPort();
  201. }
  202. public void switchover(String fromJvmRoute, String toJvmRoute) {
  203. loadBalancerHeartBeatingService.sendSwitchoverInstruction(this, fromJvmRoute, toJvmRoute);
  204. }
  205. public Address getSipAddress() {
  206. return sipAddress;
  207. }
  208. public void setSipAddress(Address sipAddress) {
  209. this.sipAddress = sipAddress;
  210. }
  211. }