/server/framework/IO/BinarySocket.js

https://github.com/aptana/Jaxer · JavaScript · 183 lines · 58 code · 23 blank · 102 comment · 1 complexity · 17b33df1a0f1dc4b1bcf419f3aa8b64f MD5 · raw file

  1. /* ***** BEGIN LICENSE BLOCK *****
  2. * Version: GPL 3
  3. *
  4. * This program is Copyright (C) 2007-2008 Aptana, Inc. All Rights Reserved
  5. * This program is licensed under the GNU General Public license, version 3 (GPL).
  6. *
  7. * This program is distributed in the hope that it will be useful, but
  8. * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
  10. * NONINFRINGEMENT. Redistribution, except as permitted by the GPL,
  11. * is prohibited.
  12. *
  13. * You can redistribute and/or modify this program under the terms of the GPL,
  14. * as published by the Free Software Foundation. You should
  15. * have received a copy of the GNU General Public License, Version 3 along
  16. * with this program; if not, write to the Free Software Foundation, Inc., 51
  17. * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18. *
  19. * Aptana provides a special exception to allow redistribution of this file
  20. * with certain other code and certain additional terms
  21. * pursuant to Section 7 of the GPL. You may view the exception and these
  22. * terms on the web at http://www.aptana.com/legal/gpl/.
  23. *
  24. * You may view the GPL, and Aptana's exception and additional terms in the file
  25. * titled license-jaxer.html in the main distribution folder of this program.
  26. *
  27. * Any modifications to this file must keep this entire header intact.
  28. *
  29. * ***** END LICENSE BLOCK ***** */
  30. (function() {
  31. var log = Log.forModule("BinarySocket");
  32. /**
  33. * @classDescription {Jaxer.BinarySocket} Network socket utility object for simple
  34. * binary socket access.
  35. */
  36. /**
  37. * The constructor of a network socket object used for binary data operations
  38. *
  39. * @alias Jaxer.BinarySocket
  40. * @constructor
  41. * @return {Jaxer.BinarySocket}
  42. * Returns an instance of BinarySocket.
  43. */
  44. function BinarySocket()
  45. {
  46. this._transportService = Components.classes["@mozilla.org/network/socket-transport-service;1"].
  47. getService(Components.interfaces.nsISocketTransportService);
  48. }
  49. const BinaryInputStream = Components.Constructor("@mozilla.org/binaryinputstream;1", "nsIBinaryInputStream", "setInputStream");
  50. const BinaryOutputStream = Components.Constructor("@mozilla.org/binaryoutputstream;1", "nsIBinaryOutputStream", "setOutputStream");
  51. /**
  52. * Open the socket for communication
  53. *
  54. * @alias Jaxer.BinarySocket.prototype.open
  55. * @param {String} host
  56. * The host to connect to
  57. * @param {Number} port
  58. * The port on which to connect
  59. */
  60. BinarySocket.prototype.open = function open(host, port)
  61. {
  62. this._transport = this._transportService.createTransport(null,0,host,port,null);
  63. if (!this._transport) {
  64. throw ("Cannot connect to server '" + host + ":" + port);
  65. }
  66. this._transport.setTimeout(Components.interfaces.nsISocketTransport.TIMEOUT_READ_WRITE, 5);
  67. // Set up output stream
  68. this._ostream = this._transport.openOutputStream(Components.interfaces.nsITransport.OPEN_BLOCKING,0,0);
  69. this._bostream = new BinaryOutputStream(this._ostream);
  70. // Set up input stream
  71. this._istream = this._transport.openInputStream(Components.interfaces.nsITransport.OPEN_BLOCKING,0,0);
  72. this._bistream = new BinaryInputStream(this._istream);
  73. };
  74. /**
  75. * Close the socket
  76. *
  77. * @alias Jaxer.BinarySocket.prototype.close
  78. */
  79. BinarySocket.prototype.close = function close()
  80. {
  81. try {
  82. this._bostream.close();
  83. this._bistream.close();
  84. }
  85. catch(e) {
  86. // ignore this exception, we're just trying to close this socket down
  87. }
  88. this._transport.close(0);
  89. };
  90. /**
  91. * Write a binary (byte) data array of integers to the socket
  92. *
  93. * @alias Jaxer.BinarySocket.prototype.writeByteArray
  94. * @param {Array} data
  95. * The binary data array to write
  96. */
  97. BinarySocket.prototype.writeByteArray = function writeByteArray(data)
  98. {
  99. this._bostream.writeByteArray(data, data.length);
  100. };
  101. /**
  102. * Write a binary (byte) data string to the socket
  103. *
  104. * @alias Jaxer.BinarySocket.prototype.writeByteString
  105. * @param {Array} data
  106. * The binary data string to write
  107. */
  108. BinarySocket.prototype.writeByteString = function writeByteString(data)
  109. {
  110. this._bostream.writeBytes(data, data.length);
  111. };
  112. /**
  113. * Read binary data from the socket into an array of bytes (integers)
  114. *
  115. * @alias Jaxer.BinarySocket.prototype.readByteArray
  116. * @param {Number} count
  117. * How many bytes to read
  118. * @return {Array}
  119. * The bytes read in, as an array of integers
  120. */
  121. BinarySocket.prototype.readByteArray = function readByteArray(count)
  122. {
  123. return this._bistream.readByteArray(count);
  124. };
  125. /**
  126. * Read binary data from the socket into a string
  127. *
  128. * @alias Jaxer.BinarySocket.prototype.readByteString
  129. * @param {Number} count
  130. * How many bytes to read
  131. * @return {String}
  132. * The bytes read in, as a string
  133. */
  134. BinarySocket.prototype.readByteString = function readByteString(count)
  135. {
  136. return this._bistream.readBytes(count);
  137. };
  138. /**
  139. * How many bytes are currently available on the stream?
  140. *
  141. * @alias Jaxer.BinarySocket.prototype.available
  142. * @return {Number}
  143. * the number of bytes available
  144. */
  145. BinarySocket.prototype.available = function available()
  146. {
  147. return this._istream.available();
  148. };
  149. /**
  150. * Flush the socket's output stream
  151. *
  152. * @alias Jaxer.BinarySocket.prototype.flush
  153. */
  154. BinarySocket.prototype.flush = function flush()
  155. {
  156. this._bostream.flush();
  157. };
  158. frameworkGlobal.BinarySocket = Jaxer.BinarySocket = BinarySocket;
  159. Log.trace("*** BinarySocket.js loaded");
  160. })();