/protocols/ss7/m3ua/impl/src/main/java/org/mobicents/protocols/ss7/m3ua/impl/tcp/TcpServerChannel.java

http://mobicents.googlecode.com/ · Java · 87 lines · 27 code · 8 blank · 52 comment · 0 complexity · 7c9d3b441652e5fa2e945dd7a1fae9fb 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.ss7.m3ua.impl.tcp;
  23. import java.io.IOException;
  24. import java.net.SocketAddress;
  25. import java.nio.channels.ServerSocketChannel;
  26. import java.nio.channels.spi.AbstractSelectableChannel;
  27. import org.mobicents.protocols.ss7.m3ua.impl.M3UAChannelImpl;
  28. import org.mobicents.protocols.ss7.m3ua.impl.M3UAServerChannelImpl;
  29. /**
  30. * Implements M3UA server channel over TCP/IP
  31. * @author kulikov
  32. */
  33. public class TcpServerChannel extends M3UAServerChannelImpl {
  34. private TcpProvider provider;
  35. /**
  36. * Creates new server channel.
  37. *
  38. * @param channel the undelying TCP server socket channel
  39. * @throws java.io.IOException
  40. */
  41. protected TcpServerChannel(TcpProvider provider, AbstractSelectableChannel channel) throws IOException {
  42. super(channel);
  43. this.provider = provider;
  44. }
  45. /**
  46. * Opens new M3UA channel.
  47. *
  48. * @return the new M3UA channel
  49. * @throws java.io.IOException
  50. */
  51. public static TcpServerChannel open(TcpProvider provider) throws IOException {
  52. return new TcpServerChannel(provider, ServerSocketChannel.open());
  53. }
  54. /**
  55. * (Non Java-doc.)
  56. *
  57. * @see org.mobicents.protocols.ss7.m3ua.M3UAServerChannel#accept()
  58. */
  59. public M3UAChannelImpl accept() throws IOException {
  60. return new TcpChannel(provider,((ServerSocketChannel)channel).accept());
  61. }
  62. /**
  63. * (Non Java-doc.)
  64. *
  65. * @see org.mobicents.protocols.ss7.m3ua.M3UAServerChannel#bind(java.net.SocketAddress)
  66. */
  67. public void bind(SocketAddress address) throws IOException {
  68. ((ServerSocketChannel)channel).socket().bind(address);
  69. }
  70. /**
  71. * (Non Java-doc.)
  72. *
  73. * @see org.mobicents.protocols.ss7.m3ua.M3UAServerChannel#close()
  74. */
  75. public void close() throws IOException {
  76. ((ServerSocketChannel)channel).close();
  77. ((ServerSocketChannel)channel).socket().close();
  78. }
  79. }