/servers/media/core/controllers/rtsp/src/main/java/org/mobicents/media/server/ctrl/rtsp/stack/RtspServerStackImpl.java

http://mobicents.googlecode.com/ · Java · 160 lines · 102 code · 34 blank · 24 comment · 0 complexity · 4b7aae1955c8a1ae22f46c7652ccf881 MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright XXXX, Red Hat Middleware LLC, and individual contributors as indicated
  4. * by the @authors tag. All rights reserved.
  5. * See the copyright.txt in the distribution for a full listing
  6. * of individual contributors.
  7. * This copyrighted material is made available to anyone wishing to use,
  8. * modify, copy, or redistribute it subject to the terms and conditions
  9. * of the GNU General Public License, v. 2.0.
  10. * This program is distributed in the hope that it will be useful, but WITHOUT A
  11. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12. * PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. * You should have received a copy of the GNU General Public License,
  14. * v. 2.0 along with this distribution; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16. * MA 02110-1301, USA.
  17. */
  18. package org.mobicents.media.server.ctrl.rtsp.stack;
  19. import java.net.InetAddress;
  20. import java.net.InetSocketAddress;
  21. import java.net.UnknownHostException;
  22. import java.util.concurrent.Executors;
  23. import java.util.concurrent.ThreadFactory;
  24. import java.util.concurrent.atomic.AtomicLong;
  25. import org.apache.log4j.Logger;
  26. import org.jboss.netty.bootstrap.ServerBootstrap;
  27. import org.jboss.netty.channel.Channel;
  28. import org.jboss.netty.channel.ChannelFuture;
  29. import org.jboss.netty.channel.ChannelFutureListener;
  30. import org.jboss.netty.channel.group.ChannelGroup;
  31. import org.jboss.netty.channel.group.ChannelGroupFuture;
  32. import org.jboss.netty.channel.group.DefaultChannelGroup;
  33. import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
  34. import org.jboss.netty.handler.codec.http.HttpRequest;
  35. import org.jboss.netty.handler.codec.http.HttpResponse;
  36. /**
  37. *
  38. * @author amit.bhayani
  39. *
  40. */
  41. public class RtspServerStackImpl implements RtspStack {
  42. private static Logger logger = Logger.getLogger(RtspServerStackImpl.class);
  43. private final String address;
  44. private final int port;
  45. private final InetAddress inetAddress;
  46. private Channel channel = null;
  47. private ServerBootstrap bootstrap = null;
  48. private RtspListener listener = null;
  49. static final ChannelGroup allChannels = new DefaultChannelGroup(
  50. "mms-server");
  51. public RtspServerStackImpl(String address, int port)
  52. throws UnknownHostException {
  53. this.address = address;
  54. this.port = port;
  55. inetAddress = InetAddress.getByName(this.address);
  56. }
  57. public String getAddress() {
  58. return this.address;
  59. }
  60. public int getPort() {
  61. return this.port;
  62. }
  63. public void start() {
  64. InetSocketAddress bindAddress = new InetSocketAddress(this.inetAddress,
  65. this.port);
  66. bootstrap = new ServerBootstrap(
  67. new NioServerSocketChannelFactory(
  68. Executors
  69. .newCachedThreadPool(new RtspServerBossThreadFactory()),
  70. Executors
  71. .newCachedThreadPool(new RtspServerWorkerThreadFactory())));
  72. // Set up the event pipeline factory.
  73. bootstrap.setPipelineFactory(new RtspServerPipelineFactory(this));
  74. // Bind and start to accept incoming connections.
  75. channel = bootstrap.bind(bindAddress);
  76. allChannels.add(channel);
  77. logger.info("Mobicents RTSP Server started and bound to "
  78. + bindAddress.toString());
  79. }
  80. public void stop() {
  81. ChannelGroupFuture future = allChannels.close();
  82. future.awaitUninterruptibly();
  83. bootstrap.getFactory().releaseExternalResources();
  84. }
  85. public void setRtspListener(RtspListener listener) {
  86. this.listener = listener;
  87. }
  88. protected void processRtspResponse(HttpResponse rtspResponse) {
  89. synchronized (this.listener) {
  90. listener.onRtspResponse(rtspResponse);
  91. }
  92. }
  93. protected void processRtspRequest(HttpRequest rtspRequest, Channel channel) {
  94. synchronized (this.listener) {
  95. listener.onRtspRequest(rtspRequest, channel);
  96. }
  97. }
  98. private class ServerChannelFutureListener implements ChannelFutureListener {
  99. public void operationComplete(ChannelFuture arg0) throws Exception {
  100. logger.info("Mobicents RTSP Server Stop complete");
  101. }
  102. }
  103. public void sendRquest(HttpRequest rtspRequest, String host, int port) {
  104. throw new UnsupportedOperationException("Not Supported yet");
  105. }
  106. }
  107. class RtspServerBossThreadFactory implements ThreadFactory {
  108. public static final AtomicLong sequence = new AtomicLong(0);
  109. private ThreadGroup factoryThreadGroup = new ThreadGroup(
  110. "RtspServerBossThreadGroup[" + sequence.incrementAndGet() + "]");
  111. public Thread newThread(Runnable r) {
  112. Thread t = new Thread(this.factoryThreadGroup, r);
  113. t.setPriority(Thread.NORM_PRIORITY);
  114. return t;
  115. }
  116. }
  117. class RtspServerWorkerThreadFactory implements ThreadFactory {
  118. public static final AtomicLong sequence = new AtomicLong(0);
  119. private ThreadGroup factoryThreadGroup = new ThreadGroup(
  120. "RtspServerWorkerThreadGroup[" + sequence.incrementAndGet() + "]");
  121. public Thread newThread(Runnable r) {
  122. Thread t = new Thread(this.factoryThreadGroup, r);
  123. t.setPriority(Thread.NORM_PRIORITY);
  124. return t;
  125. }
  126. }