MockIOSession.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:4k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.tools;
  19. import java.net.SocketAddress;
  20. import net.sf.odinms.net.MaplePacket;
  21. import org.apache.mina.common.CloseFuture;
  22. import org.apache.mina.common.IoFilterChain;
  23. import org.apache.mina.common.IoHandler;
  24. import org.apache.mina.common.IoService;
  25. import org.apache.mina.common.IoServiceConfig;
  26. import org.apache.mina.common.IoSessionConfig;
  27. import org.apache.mina.common.TransportType;
  28. import org.apache.mina.common.WriteFuture;
  29. import org.apache.mina.common.IoFilter.WriteRequest;
  30. import org.apache.mina.common.support.BaseIoSession;
  31. /**
  32.  * Represents a mock version of an IOSession to use a MapleClient instance
  33.  * without an active connection (faekchar, etc).
  34.  * 
  35.  * Most methods return void, or when they return something, null. Therefore,
  36.  * this class is mostly undocumented, due to the fact that each and every
  37.  * function does squat.
  38.  * 
  39.  * @author Frz
  40.  * @since Revision 518
  41.  * @version 1.0
  42.  */
  43. public class MockIOSession extends BaseIoSession {
  44. /**
  45.  * Does nothing.
  46.  */
  47. @Override
  48. protected void updateTrafficMask() {
  49. }
  50. /**
  51.  * Does nothing.
  52.  */
  53. @Override
  54. public IoSessionConfig getConfig() {
  55. return null;
  56. }
  57. /**
  58.  * Does nothing.
  59.  */
  60. @Override
  61. public IoFilterChain getFilterChain() {
  62. return null;
  63. }
  64. /**
  65.  * Does nothing.
  66.  */
  67. @Override
  68. public IoHandler getHandler() {
  69. return null;
  70. }
  71. /**
  72.  * Does nothing.
  73.  */
  74. @Override
  75. public SocketAddress getLocalAddress() {
  76. return null;
  77. }
  78. /**
  79.  * Does nothing.
  80.  */
  81. @Override
  82. public SocketAddress getRemoteAddress() {
  83. return null;
  84. }
  85. /**
  86.  * Does nothing.
  87.  */
  88. @Override
  89. public IoService getService() {
  90. return null;
  91. }
  92. /**
  93.  * Does nothing.
  94.  */
  95. @Override
  96. public SocketAddress getServiceAddress() {
  97. return null;
  98. }
  99. /**
  100.  * Does nothing.
  101.  */
  102. @Override
  103. public IoServiceConfig getServiceConfig() {
  104. return null;
  105. }
  106. /**
  107.  * Does nothing.
  108.  */
  109. @Override
  110. public TransportType getTransportType() {
  111. return null;
  112. }
  113. /**
  114.  * Does nothing.
  115.  */
  116. @Override
  117. public CloseFuture close() {
  118. return null;
  119. }
  120. /**
  121.  * Does nothing.
  122.  */
  123. @Override
  124. protected void close0() {
  125. }
  126. /**
  127.  * Does nothing.
  128.  */
  129. @Override
  130. public WriteFuture write(Object message, SocketAddress remoteAddress) {
  131. return null;
  132. }
  133. /**
  134.  * "Fake writes" a packet to the client, only running the OnSend event of
  135.  * the packet.
  136.  */
  137. @Override
  138. public WriteFuture write(Object message) {
  139. if (message instanceof MaplePacket) {
  140. MaplePacket mp = (MaplePacket) message;
  141. if (mp.getOnSend() != null) {
  142. mp.getOnSend().run();
  143. }
  144. }
  145. return null;
  146. }
  147. /**
  148.  * Does nothing.
  149.  */
  150. @Override
  151. protected void write0(WriteRequest writeRequest) {
  152. }
  153. }