/pmog_chat@gamelayers.com/chrome/content/javascript/net.js

https://github.com/gamelayers/pmog-chat · JavaScript · 154 lines · 90 code · 26 blank · 38 comment · 2 complexity · d7ec744e445fd187f551f9ec9f0ada0e MD5 · raw file

  1. /**
  2. net.js
  3. net package
  4. */
  5. /**
  6. @author Shane Celis <shane@peekko.com>
  7. Licensed under the GNU Lesser General Public License
  8. */
  9. var net = {};
  10. /**
  11. Abstract base prototype for a socket. Really here just for documentation purposes.
  12. */
  13. net.Socket = Class.create();
  14. net.Socket.prototype = {
  15. initialize : function() {},
  16. /**
  17. Opens the socket.
  18. */
  19. open : function(sHost, iPort) {},
  20. /**
  21. Closes the socket.
  22. */
  23. close : function() {},
  24. //available : function() {},
  25. /**
  26. Reads from the socket (non-blocking).
  27. */
  28. read : function() /* throws ex */ {},
  29. /**
  30. Writes to the socket (non-blocking?).
  31. */
  32. write : function(s) /* throws ex */ {}
  33. };
  34. net.ActiveXSocket = Class.create();
  35. net.ActiveXSocket.prototype = Object.extend(new net.Socket(), {
  36. initialize : function() {
  37. this.rawsock = null;
  38. },
  39. open : function(sHost, iPort) {
  40. this.rawsock = new ActiveXObject("Catalyst.SocketCtrl.1");
  41. this.rawsock.AddressFamily = 2; // AF_INET
  42. this.rawsock.Protocol = 0; // IPPROTO_TCP
  43. this.rawsock.SocketType = 1; // STREAM
  44. this.rawsock.Binary = false; // Any reason to have this not on binary all the time?
  45. this.rawsock.Blocking = false;
  46. this.rawsock.BufferSize = 16384;
  47. this.rawsock.AutoResolve = false;
  48. this.rawsock.HostAddress = hostnameToIP(sHost);
  49. this.rawsock.HostName = sHost;
  50. this.rawsock.RemotePort = iPort;
  51. this.rawsock.Timeout = 500;
  52. this.rawsock.Action = 2; // SOCKET_CONNECT*/
  53. },
  54. close : function() {
  55. this.rawsock.Action = 7; // SOCKET_CLOSE
  56. //rawsock.close();
  57. },
  58. read : function() /* throws ex */ {
  59. this.rawsock.RecvLen = 16384;
  60. return this.rawsock.RecvData;
  61. },
  62. write : function(s) /* throws ex */ {
  63. try {
  64. block();
  65. this.rawsock.SendLen = s.length;
  66. this.rawsock.SendData = s;
  67. } finally {
  68. unblock();
  69. }
  70. },
  71. // Private functions.
  72. block : function() {
  73. this.rawsock.Blocking = true;
  74. },
  75. unblock : function() {
  76. this.rawsock.Blocking = false;
  77. }
  78. });
  79. // This is not done in the prototype lib style, but it seems to work.
  80. // Also, it seems to allow for the notion of private variables and functions
  81. // which is appealing.
  82. net.MozillaSocket /* extends Socket */ = function() {
  83. var outstream = null;
  84. var instream = null;
  85. var transport = null;
  86. this.open = function(sHost, iPort) {
  87. var transportService = Components.classes["@mozilla.org/network/socket-transport-service;1"]
  88. .getService(Components.interfaces.nsISocketTransportService);
  89. transport = transportService.createTransport(null, 0, sHost, iPort, null);
  90. //transport.setTimeout(Components.interfaces.nsISocketTransport.TIMEOUT_CONNECT, 60);
  91. // This timeout must be different than my conception of it. It seems to simply
  92. // break the connection at whatever time I give it, which is different than throwing
  93. // an error when I try to read or write something for a given time.
  94. /* transport.setTimeout(Components.interfaces.nsISocketTransport.TIMEOUT_READ_WRITE, 120);
  95. */ // Open an outputstream.
  96. outstream = transport.openOutputStream(0, 0, 0);
  97. // Open an inputstream.
  98. var stream = transport.openInputStream(0, 0, 0);
  99. instream = Components.classes["@mozilla.org/scriptableinputstream;1"]
  100. .createInstance(Components.interfaces.nsIScriptableInputStream);
  101. instream.init(stream);
  102. }
  103. this.isAlive = function() {
  104. return transport.isAlive();
  105. }
  106. this.close = function() {
  107. instream.close();
  108. outstream.close();
  109. }
  110. // Behaves like a private function this way.
  111. function available() {
  112. return instream.available();
  113. }
  114. this.read = function() /* throws ex */ {
  115. var bytes = available();
  116. if (bytes > 0) {
  117. var data = instream.read(bytes);
  118. return data;
  119. } else {
  120. throw "no data available";
  121. }
  122. }
  123. this.write = function(s) /* throws ex */ {
  124. outstream.write(s, s.length);
  125. }
  126. }
  127. net.MozillaSocket.prototype = new net.Socket;