/marauroa/src/marauroa/common/net/message/Message.java

http://wastelanders.googlecode.com/ · Java · 267 lines · 132 code · 28 blank · 107 comment · 7 complexity · 7743d1d553cea749929c476de74aa5fc MD5 · raw file

  1. /* $Id: Message.java,v 1.21 2010/07/24 18:50:25 nhnb Exp $ */
  2. /***************************************************************************
  3. * (C) Copyright 2003-2010 - Marauroa *
  4. ***************************************************************************
  5. ***************************************************************************
  6. * *
  7. * This program is free software; you can redistribute it and/or modify *
  8. * it under the terms of the GNU General Public License as published by *
  9. * the Free Software Foundation; either version 2 of the License, or *
  10. * (at your option) any later version. *
  11. * *
  12. ***************************************************************************/
  13. package marauroa.common.net.message;
  14. import marauroa.common.net.InputSerializer;
  15. import marauroa.common.net.NetConst;
  16. import marauroa.common.net.OutputSerializer;
  17. import marauroa.common.net.Serializable;
  18. import java.io.IOException;
  19. import java.net.InetAddress;
  20. import java.net.Socket;
  21. import java.nio.channels.SocketChannel;
  22. /**
  23. * Message is a class to represent all the kind of messages that are possible to
  24. * exist in marauroa.
  25. */
  26. public class Message implements Serializable {
  27. /**
  28. * Invalid client identificator constant
  29. */
  30. public final static int CLIENTID_INVALID = -1;
  31. /**
  32. * Type of message
  33. */
  34. public enum MessageType {
  35. C2S_ACTION,
  36. C2S_CHOOSECHARACTER,
  37. C2S_LOGIN_REQUESTKEY,
  38. C2S_LOGIN_SENDNONCENAMEANDPASSWORD,
  39. C2S_LOGIN_SENDPROMISE,
  40. C2S_LOGOUT,
  41. C2S_OUTOFSYNC,
  42. C2S_TRANSFER_ACK,
  43. C2S_KEEPALIVE,
  44. S2C_CHARACTERLIST,
  45. S2C_CHOOSECHARACTER_ACK,
  46. S2C_CHOOSECHARACTER_NACK,
  47. S2C_INVALIDMESSAGE,
  48. S2C_LOGIN_ACK,
  49. S2C_LOGIN_NACK,
  50. S2C_LOGIN_SENDKEY,
  51. S2C_LOGIN_SENDNONCE,
  52. S2C_LOGOUT_ACK,
  53. S2C_LOGOUT_NACK,
  54. S2C_PERCEPTION,
  55. S2C_SERVERINFO,
  56. S2C_TRANSFER,
  57. S2C_TRANSFER_REQ,
  58. C2S_CREATEACCOUNT,
  59. S2C_CREATEACCOUNT_ACK,
  60. S2C_CREATEACCOUNT_NACK,
  61. C2S_CREATECHARACTER,
  62. S2C_CREATECHARACTER_ACK,
  63. S2C_CREATECHARACTER_NACK,
  64. S2C_CONNECT_NACK,
  65. C2S_LOGIN_SENDNONCENAMEPASSWORDANDSEED,
  66. S2C_LOGIN_MESSAGE_NACK,
  67. P2S_CREATECHARACTER,
  68. P2S_CREATEACCOUNT
  69. }
  70. /**
  71. * Type of the message
  72. */
  73. protected MessageType type;
  74. /**
  75. * Clientid of the player that generated the message
  76. */
  77. protected int clientid;
  78. /**
  79. * Timestamp about when the message was created
  80. */
  81. protected int timestampMessage;
  82. /**
  83. * version of this message
  84. */
  85. protected int protocolVersion = NetConst.NETWORK_PROTOCOL_VERSION;
  86. /**
  87. * The socket channel that the message will use to be send or from where it
  88. * was received
  89. */
  90. protected SocketChannel channel;
  91. private InetAddress inetAddres;
  92. /**
  93. * Constructor with a TCP/IP source/destination of the message
  94. *
  95. * @param type the type of the message
  96. * @param channel The TCP/IP address associated to this message
  97. */
  98. protected Message(MessageType type, SocketChannel channel) {
  99. this.type = type;
  100. this.clientid = CLIENTID_INVALID;
  101. this.channel = channel;
  102. if (channel != null) {
  103. Socket socket = channel.socket();
  104. inetAddres = socket.getInetAddress();
  105. }
  106. timestampMessage = (int) (System.currentTimeMillis());
  107. }
  108. /**
  109. * Sets the TCP/IP source/destination of the message
  110. *
  111. * @param channel The TCP/IP socket associated to this message
  112. */
  113. public void setSocketChannel(SocketChannel channel) {
  114. this.channel = channel;
  115. if (channel != null) {
  116. Socket socket = channel.socket();
  117. inetAddres = socket.getInetAddress();
  118. } else {
  119. inetAddres = null;
  120. }
  121. }
  122. /**
  123. * Returns the TCP/IP socket associatted with this message
  124. *
  125. * @return the TCP/IP socket associatted with this message
  126. */
  127. public SocketChannel getSocketChannel() {
  128. return channel;
  129. }
  130. /**
  131. * Returns the address of the channel associated.
  132. *
  133. * @return the address of the channel associated.
  134. */
  135. public InetAddress getAddress() {
  136. return inetAddres;
  137. }
  138. /**
  139. * Returns the type of the message
  140. *
  141. * @return the type of the message
  142. */
  143. public MessageType getType() {
  144. return type;
  145. }
  146. /**
  147. * Set the clientID so that we can identify the client to which the message
  148. * is target, as only IP is easy to Fake
  149. *
  150. * @param clientid a int that reprents the client id.
  151. */
  152. public void setClientID(int clientid) {
  153. this.clientid = clientid;
  154. }
  155. /**
  156. * Returns the clientID of the Message.
  157. *
  158. * @return the ClientID
  159. */
  160. public int getClientID() {
  161. return clientid;
  162. }
  163. /**
  164. * Returns the timestamp of the message. Usually milliseconds
  165. *
  166. * @return the timestamp of the message. Usually milliseconds
  167. */
  168. public int getMessageTimestamp() {
  169. return timestampMessage;
  170. }
  171. /**
  172. * gets the protocol version
  173. *
  174. * @return protocol version
  175. */
  176. public int getProtocolVersion() {
  177. return protocolVersion;
  178. }
  179. /**
  180. * sets the protocol version, limited to the max supported version
  181. *
  182. * @param protocolVersion protocol versoin
  183. */
  184. public void setProtocolVersion(int protocolVersion) {
  185. this.protocolVersion = Math.min(NetConst.NETWORK_PROTOCOL_VERSION, protocolVersion);
  186. }
  187. /**
  188. * Serialize the object into an ObjectOutput
  189. *
  190. * @param out the output serializer.
  191. * @throws IOException if the serializations fails
  192. */
  193. public void writeObject(OutputSerializer out) throws IOException {
  194. out.write((byte) protocolVersion);
  195. out.write((byte) type.ordinal());
  196. out.write(clientid);
  197. out.write(timestampMessage);
  198. }
  199. /**
  200. * Serialize the object from an ObjectInput
  201. *
  202. * @param in the input serializer
  203. * @throws IOException if the serializations fails
  204. */
  205. public void readObject(InputSerializer in) throws IOException {
  206. int protocolVersion = in.readByte();
  207. if (protocolVersion < NetConst.NETWORK_PROTOCOL_VERSION_MIN
  208. || protocolVersion > NetConst.NETWORK_PROTOCOL_VERSION_MAX) {
  209. throw new IOException("Unsupported protocol version.");
  210. }
  211. type = MessageType.values()[in.readByte()];
  212. clientid = in.readInt();
  213. timestampMessage = in.readInt();
  214. }
  215. /**
  216. * generates a list of attributes suitable to be used in toString()
  217. *
  218. * @param sb StringBuilder to append the attribute string to
  219. */
  220. protected void internalToString(StringBuilder sb) {
  221. sb.append(", channel=");
  222. sb.append(channel);
  223. sb.append(", clientid=");
  224. sb.append(clientid);
  225. sb.append(", timestampMessage=");
  226. sb.append(timestampMessage);
  227. }
  228. @Override
  229. public String toString() {
  230. StringBuilder sb = new StringBuilder();
  231. sb.append(this.getClass().getName());
  232. sb.append("[");
  233. sb.append("type=");
  234. sb.append(type);
  235. internalToString(sb);
  236. sb.append("]");
  237. return sb.toString();
  238. }
  239. }