peer.js 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151
  1. /*! peerjs.js build:0.2.1, development. Copyright(c) 2013 Michelle Bu <michelle@michellebu.com> */
  2. (function(exports){
  3. var binaryFeatures = {};
  4. binaryFeatures.useBlobBuilder = (function(){
  5. try {
  6. new Blob([]);
  7. return false;
  8. } catch (e) {
  9. return true;
  10. }
  11. })();
  12. binaryFeatures.useArrayBufferView = !binaryFeatures.useBlobBuilder && (function(){
  13. try {
  14. return (new Blob([new Uint8Array([])])).size === 0;
  15. } catch (e) {
  16. return true;
  17. }
  18. })();
  19. exports.binaryFeatures = binaryFeatures;
  20. exports.BlobBuilder = window.WebKitBlobBuilder || window.MozBlobBuilder || window.MSBlobBuilder || window.BlobBuilder;
  21. function BufferBuilder(){
  22. this._pieces = [];
  23. this._parts = [];
  24. }
  25. BufferBuilder.prototype.append = function(data) {
  26. if(typeof data === 'number') {
  27. this._pieces.push(data);
  28. } else {
  29. this._flush();
  30. this._parts.push(data);
  31. }
  32. };
  33. BufferBuilder.prototype._flush = function() {
  34. if (this._pieces.length > 0) {
  35. var buf = new Uint8Array(this._pieces);
  36. if(!binaryFeatures.useArrayBufferView) {
  37. buf = buf.buffer;
  38. }
  39. this._parts.push(buf);
  40. this._pieces = [];
  41. }
  42. };
  43. BufferBuilder.prototype.getBuffer = function() {
  44. this._flush();
  45. if(binaryFeatures.useBlobBuilder) {
  46. var builder = new BlobBuilder();
  47. for(var i = 0, ii = this._parts.length; i < ii; i++) {
  48. builder.append(this._parts[i]);
  49. }
  50. return builder.getBlob();
  51. } else {
  52. return new Blob(this._parts);
  53. }
  54. };
  55. exports.BinaryPack = {
  56. unpack: function(data){
  57. var unpacker = new Unpacker(data);
  58. return unpacker.unpack();
  59. },
  60. pack: function(data, utf8){
  61. var packer = new Packer(utf8);
  62. var buffer = packer.pack(data);
  63. return buffer;
  64. }
  65. };
  66. function Unpacker (data){
  67. // Data is ArrayBuffer
  68. this.index = 0;
  69. this.dataBuffer = data;
  70. this.dataView = new Uint8Array(this.dataBuffer);
  71. this.length = this.dataBuffer.byteLength;
  72. }
  73. Unpacker.prototype.unpack = function(){
  74. var type = this.unpack_uint8();
  75. if (type < 0x80){
  76. var positive_fixnum = type;
  77. return positive_fixnum;
  78. } else if ((type ^ 0xe0) < 0x20){
  79. var negative_fixnum = (type ^ 0xe0) - 0x20;
  80. return negative_fixnum;
  81. }
  82. var size;
  83. if ((size = type ^ 0xa0) <= 0x0f){
  84. return this.unpack_raw(size);
  85. } else if ((size = type ^ 0xb0) <= 0x0f){
  86. return this.unpack_string(size);
  87. } else if ((size = type ^ 0x90) <= 0x0f){
  88. return this.unpack_array(size);
  89. } else if ((size = type ^ 0x80) <= 0x0f){
  90. return this.unpack_map(size);
  91. }
  92. switch(type){
  93. case 0xc0:
  94. return null;
  95. case 0xc1:
  96. return undefined;
  97. case 0xc2:
  98. return false;
  99. case 0xc3:
  100. return true;
  101. case 0xca:
  102. return this.unpack_float();
  103. case 0xcb:
  104. return this.unpack_double();
  105. case 0xcc:
  106. return this.unpack_uint8();
  107. case 0xcd:
  108. return this.unpack_uint16();
  109. case 0xce:
  110. return this.unpack_uint32();
  111. case 0xcf:
  112. return this.unpack_uint64();
  113. case 0xd0:
  114. return this.unpack_int8();
  115. case 0xd1:
  116. return this.unpack_int16();
  117. case 0xd2:
  118. return this.unpack_int32();
  119. case 0xd3:
  120. return this.unpack_int64();
  121. case 0xd4:
  122. return undefined;
  123. case 0xd5:
  124. return undefined;
  125. case 0xd6:
  126. return undefined;
  127. case 0xd7:
  128. return undefined;
  129. case 0xd8:
  130. size = this.unpack_uint16();
  131. return this.unpack_string(size);
  132. case 0xd9:
  133. size = this.unpack_uint32();
  134. return this.unpack_string(size);
  135. case 0xda:
  136. size = this.unpack_uint16();
  137. return this.unpack_raw(size);
  138. case 0xdb:
  139. size = this.unpack_uint32();
  140. return this.unpack_raw(size);
  141. case 0xdc:
  142. size = this.unpack_uint16();
  143. return this.unpack_array(size);
  144. case 0xdd:
  145. size = this.unpack_uint32();
  146. return this.unpack_array(size);
  147. case 0xde:
  148. size = this.unpack_uint16();
  149. return this.unpack_map(size);
  150. case 0xdf:
  151. size = this.unpack_uint32();
  152. return this.unpack_map(size);
  153. }
  154. }
  155. Unpacker.prototype.unpack_uint8 = function(){
  156. var byte = this.dataView[this.index] & 0xff;
  157. this.index++;
  158. return byte;
  159. };
  160. Unpacker.prototype.unpack_uint16 = function(){
  161. var bytes = this.read(2);
  162. var uint16 =
  163. ((bytes[0] & 0xff) * 256) + (bytes[1] & 0xff);
  164. this.index += 2;
  165. return uint16;
  166. }
  167. Unpacker.prototype.unpack_uint32 = function(){
  168. var bytes = this.read(4);
  169. var uint32 =
  170. ((bytes[0] * 256 +
  171. bytes[1]) * 256 +
  172. bytes[2]) * 256 +
  173. bytes[3];
  174. this.index += 4;
  175. return uint32;
  176. }
  177. Unpacker.prototype.unpack_uint64 = function(){
  178. var bytes = this.read(8);
  179. var uint64 =
  180. ((((((bytes[0] * 256 +
  181. bytes[1]) * 256 +
  182. bytes[2]) * 256 +
  183. bytes[3]) * 256 +
  184. bytes[4]) * 256 +
  185. bytes[5]) * 256 +
  186. bytes[6]) * 256 +
  187. bytes[7];
  188. this.index += 8;
  189. return uint64;
  190. }
  191. Unpacker.prototype.unpack_int8 = function(){
  192. var uint8 = this.unpack_uint8();
  193. return (uint8 < 0x80 ) ? uint8 : uint8 - (1 << 8);
  194. };
  195. Unpacker.prototype.unpack_int16 = function(){
  196. var uint16 = this.unpack_uint16();
  197. return (uint16 < 0x8000 ) ? uint16 : uint16 - (1 << 16);
  198. }
  199. Unpacker.prototype.unpack_int32 = function(){
  200. var uint32 = this.unpack_uint32();
  201. return (uint32 < Math.pow(2, 31) ) ? uint32 :
  202. uint32 - Math.pow(2, 32);
  203. }
  204. Unpacker.prototype.unpack_int64 = function(){
  205. var uint64 = this.unpack_uint64();
  206. return (uint64 < Math.pow(2, 63) ) ? uint64 :
  207. uint64 - Math.pow(2, 64);
  208. }
  209. Unpacker.prototype.unpack_raw = function(size){
  210. if ( this.length < this.index + size){
  211. throw new Error('BinaryPackFailure: index is out of range'
  212. + ' ' + this.index + ' ' + size + ' ' + this.length);
  213. }
  214. var buf = this.dataBuffer.slice(this.index, this.index + size);
  215. this.index += size;
  216. //buf = util.bufferToString(buf);
  217. return buf;
  218. }
  219. Unpacker.prototype.unpack_string = function(size){
  220. var bytes = this.read(size);
  221. var i = 0, str = '', c, code;
  222. while(i < size){
  223. c = bytes[i];
  224. if ( c < 128){
  225. str += String.fromCharCode(c);
  226. i++;
  227. } else if ((c ^ 0xc0) < 32){
  228. code = ((c ^ 0xc0) << 6) | (bytes[i+1] & 63);
  229. str += String.fromCharCode(code);
  230. i += 2;
  231. } else {
  232. code = ((c & 15) << 12) | ((bytes[i+1] & 63) << 6) |
  233. (bytes[i+2] & 63);
  234. str += String.fromCharCode(code);
  235. i += 3;
  236. }
  237. }
  238. this.index += size;
  239. return str;
  240. }
  241. Unpacker.prototype.unpack_array = function(size){
  242. var objects = new Array(size);
  243. for(var i = 0; i < size ; i++){
  244. objects[i] = this.unpack();
  245. }
  246. return objects;
  247. }
  248. Unpacker.prototype.unpack_map = function(size){
  249. var map = {};
  250. for(var i = 0; i < size ; i++){
  251. var key = this.unpack();
  252. var value = this.unpack();
  253. map[key] = value;
  254. }
  255. return map;
  256. }
  257. Unpacker.prototype.unpack_float = function(){
  258. var uint32 = this.unpack_uint32();
  259. var sign = uint32 >> 31;
  260. var exp = ((uint32 >> 23) & 0xff) - 127;
  261. var fraction = ( uint32 & 0x7fffff ) | 0x800000;
  262. return (sign == 0 ? 1 : -1) *
  263. fraction * Math.pow(2, exp - 23);
  264. }
  265. Unpacker.prototype.unpack_double = function(){
  266. var h32 = this.unpack_uint32();
  267. var l32 = this.unpack_uint32();
  268. var sign = h32 >> 31;
  269. var exp = ((h32 >> 20) & 0x7ff) - 1023;
  270. var hfrac = ( h32 & 0xfffff ) | 0x100000;
  271. var frac = hfrac * Math.pow(2, exp - 20) +
  272. l32 * Math.pow(2, exp - 52);
  273. return (sign == 0 ? 1 : -1) * frac;
  274. }
  275. Unpacker.prototype.read = function(length){
  276. var j = this.index;
  277. if (j + length <= this.length) {
  278. return this.dataView.subarray(j, j + length);
  279. } else {
  280. throw new Error('BinaryPackFailure: read index out of range');
  281. }
  282. }
  283. function Packer(utf8){
  284. this.utf8 = utf8;
  285. this.bufferBuilder = new BufferBuilder();
  286. }
  287. Packer.prototype.pack = function(value){
  288. var type = typeof(value);
  289. if (type == 'string'){
  290. this.pack_string(value);
  291. } else if (type == 'number'){
  292. if (Math.floor(value) === value){
  293. this.pack_integer(value);
  294. } else{
  295. this.pack_double(value);
  296. }
  297. } else if (type == 'boolean'){
  298. if (value === true){
  299. this.bufferBuilder.append(0xc3);
  300. } else if (value === false){
  301. this.bufferBuilder.append(0xc2);
  302. }
  303. } else if (type == 'undefined'){
  304. this.bufferBuilder.append(0xc0);
  305. } else if (type == 'object'){
  306. if (value === null){
  307. this.bufferBuilder.append(0xc0);
  308. } else {
  309. var constructor = value.constructor;
  310. if (constructor == Array){
  311. this.pack_array(value);
  312. } else if (constructor == Blob || constructor == File) {
  313. this.pack_bin(value);
  314. } else if (constructor == ArrayBuffer) {
  315. if(binaryFeatures.useArrayBufferView) {
  316. this.pack_bin(new Uint8Array(value));
  317. } else {
  318. this.pack_bin(value);
  319. }
  320. } else if ('BYTES_PER_ELEMENT' in value){
  321. if(binaryFeatures.useArrayBufferView) {
  322. this.pack_bin(value);
  323. } else {
  324. this.pack_bin(value.buffer);
  325. }
  326. } else if (constructor == Object){
  327. this.pack_object(value);
  328. } else if (constructor == Date){
  329. this.pack_string(value.toString());
  330. } else if (typeof value.toBinaryPack == 'function'){
  331. this.bufferBuilder.append(value.toBinaryPack());
  332. } else {
  333. throw new Error('Type "' + constructor.toString() + '" not yet supported');
  334. }
  335. }
  336. } else {
  337. throw new Error('Type "' + type + '" not yet supported');
  338. }
  339. return this.bufferBuilder.getBuffer();
  340. }
  341. Packer.prototype.pack_bin = function(blob){
  342. var length = blob.length || blob.byteLength || blob.size;
  343. if (length <= 0x0f){
  344. this.pack_uint8(0xa0 + length);
  345. } else if (length <= 0xffff){
  346. this.bufferBuilder.append(0xda) ;
  347. this.pack_uint16(length);
  348. } else if (length <= 0xffffffff){
  349. this.bufferBuilder.append(0xdb);
  350. this.pack_uint32(length);
  351. } else{
  352. throw new Error('Invalid length');
  353. return;
  354. }
  355. this.bufferBuilder.append(blob);
  356. }
  357. Packer.prototype.pack_string = function(str){
  358. var length;
  359. if (this.utf8) {
  360. var blob = new Blob([str]);
  361. length = blob.size;
  362. } else {
  363. length = str.length;
  364. }
  365. if (length <= 0x0f){
  366. this.pack_uint8(0xb0 + length);
  367. } else if (length <= 0xffff){
  368. this.bufferBuilder.append(0xd8) ;
  369. this.pack_uint16(length);
  370. } else if (length <= 0xffffffff){
  371. this.bufferBuilder.append(0xd9);
  372. this.pack_uint32(length);
  373. } else{
  374. throw new Error('Invalid length');
  375. return;
  376. }
  377. this.bufferBuilder.append(str);
  378. }
  379. Packer.prototype.pack_array = function(ary){
  380. var length = ary.length;
  381. if (length <= 0x0f){
  382. this.pack_uint8(0x90 + length);
  383. } else if (length <= 0xffff){
  384. this.bufferBuilder.append(0xdc)
  385. this.pack_uint16(length);
  386. } else if (length <= 0xffffffff){
  387. this.bufferBuilder.append(0xdd);
  388. this.pack_uint32(length);
  389. } else{
  390. throw new Error('Invalid length');
  391. }
  392. for(var i = 0; i < length ; i++){
  393. this.pack(ary[i]);
  394. }
  395. }
  396. Packer.prototype.pack_integer = function(num){
  397. if ( -0x20 <= num && num <= 0x7f){
  398. this.bufferBuilder.append(num & 0xff);
  399. } else if (0x00 <= num && num <= 0xff){
  400. this.bufferBuilder.append(0xcc);
  401. this.pack_uint8(num);
  402. } else if (-0x80 <= num && num <= 0x7f){
  403. this.bufferBuilder.append(0xd0);
  404. this.pack_int8(num);
  405. } else if ( 0x0000 <= num && num <= 0xffff){
  406. this.bufferBuilder.append(0xcd);
  407. this.pack_uint16(num);
  408. } else if (-0x8000 <= num && num <= 0x7fff){
  409. this.bufferBuilder.append(0xd1);
  410. this.pack_int16(num);
  411. } else if ( 0x00000000 <= num && num <= 0xffffffff){
  412. this.bufferBuilder.append(0xce);
  413. this.pack_uint32(num);
  414. } else if (-0x80000000 <= num && num <= 0x7fffffff){
  415. this.bufferBuilder.append(0xd2);
  416. this.pack_int32(num);
  417. } else if (-0x8000000000000000 <= num && num <= 0x7FFFFFFFFFFFFFFF){
  418. this.bufferBuilder.append(0xd3);
  419. this.pack_int64(num);
  420. } else if (0x0000000000000000 <= num && num <= 0xFFFFFFFFFFFFFFFF){
  421. this.bufferBuilder.append(0xcf);
  422. this.pack_uint64(num);
  423. } else{
  424. throw new Error('Invalid integer');
  425. }
  426. }
  427. Packer.prototype.pack_double = function(num){
  428. var sign = 0;
  429. if (num < 0){
  430. sign = 1;
  431. num = -num;
  432. }
  433. var exp = Math.floor(Math.log(num) / Math.LN2);
  434. var frac0 = num / Math.pow(2, exp) - 1;
  435. var frac1 = Math.floor(frac0 * Math.pow(2, 52));
  436. var b32 = Math.pow(2, 32);
  437. var h32 = (sign << 31) | ((exp+1023) << 20) |
  438. (frac1 / b32) & 0x0fffff;
  439. var l32 = frac1 % b32;
  440. this.bufferBuilder.append(0xcb);
  441. this.pack_int32(h32);
  442. this.pack_int32(l32);
  443. }
  444. Packer.prototype.pack_object = function(obj){
  445. var keys = Object.keys(obj);
  446. var length = keys.length;
  447. if (length <= 0x0f){
  448. this.pack_uint8(0x80 + length);
  449. } else if (length <= 0xffff){
  450. this.bufferBuilder.append(0xde);
  451. this.pack_uint16(length);
  452. } else if (length <= 0xffffffff){
  453. this.bufferBuilder.append(0xdf);
  454. this.pack_uint32(length);
  455. } else{
  456. throw new Error('Invalid length');
  457. }
  458. for(var prop in obj){
  459. if (obj.hasOwnProperty(prop)){
  460. this.pack(prop);
  461. this.pack(obj[prop]);
  462. }
  463. }
  464. }
  465. Packer.prototype.pack_uint8 = function(num){
  466. this.bufferBuilder.append(num);
  467. }
  468. Packer.prototype.pack_uint16 = function(num){
  469. this.bufferBuilder.append(num >> 8);
  470. this.bufferBuilder.append(num & 0xff);
  471. }
  472. Packer.prototype.pack_uint32 = function(num){
  473. var n = num & 0xffffffff;
  474. this.bufferBuilder.append((n & 0xff000000) >>> 24);
  475. this.bufferBuilder.append((n & 0x00ff0000) >>> 16);
  476. this.bufferBuilder.append((n & 0x0000ff00) >>> 8);
  477. this.bufferBuilder.append((n & 0x000000ff));
  478. }
  479. Packer.prototype.pack_uint64 = function(num){
  480. var high = num / Math.pow(2, 32);
  481. var low = num % Math.pow(2, 32);
  482. this.bufferBuilder.append((high & 0xff000000) >>> 24);
  483. this.bufferBuilder.append((high & 0x00ff0000) >>> 16);
  484. this.bufferBuilder.append((high & 0x0000ff00) >>> 8);
  485. this.bufferBuilder.append((high & 0x000000ff));
  486. this.bufferBuilder.append((low & 0xff000000) >>> 24);
  487. this.bufferBuilder.append((low & 0x00ff0000) >>> 16);
  488. this.bufferBuilder.append((low & 0x0000ff00) >>> 8);
  489. this.bufferBuilder.append((low & 0x000000ff));
  490. }
  491. Packer.prototype.pack_int8 = function(num){
  492. this.bufferBuilder.append(num & 0xff);
  493. }
  494. Packer.prototype.pack_int16 = function(num){
  495. this.bufferBuilder.append((num & 0xff00) >> 8);
  496. this.bufferBuilder.append(num & 0xff);
  497. }
  498. Packer.prototype.pack_int32 = function(num){
  499. this.bufferBuilder.append((num >>> 24) & 0xff);
  500. this.bufferBuilder.append((num & 0x00ff0000) >>> 16);
  501. this.bufferBuilder.append((num & 0x0000ff00) >>> 8);
  502. this.bufferBuilder.append((num & 0x000000ff));
  503. }
  504. Packer.prototype.pack_int64 = function(num){
  505. var high = Math.floor(num / Math.pow(2, 32));
  506. var low = num % Math.pow(2, 32);
  507. this.bufferBuilder.append((high & 0xff000000) >>> 24);
  508. this.bufferBuilder.append((high & 0x00ff0000) >>> 16);
  509. this.bufferBuilder.append((high & 0x0000ff00) >>> 8);
  510. this.bufferBuilder.append((high & 0x000000ff));
  511. this.bufferBuilder.append((low & 0xff000000) >>> 24);
  512. this.bufferBuilder.append((low & 0x00ff0000) >>> 16);
  513. this.bufferBuilder.append((low & 0x0000ff00) >>> 8);
  514. this.bufferBuilder.append((low & 0x000000ff));
  515. }
  516. /**
  517. * Light EventEmitter. Ported from Node.js/events.js
  518. * Eric Zhang
  519. */
  520. /**
  521. * EventEmitter class
  522. * Creates an object with event registering and firing methods
  523. */
  524. function EventEmitter() {
  525. // Initialise required storage variables
  526. this._events = {};
  527. }
  528. var isArray = Array.isArray;
  529. EventEmitter.prototype.addListener = function(type, listener, scope, once) {
  530. if ('function' !== typeof listener) {
  531. throw new Error('addListener only takes instances of Function');
  532. }
  533. // To avoid recursion in the case that type == "newListeners"! Before
  534. // adding it to the listeners, first emit "newListeners".
  535. this.emit('newListener', type, typeof listener.listener === 'function' ?
  536. listener.listener : listener);
  537. if (!this._events[type]) {
  538. // Optimize the case of one listener. Don't need the extra array object.
  539. this._events[type] = listener;
  540. } else if (isArray(this._events[type])) {
  541. // If we've already got an array, just append.
  542. this._events[type].push(listener);
  543. } else {
  544. // Adding the second element, need to change to array.
  545. this._events[type] = [this._events[type], listener];
  546. }
  547. return this;
  548. };
  549. EventEmitter.prototype.on = EventEmitter.prototype.addListener;
  550. EventEmitter.prototype.once = function(type, listener, scope) {
  551. if ('function' !== typeof listener) {
  552. throw new Error('.once only takes instances of Function');
  553. }
  554. var self = this;
  555. function g() {
  556. self.removeListener(type, g);
  557. listener.apply(this, arguments);
  558. };
  559. g.listener = listener;
  560. self.on(type, g);
  561. return this;
  562. };
  563. EventEmitter.prototype.removeListener = function(type, listener, scope) {
  564. if ('function' !== typeof listener) {
  565. throw new Error('removeListener only takes instances of Function');
  566. }
  567. // does not use listeners(), so no side effect of creating _events[type]
  568. if (!this._events[type]) return this;
  569. var list = this._events[type];
  570. if (isArray(list)) {
  571. var position = -1;
  572. for (var i = 0, length = list.length; i < length; i++) {
  573. if (list[i] === listener ||
  574. (list[i].listener && list[i].listener === listener))
  575. {
  576. position = i;
  577. break;
  578. }
  579. }
  580. if (position < 0) return this;
  581. list.splice(position, 1);
  582. if (list.length == 0)
  583. delete this._events[type];
  584. } else if (list === listener ||
  585. (list.listener && list.listener === listener))
  586. {
  587. delete this._events[type];
  588. }
  589. return this;
  590. };
  591. EventEmitter.prototype.off = EventEmitter.prototype.removeListener;
  592. EventEmitter.prototype.removeAllListeners = function(type) {
  593. if (arguments.length === 0) {
  594. this._events = {};
  595. return this;
  596. }
  597. // does not use listeners(), so no side effect of creating _events[type]
  598. if (type && this._events && this._events[type]) this._events[type] = null;
  599. return this;
  600. };
  601. EventEmitter.prototype.listeners = function(type) {
  602. if (!this._events[type]) this._events[type] = [];
  603. if (!isArray(this._events[type])) {
  604. this._events[type] = [this._events[type]];
  605. }
  606. return this._events[type];
  607. };
  608. EventEmitter.prototype.emit = function(type) {
  609. var type = arguments[0];
  610. var handler = this._events[type];
  611. if (!handler) return false;
  612. if (typeof handler == 'function') {
  613. switch (arguments.length) {
  614. // fast cases
  615. case 1:
  616. handler.call(this);
  617. break;
  618. case 2:
  619. handler.call(this, arguments[1]);
  620. break;
  621. case 3:
  622. handler.call(this, arguments[1], arguments[2]);
  623. break;
  624. // slower
  625. default:
  626. var l = arguments.length;
  627. var args = new Array(l - 1);
  628. for (var i = 1; i < l; i++) args[i - 1] = arguments[i];
  629. handler.apply(this, args);
  630. }
  631. return true;
  632. } else if (isArray(handler)) {
  633. var l = arguments.length;
  634. var args = new Array(l - 1);
  635. for (var i = 1; i < l; i++) args[i - 1] = arguments[i];
  636. var listeners = handler.slice();
  637. for (var i = 0, l = listeners.length; i < l; i++) {
  638. listeners[i].apply(this, args);
  639. }
  640. return true;
  641. } else {
  642. return false;
  643. }
  644. };
  645. var util = {
  646. chromeCompatible: true,
  647. firefoxCompatible: false,
  648. chromeVersion: 26,
  649. firefoxVersion: 22,
  650. debug: false,
  651. browserisms: '',
  652. inherits: function(ctor, superCtor) {
  653. ctor.super_ = superCtor;
  654. ctor.prototype = Object.create(superCtor.prototype, {
  655. constructor: {
  656. value: ctor,
  657. enumerable: false,
  658. writable: true,
  659. configurable: true
  660. }
  661. });
  662. },
  663. extend: function(dest, source) {
  664. for(var key in source) {
  665. if(source.hasOwnProperty(key)) {
  666. dest[key] = source[key];
  667. }
  668. }
  669. return dest;
  670. },
  671. pack: BinaryPack.pack,
  672. unpack: BinaryPack.unpack,
  673. randomPort: function() {
  674. return Math.round(Math.random() * 60535) + 5000;
  675. },
  676. log: function () {
  677. if (util.debug) {
  678. var err = false;
  679. var copy = Array.prototype.slice.call(arguments);
  680. copy.unshift('PeerJS: ');
  681. for (var i = 0, l = copy.length; i < l; i++){
  682. if (copy[i] instanceof Error) {
  683. copy[i] = '(' + copy[i].name + ') ' + copy[i].message;
  684. err = true;
  685. }
  686. }
  687. err ? console.error.apply(console, copy) : console.log.apply(console, copy);
  688. }
  689. },
  690. setZeroTimeout: (function(global) {
  691. var timeouts = [];
  692. var messageName = 'zero-timeout-message';
  693. // Like setTimeout, but only takes a function argument. There's
  694. // no time argument (always zero) and no arguments (you have to
  695. // use a closure).
  696. function setZeroTimeoutPostMessage(fn) {
  697. timeouts.push(fn);
  698. global.postMessage(messageName, '*');
  699. }
  700. function handleMessage(event) {
  701. if (event.source == global && event.data == messageName) {
  702. if (event.stopPropagation) {
  703. event.stopPropagation();
  704. }
  705. if (timeouts.length) {
  706. timeouts.shift()();
  707. }
  708. }
  709. }
  710. if (global.addEventListener) {
  711. global.addEventListener('message', handleMessage, true);
  712. } else if (global.attachEvent) {
  713. global.attachEvent('onmessage', handleMessage);
  714. }
  715. return setZeroTimeoutPostMessage;
  716. }(this)),
  717. blobToArrayBuffer: function(blob, cb){
  718. var fr = new FileReader();
  719. fr.onload = function(evt) {
  720. cb(evt.target.result);
  721. };
  722. fr.readAsArrayBuffer(blob);
  723. },
  724. blobToBinaryString: function(blob, cb){
  725. var fr = new FileReader();
  726. fr.onload = function(evt) {
  727. cb(evt.target.result);
  728. };
  729. fr.readAsBinaryString(blob);
  730. },
  731. binaryStringToArrayBuffer: function(binary) {
  732. var byteArray = new Uint8Array(binary.length);
  733. for (var i = 0; i < binary.length; i++) {
  734. byteArray[i] = binary.charCodeAt(i) & 0xff;
  735. }
  736. return byteArray.buffer;
  737. },
  738. randomToken: function () {
  739. return Math.random().toString(36).substr(2);
  740. },
  741. isBrowserCompatible: function() {
  742. var c, f;
  743. if (this.chromeCompatible) {
  744. if ((c = navigator.userAgent.split('Chrome/')) && c.length > 1) {
  745. // Get version #.
  746. var v = c[1].split('.')[0];
  747. return parseInt(v) >= this.chromeVersion;
  748. }
  749. }
  750. if (this.firefoxCompatible) {
  751. if ((f = navigator.userAgent.split('Firefox/')) && f.length > 1) {
  752. // Get version #.
  753. var v = f[1].split('.')[0];
  754. return parseInt(v) >= this.firefoxVersion;
  755. }
  756. }
  757. return false;
  758. }
  759. };
  760. /**
  761. * Reliable transfer for Chrome Canary DataChannel impl.
  762. * Author: @michellebu
  763. */
  764. function Reliable(dc, debug) {
  765. if (!(this instanceof Reliable)) return new Reliable(dc);
  766. this._dc = dc;
  767. util.debug = debug;
  768. // Messages sent/received so far.
  769. // id: { ack: n, chunks: [...] }
  770. this._outgoing = {};
  771. // id: { ack: ['ack', id, n], chunks: [...] }
  772. this._incoming = {};
  773. this._received = {};
  774. // Window size.
  775. this._window = 1000;
  776. // MTU.
  777. this._mtu = 500;
  778. // Interval for setInterval. In ms.
  779. this._interval = 10;
  780. // Messages sent.
  781. this._count = 0;
  782. // Outgoing message queue.
  783. this._queue = [];
  784. this._setupDC();
  785. };
  786. // Send a message reliably.
  787. Reliable.prototype.send = function(msg) {
  788. // Determine if chunking is necessary.
  789. var bl = util.pack(msg);
  790. if (bl.size < this._mtu) {
  791. this._handleSend(['no', bl]);
  792. return;
  793. }
  794. this._outgoing[this._count] = {
  795. ack: 0,
  796. chunks: this._chunk(bl)
  797. };
  798. if (util.debug) {
  799. this._outgoing[this._count].timer = new Date();
  800. }
  801. // Send prelim window.
  802. this._sendWindowedChunks(this._count);
  803. this._count += 1;
  804. };
  805. // Overwritten, typically.
  806. Reliable.prototype.onmessage = function(msg) {};
  807. // Set up interval for processing queue.
  808. Reliable.prototype._setupInterval = function() {
  809. var self = this;
  810. this._timeout = setInterval(function() {
  811. // FIXME: String stuff makes things terribly async.
  812. var msg = self._queue.shift();
  813. if (msg._multiple) {
  814. for (var i = 0, ii = msg.length; i < ii; i += 1) {
  815. self._intervalSend(msg[i]);
  816. }
  817. } else {
  818. self._intervalSend(msg);
  819. }
  820. }, this._interval);
  821. };
  822. Reliable.prototype._intervalSend = function(msg) {
  823. var self = this;
  824. util.log('Sending...', msg);
  825. msg = util.pack(msg);
  826. util.blobToBinaryString(msg, function(str) {
  827. self._dc.send(str);
  828. });
  829. if (self._queue.length === 0) {
  830. clearTimeout(self._timeout);
  831. self._timeout = null;
  832. self._processAcks();
  833. }
  834. };
  835. // Go through ACKs to send missing pieces.
  836. Reliable.prototype._processAcks = function() {
  837. // processAcks
  838. for (var id in this._outgoing) {
  839. if (this._outgoing.hasOwnProperty(id)) {
  840. this._sendWindowedChunks(id);
  841. }
  842. }
  843. };
  844. // Handle sending a message.
  845. // FIXME: Don't wait for interval time for all messages...
  846. Reliable.prototype._handleSend = function(msg) {
  847. var push = true;
  848. for (var i = 0, ii = this._queue.length; i < ii; i += 1) {
  849. var item = this._queue[i];
  850. if (item === msg) {
  851. push = false;
  852. } else if (item._multiple && item.indexOf(msg) !== -1) {
  853. push = false;
  854. }
  855. }
  856. if (push) {
  857. this._queue.push(msg);
  858. if (!this._timeout) {
  859. this._setupInterval();
  860. }
  861. }
  862. };
  863. // Set up DataChannel handlers.
  864. Reliable.prototype._setupDC = function() {
  865. // Handle various message types.
  866. var self = this;
  867. this._dc.onmessage = function(e) {
  868. var msg = e.data;
  869. var datatype = msg.constructor;
  870. // FIXME: msg is String until binary is supported.
  871. // Once that happens, this will have to be smarter.
  872. if (datatype === String) {
  873. var ab = util.binaryStringToArrayBuffer(msg);
  874. msg = util.unpack(ab);
  875. self._handleMessage(msg);
  876. }
  877. };
  878. };
  879. // Handles an incoming message.
  880. Reliable.prototype._handleMessage = function(msg) {
  881. util.log('handleMessage: ', msg);
  882. var id = msg[1];
  883. var idata = this._incoming[id];
  884. var odata = this._outgoing[id];
  885. var data;
  886. switch (msg[0]) {
  887. // No chunking was done.
  888. case 'no':
  889. var message = id;
  890. if (!!message) {
  891. // TODO: What fancy timeout stuff to do with ACK?
  892. this.onmessage(util.unpack(message));
  893. }
  894. break;
  895. // Reached the end of the message.
  896. case 'end':
  897. // What if 'end' is sent out of order? Eventually we will ACK for
  898. // and receive it, so shouldn't be a problem.
  899. data = idata;
  900. if (!!data && data.ack[2] === msg[2]) {
  901. this._complete(id);
  902. this._received[id] = true;
  903. } else if (!!data) {
  904. this._ack(id, data.ack);
  905. }
  906. break;
  907. case 'ack':
  908. data = odata;
  909. if (!!data) {
  910. // TODO: more optimization for window size & data sent.
  911. // TODO: possibly process ACKs only after queue cleared to avoid dups?
  912. var ack = msg[2];
  913. // Take the larger ACK, for out of order messages.
  914. data.ack = Math.max(ack, data.ack);
  915. // Clean up when all chunks are ACKed.
  916. if (data.ack >= data.chunks.length) {
  917. util.log('Time: ', new Date() - data.timer);
  918. delete this._outgoing[id];
  919. } else {
  920. this._processAcks();
  921. }
  922. }
  923. // If !data, just ignore.
  924. break;
  925. // Received a chunk of data.
  926. case 'chunk':
  927. // Create a new entry if none exists.
  928. data = idata;
  929. if (!data) {
  930. if (this._received[id] !== undefined) {
  931. break;
  932. }
  933. data = {
  934. ack: ['ack', id, 0],
  935. chunks: []
  936. };
  937. this._incoming[id] = data;
  938. }
  939. var n = msg[2];
  940. var chunk = msg[3];
  941. data.chunks[n] = new Uint8Array(chunk);
  942. // If we get the chunk we're looking for, ACK for next missing.
  943. // Otherwise, ACK the same N again.
  944. if (n === data.ack[2]) {
  945. this._calculateNextAck(id);
  946. }
  947. this._ack(id);
  948. break;
  949. default:
  950. // Shouldn't happen, but would make sense for message to just go
  951. // through as is.
  952. this._handleSend(msg);
  953. break;
  954. }
  955. };
  956. // Chunks BL into smaller messages.
  957. Reliable.prototype._chunk = function(bl) {
  958. var chunks = [];
  959. var size = bl.size;
  960. var start = 0;
  961. while (start < size) {
  962. var end = Math.min(size, start + this._mtu);
  963. var b = bl.slice(start, end);
  964. var chunk = {
  965. payload: b
  966. }
  967. chunks.push(chunk);
  968. start = end;
  969. }
  970. return chunks;
  971. };
  972. // Sends ACK N, expecting Nth blob chunk for message ID.
  973. Reliable.prototype._ack = function(id, n) {
  974. var ack = this._incoming[id].ack;
  975. this._handleSend(ack);
  976. };
  977. // Calculates the next ACK number, given chunks.
  978. Reliable.prototype._calculateNextAck = function(id) {
  979. var data = this._incoming[id];
  980. var chunks = data.chunks;
  981. for (var i = 0, ii = chunks.length; i < ii; i += 1) {
  982. // This chunk is missing!!! Better ACK for it.
  983. if (chunks[i] === undefined) {
  984. data.ack[2] = i;
  985. return;
  986. }
  987. }
  988. data.ack[2] = chunks.length;
  989. };
  990. // Sends the next window of chunks.
  991. Reliable.prototype._sendWindowedChunks = function(id) {
  992. util.log('sendWindowedChunks for: ', id);
  993. var data = this._outgoing[id];
  994. var ch = data.chunks;
  995. var chunks = [];
  996. var limit = Math.min(data.ack + this._window, ch.length);
  997. for (var i = data.ack; i < limit; i += 1) {
  998. if (!ch[i].sent || i === data.ack) {
  999. // Sliding window.
  1000. if (i === data.ack && ch[i].sent) {
  1001. this._window = Math.max(1, Math.round(this._window / 10));
  1002. limit = Math.min(data.ack + this._window, ch.length);
  1003. } else if (i === data.ack) {
  1004. this._window = Math.min(1000, Math.round(this._window * 10));
  1005. limit = Math.min(data.ack + this._window, ch.length);
  1006. }
  1007. ch[i].sent = true;
  1008. chunks.push(['chunk', id, i, ch[i].payload]);
  1009. }
  1010. }
  1011. if (data.ack + this._window >= ch.length - 1) {
  1012. chunks.push(['end', id, ch.length])
  1013. }
  1014. chunks._multiple = true;
  1015. this._handleSend(chunks);
  1016. // TODO: set retry timer.
  1017. };
  1018. // Puts together a message from chunks.
  1019. Reliable.prototype._complete = function(id) {
  1020. // FIXME: handle errors.
  1021. util.log('Complete', id);
  1022. var self = this;
  1023. var chunks = this._incoming[id].chunks;
  1024. var bl = new Blob(chunks);
  1025. util.blobToArrayBuffer(bl, function(ab) {
  1026. util.log('Calling onmessage with complete message');
  1027. self.onmessage(util.unpack(ab));
  1028. });
  1029. delete this._incoming[id];
  1030. };
  1031. // Ups bandwidth limit on SDP. Meant to be called during offer/answer.
  1032. Reliable.higherBandwidthSDP = function(sdp) {
  1033. // AS stands for Application-Specific Maximum.
  1034. // Bandwidth number is in kilobits / sec.
  1035. // See RFC for more info: http://www.ietf.org/rfc/rfc2327.txt
  1036. var parts = sdp.split('b=AS:30');
  1037. var replace = 'b=AS:102400'; // 100 Mbps
  1038. return parts[0] + replace + parts[1];
  1039. };
  1040. exports.Reliable = Reliable;
  1041. var RTCPeerConnection = null;
  1042. var getUserMedia = null;
  1043. var attachMediaStream = null;
  1044. if (navigator.mozGetUserMedia) {
  1045. util.browserisms = 'Firefox';
  1046. RTCSessionDescription = window.mozRTCSessionDescription;
  1047. RTCPeerConnection = window.mozRTCPeerConnection;
  1048. getUserMedia = navigator.mozGetUserMedia.bind(navigator);
  1049. } else if (navigator.webkitGetUserMedia) {
  1050. util.browserisms = 'Webkit';
  1051. RTCPeerConnection = window.webkitRTCPeerConnection;
  1052. getUserMedia = navigator.webkitGetUserMedia.bind(navigator);
  1053. }
  1054. exports.RTCSessionDescription = RTCSessionDescription;
  1055. exports.RTCPeerConnection = RTCPeerConnection;
  1056. exports.getUserMedia = getUserMedia;
  1057. /**
  1058. * A peer who can initiate connections with other peers.
  1059. */
  1060. function Peer(id, options) {
  1061. if (id && id.constructor == Object) {
  1062. options = id;
  1063. id = undefined;
  1064. }
  1065. if (!(this instanceof Peer)) return new Peer(id, options);
  1066. EventEmitter.call(this);
  1067. // First check if browser can use PeerConnection/DataChannels.
  1068. // TODO: when media is supported, lower browser version limit and move DC
  1069. // check to where`connect` is called.
  1070. if (!util.isBrowserCompatible()) {
  1071. this._abort('browser-incompatible', 'The current browser does not support WebRTC DataChannels');
  1072. return;
  1073. }
  1074. // Detect relative URL host.
  1075. if (options.host === '/') {
  1076. options.host = window.location.hostname;
  1077. }
  1078. options = util.extend({
  1079. debug: false,
  1080. host: '0.peerjs.com',
  1081. port: 9000,
  1082. key: 'peerjs',
  1083. config: { 'iceServers': [{ 'url': 'stun:stun.l.google.com:19302' }] }
  1084. }, options);
  1085. this._options = options;
  1086. util.debug = options.debug;
  1087. // Ensure alphanumeric_-
  1088. var self = this;
  1089. if (id && !/^[A-Za-z0-9]+(?:[ _-][A-Za-z0-9]+)*$/.exec(id)) {
  1090. util.setZeroTimeout(function() {
  1091. self._abort('invalid-id', 'ID "' + id + '" is invalid');
  1092. });
  1093. return
  1094. }
  1095. if (options.key && !/^[A-Za-z0-9]+(?:[ _-][A-Za-z0-9]+)*$/.exec(options.key)) {
  1096. util.setZeroTimeout(function() {
  1097. self._abort('invalid-key', 'API KEY "' + options.key + '" is invalid');
  1098. });
  1099. return
  1100. }
  1101. // States.
  1102. this.destroyed = false;
  1103. this.disconnected = false;
  1104. // Connections for this peer.
  1105. this.connections = {};
  1106. // Connection managers.
  1107. this.managers = {};
  1108. // Queued connections to make.
  1109. this._queued = [];
  1110. // Init immediately if ID is given, otherwise ask server for ID
  1111. if (id) {
  1112. this.id = id;
  1113. this._init();
  1114. } else {
  1115. this.id = null;
  1116. this._getId();
  1117. }
  1118. };
  1119. util.inherits(Peer, EventEmitter);
  1120. Peer.prototype._getId = function(cb) {
  1121. var self = this;
  1122. try {
  1123. var http = new XMLHttpRequest();
  1124. var url = 'http://' + this._options.host + ':' + this._options.port + '/' + this._options.key + '/id';
  1125. var queryString = '?ts=' + new Date().getTime() + '' + Math.random();
  1126. url += queryString;
  1127. // If there's no ID we need to wait for one before trying to init socket.
  1128. http.open('get', url, true);
  1129. http.onreadystatechange = function() {
  1130. if (http.readyState === 4) {
  1131. self.id = http.responseText;
  1132. self._init();
  1133. }
  1134. };
  1135. http.send(null);
  1136. } catch(e) {
  1137. this._abort('server-error', 'Could not get an ID from the server');
  1138. }
  1139. };
  1140. Peer.prototype._init = function() {
  1141. var self = this;
  1142. this._socket = new Socket(this._options.host, this._options.port, this._options.key, this.id);
  1143. this._socket.on('message', function(data) {
  1144. self._handleServerJSONMessage(data);
  1145. });
  1146. this._socket.on('error', function(error) {
  1147. util.log(error);
  1148. self._abort('socket-error', error);
  1149. });
  1150. this._socket.on('close', function() {
  1151. var msg = 'Underlying socket has closed';
  1152. util.log('error', msg);
  1153. self._abort('socket-closed', msg);
  1154. });
  1155. this._socket.start();
  1156. }
  1157. Peer.prototype._handleServerJSONMessage = function(message) {
  1158. var peer = message.src;
  1159. var manager = this.managers[peer];
  1160. var payload = message.payload;
  1161. switch (message.type) {
  1162. case 'OPEN':
  1163. this._processQueue();
  1164. this.emit('open', this.id);
  1165. break;
  1166. case 'ERROR':
  1167. util.log(payload.msg);
  1168. this._abort('server-error', payload.msg);
  1169. break;
  1170. case 'ID-TAKEN':
  1171. this._abort('unavailable-id', 'ID `'+this.id+'` is taken');
  1172. break;
  1173. case 'OFFER':
  1174. var options = {
  1175. sdp: payload.sdp,
  1176. labels: payload.labels,
  1177. config: this._options.config
  1178. };
  1179. var manager = this.managers[peer];
  1180. if (!manager) {
  1181. manager = new ConnectionManager(this.id, peer, this._socket, options);
  1182. this._attachManagerListeners(manager);
  1183. this.managers[peer] = manager;
  1184. this.connections[peer] = {};
  1185. }
  1186. manager.update(options.labels);
  1187. manager.handleSDP(payload.sdp, message.type);
  1188. break;
  1189. case 'EXPIRE':
  1190. if (manager) {
  1191. manager.close();
  1192. manager.emit('error', new Error('Could not connect to peer ' + manager.peer));
  1193. }
  1194. break;
  1195. case 'ANSWER':
  1196. if (manager) {
  1197. manager.handleSDP(payload.sdp, message.type);
  1198. }
  1199. break;
  1200. case 'CANDIDATE':
  1201. if (manager) {
  1202. manager.handleCandidate(payload);
  1203. }
  1204. break;
  1205. case 'LEAVE':
  1206. if (manager) {
  1207. manager.handleLeave();
  1208. }
  1209. break;
  1210. case 'INVALID-KEY':
  1211. this._abort('invalid-key', 'API KEY "' + this._key + '" is invalid');
  1212. break;
  1213. case 'PORT':
  1214. //if (util.browserisms === 'Firefox') {
  1215. // connection.handlePort(payload);
  1216. // break;
  1217. //}
  1218. default:
  1219. util.log('Unrecognized message type:', message.type);
  1220. break;
  1221. }
  1222. };
  1223. /** Process queued calls to connect. */
  1224. Peer.prototype._processQueue = function() {
  1225. while (this._queued.length > 0) {
  1226. var manager = this._queued.pop();
  1227. manager.initialize(this.id, this._socket);
  1228. }
  1229. };
  1230. /** Listeners for manager. */
  1231. Peer.prototype._attachManagerListeners = function(manager) {
  1232. var self = this;
  1233. // Handle receiving a connection.
  1234. manager.on('connection', function(connection) {
  1235. self.connections[connection.peer][connection.label] = connection;
  1236. self.emit('connection', connection);
  1237. });
  1238. // Handle a connection closing.
  1239. manager.on('close', function() {
  1240. if (!!self.managers[manager.peer]) {
  1241. delete self.managers[manager.peer]
  1242. }
  1243. });
  1244. manager.on('error', function(err) {
  1245. self.emit('error', err);
  1246. });
  1247. };
  1248. /** Destroys the Peer and emits an error message. */
  1249. Peer.prototype._abort = function(type, message) {
  1250. var err = new Error(message);
  1251. err.type = type;
  1252. this.destroy();
  1253. this.emit('error', err);
  1254. };
  1255. Peer.prototype._cleanup = function() {
  1256. var self = this;
  1257. if (!!this.managers) {
  1258. var peers = Object.keys(this.managers);
  1259. for (var i = 0, ii = peers.length; i < ii; i++) {
  1260. this.managers[peers[i]].close();
  1261. }
  1262. util.setZeroTimeout(function(){
  1263. self.disconnect();
  1264. });
  1265. }
  1266. this.emit('close');
  1267. };
  1268. /** Exposed connect function for users. Will try to connect later if user
  1269. * is waiting for an ID. */
  1270. Peer.prototype.connect = function(peer, options) {
  1271. if (this.disconnected) {
  1272. var err = new Error('This Peer has been disconnected from the server and can no longer make connections.');
  1273. err.type = 'server-disconnected';
  1274. this.emit('error', err);
  1275. return;
  1276. }
  1277. options = util.extend({
  1278. config: this._options.config
  1279. }, options);
  1280. var manager = this.managers[peer];
  1281. if (!manager) {
  1282. manager = new ConnectionManager(this.id, peer, this._socket, options);
  1283. this._attachManagerListeners(manager);
  1284. this.managers[peer] = manager;
  1285. this.connections[peer] = {};
  1286. }
  1287. var connectionInfo = manager.connect(options);
  1288. if (!!connectionInfo) {
  1289. this.connections[peer][connectionInfo[0]] = connectionInfo[1];
  1290. }
  1291. if (!this.id) {
  1292. this._queued.push(manager);
  1293. }
  1294. return connectionInfo[1];
  1295. };
  1296. /**
  1297. * Return the peer id or null, if there's no id at the moment.
  1298. * Reasons for no id could be 'connect in progress' or 'disconnected'
  1299. */
  1300. Peer.prototype.getId = function() {
  1301. return this.id;
  1302. };
  1303. /**
  1304. * Destroys the Peer: closes all active connections as well as the connection
  1305. * to the server.
  1306. * Warning: The peer can no longer create or accept connections after being
  1307. * destroyed.
  1308. */
  1309. Peer.prototype.destroy = function() {
  1310. if (!this.destroyed) {
  1311. this._cleanup();
  1312. this.destroyed = true;
  1313. }
  1314. };
  1315. /**
  1316. * Disconnects the Peer's connection to the PeerServer. Does not close any
  1317. * active connections.
  1318. * Warning: The peer can no longer create or accept connections after being
  1319. * disconnected. It also cannot reconnect to the server.
  1320. */
  1321. Peer.prototype.disconnect = function() {
  1322. if (!this.disconnected) {
  1323. this._socket.close();
  1324. this.id = null;
  1325. this.disconnected = true;
  1326. }
  1327. };
  1328. /**
  1329. * Provides a clean method for checking if there's an active connection to the
  1330. * peer server.
  1331. */
  1332. Peer.prototype.isConnected = function() {
  1333. return !this.disconnected;
  1334. };
  1335. /**
  1336. * Returns true if this peer is destroyed and can no longer be used.
  1337. */
  1338. Peer.prototype.isDestroyed = function() {
  1339. return this.destroyed;
  1340. };
  1341. exports.Peer = Peer;
  1342. /**
  1343. * Wraps a DataChannel between two Peers.
  1344. */
  1345. function DataConnection(peer, dc, options) {
  1346. if (!(this instanceof DataConnection)) return new DataConnection(peer, dc, options);
  1347. EventEmitter.call(this);
  1348. options = util.extend({
  1349. reliable: false,
  1350. serialization: 'binary'
  1351. }, options);
  1352. // Connection is not open yet.
  1353. this.open = false;
  1354. this.label = options.label;
  1355. this.metadata = options.metadata;
  1356. this.serialization = options.serialization;
  1357. this.peer = peer;
  1358. this._isReliable = options.reliable;
  1359. this._dc = dc;
  1360. if (!!this._dc) {
  1361. this._configureDataChannel();
  1362. }
  1363. };
  1364. util.inherits(DataConnection, EventEmitter);
  1365. DataConnection.prototype._configureDataChannel = function() {
  1366. var self = this;
  1367. if (util.browserisms !== 'Webkit') {
  1368. this._dc.binaryType = 'arraybuffer';
  1369. }
  1370. this._dc.onopen = function() {
  1371. util.log('Data channel connection success');
  1372. self.open = true;
  1373. self.emit('open');
  1374. };
  1375. // Reliable.
  1376. if (this._isReliable) {
  1377. this._reliable = new Reliable(this._dc, util.debug);
  1378. }
  1379. if (this._reliable) {
  1380. this._reliable.onmessage = function(msg) {
  1381. self.emit('data', msg);
  1382. };
  1383. } else {
  1384. this._dc.onmessage = function(e) {
  1385. self._handleDataMessage(e);
  1386. };
  1387. }
  1388. this._dc.onclose = function(e) {
  1389. util.log('DataChannel closed.');
  1390. self.close();
  1391. };
  1392. };
  1393. DataConnection.prototype._cleanup = function() {
  1394. if (!!this._dc && this._dc.readyState !== 'closed') {
  1395. this._dc.close();
  1396. this._dc = null;
  1397. }
  1398. this.open = false;
  1399. this.emit('close');
  1400. };
  1401. // Handles a DataChannel message.
  1402. DataConnection.prototype._handleDataMessage = function(e) {
  1403. var self = this;
  1404. var data = e.data;
  1405. var datatype = data.constructor;
  1406. if (this.serialization === 'binary' || this.serialization === 'binary-utf8') {
  1407. if (datatype === Blob) {
  1408. util.blobToArrayBuffer(data, function(ab) {
  1409. data = util.unpack(ab);
  1410. self.emit('data', data);
  1411. });
  1412. return;
  1413. } else if (datatype === ArrayBuffer) {
  1414. data = util.unpack(data);
  1415. } else if (datatype === String) {
  1416. var ab = util.binaryStringToArrayBuffer(data);
  1417. data = util.unpack(ab);
  1418. }
  1419. } else if (this.serialization === 'json') {
  1420. data = JSON.parse(data);
  1421. }
  1422. this.emit('data', data);
  1423. };
  1424. DataConnection.prototype.addDC = function(dc) {
  1425. this._dc = dc;
  1426. this._configureDataChannel();
  1427. };
  1428. /**
  1429. * Exposed functionality for users.
  1430. */
  1431. /** Allows user to close connection. */
  1432. DataConnection.prototype.close = function() {
  1433. if (!this.open) {
  1434. return;
  1435. }
  1436. this._cleanup();
  1437. };
  1438. /** Allows user to send data. */
  1439. DataConnection.prototype.send = function(data) {
  1440. if (!this.open) {
  1441. this.emit('error', new Error('Connection no longer open.'));
  1442. }
  1443. if (this._reliable) {
  1444. // Note: reliable sending will make it so that you cannot customize
  1445. // serialization.
  1446. this._reliable.send(data);
  1447. return;
  1448. }
  1449. var self = this;
  1450. if (this.serialization === 'none') {
  1451. this._dc.send(data);
  1452. } else if (this.serialization === 'json') {
  1453. this._dc.send(JSON.stringify(data));
  1454. } else {
  1455. var utf8 = (this.serialization === 'binary-utf8');
  1456. var blob = util.pack(data, utf8);
  1457. // DataChannel currently only supports strings.
  1458. if (util.browserisms === 'Webkit') {
  1459. util.blobToBinaryString(blob, function(str){
  1460. self._dc.send(str);
  1461. });
  1462. } else {
  1463. this._dc.send(blob);
  1464. }
  1465. }
  1466. };
  1467. /**
  1468. * Returns true if the DataConnection is open and able to send messages.
  1469. */
  1470. DataConnection.prototype.isOpen = function() {
  1471. return this.open;
  1472. };
  1473. /**
  1474. * Gets the metadata associated with this DataConnection.
  1475. */
  1476. DataConnection.prototype.getMetadata = function() {
  1477. return this.metadata;
  1478. };
  1479. /**
  1480. * Gets the label associated with this DataConnection.
  1481. */
  1482. DataConnection.prototype.getLabel = function() {
  1483. return this.label;
  1484. };
  1485. /**
  1486. * Gets the brokering ID of the peer that you are connected with.
  1487. * Note that this ID may be out of date if the peer has disconnected from the
  1488. * server, so it's not recommended that you use this ID to identify this
  1489. * connection.
  1490. */
  1491. DataConnection.prototype.getPeer = function() {
  1492. return this.peer;
  1493. };
  1494. /**
  1495. * Manages DataConnections between its peer and one other peer.
  1496. * Internally, manages PeerConnection.
  1497. */
  1498. function ConnectionManager(id, peer, socket, options) {
  1499. if (!(this instanceof ConnectionManager)) return new ConnectionManager(id, peer, socket, options);
  1500. EventEmitter.call(this);
  1501. options = util.extend({
  1502. config: { 'iceServers': [{ 'url': 'stun:stun.l.google.com:19302' }] }
  1503. }, options);
  1504. this._options = options;
  1505. // PeerConnection is not yet dead.
  1506. this.open = true;
  1507. this.id = id;
  1508. this.peer = peer;
  1509. this.pc = null;
  1510. // Mapping labels to metadata and serialization.
  1511. // label => { metadata: ..., serialization: ..., reliable: ...}
  1512. this.labels = {};
  1513. // A default label in the event that none are passed in.
  1514. this._default = 0;
  1515. // DataConnections on this PC.
  1516. this.connections = {};
  1517. this._queued = [];
  1518. this._socket = socket;
  1519. if (!!this.id) {
  1520. this.initialize();
  1521. }
  1522. };
  1523. util.inherits(ConnectionManager, EventEmitter);
  1524. ConnectionManager.prototype.initialize = function(id, socket) {
  1525. if (!!id) {
  1526. this.id = id;
  1527. }
  1528. if (!!socket) {
  1529. this._socket = socket;
  1530. }
  1531. // Set up PeerConnection.
  1532. this._startPeerConnection();
  1533. // Process queued DCs.
  1534. this._processQueue();
  1535. // Listen for ICE candidates.
  1536. this._setupIce();
  1537. // Listen for negotiation needed.
  1538. // Chrome only **
  1539. this._setupNegotiationHandler();
  1540. // Listen for data channel.
  1541. this._setupDataChannel();
  1542. this.initialize = function() { };
  1543. };
  1544. /** Start a PC. */
  1545. ConnectionManager.prototype._startPeerConnection = function() {
  1546. util.log('Creating RTCPeerConnection');
  1547. this.pc = new RTCPeerConnection(this._options.config, { optional: [ { RtpDataChannels: true } ]});
  1548. };
  1549. /** Add DataChannels to all queued DataConnections. */
  1550. ConnectionManager.prototype._processQueue = function() {
  1551. var conn = this._queued.pop();
  1552. if (!!conn) {
  1553. conn.addDC(this.pc.createDataChannel(conn.label, { reliable: false }));
  1554. }
  1555. };
  1556. /** Set up ICE candidate handlers. */
  1557. ConnectionManager.prototype._setupIce = function() {
  1558. util.log('Listening for ICE candidates.');
  1559. var self = this;
  1560. this.pc.onicecandidate = function(evt) {
  1561. if (evt.candidate) {
  1562. util.log('Received ICE candidates.');
  1563. self._socket.send({
  1564. type: 'CANDIDATE',
  1565. payload: {
  1566. candidate: evt.candidate
  1567. },
  1568. dst: self.peer
  1569. });
  1570. }
  1571. };
  1572. this.pc.oniceconnectionstatechange = function() {
  1573. if (!!self.pc && self.pc.iceConnectionState === 'disconnected') {
  1574. util.log('iceConnectionState is disconnected, closing connections to ' + this.peer);
  1575. self.close();
  1576. }
  1577. };
  1578. // Fallback for older Chrome impls.
  1579. this.pc.onicechange = function() {
  1580. if (!!self.pc && self.pc.iceConnectionState === 'disconnected') {
  1581. util.log('iceConnectionState is disconnected, closing connections to ' + this.peer);
  1582. self.close();
  1583. }
  1584. };
  1585. };
  1586. /** Set up onnegotiationneeded. */
  1587. ConnectionManager.prototype._setupNegotiationHandler = function() {
  1588. var self = this;
  1589. util.log('Listening for `negotiationneeded`');
  1590. this.pc.onnegotiationneeded = function() {
  1591. util.log('`negotiationneeded` triggered');
  1592. self._makeOffer();
  1593. };
  1594. };
  1595. /** Set up Data Channel listener. */
  1596. ConnectionManager.prototype._setupDataChannel = function() {
  1597. var self = this;
  1598. util.log('Listening for data channel');
  1599. this.pc.ondatachannel = function(evt) {
  1600. util.log('Received data channel');
  1601. var dc = evt.channel;
  1602. var label = dc.label;
  1603. // This should not be empty.
  1604. var options = self.labels[label] || {};
  1605. var connection = new DataConnection(self.peer, dc, options);
  1606. self._attachConnectionListeners(connection);
  1607. self.connections[label] = connection;
  1608. self.emit('connection', connection);
  1609. };
  1610. };
  1611. /** Send an offer. */
  1612. ConnectionManager.prototype._makeOffer = function() {
  1613. var self = this;
  1614. this.pc.createOffer(function(offer) {
  1615. util.log('Created offer.');
  1616. self.pc.setLocalDescription(offer, function() {
  1617. util.log('Set localDescription to offer');
  1618. self._socket.send({
  1619. type: 'OFFER',
  1620. payload: {
  1621. sdp: offer,
  1622. config: self._options.config,
  1623. labels: self.labels
  1624. },
  1625. dst: self.peer
  1626. });
  1627. // We can now reset labels because all info has been communicated.
  1628. self.labels = {};
  1629. }, function(err) {
  1630. self.emit('error', err);
  1631. util.log('Failed to setLocalDescription, ', err);
  1632. });
  1633. });
  1634. };
  1635. /** Create an answer for PC. */
  1636. ConnectionManager.prototype._makeAnswer = function() {
  1637. var self = this;
  1638. this.pc.createAnswer(function(answer) {
  1639. util.log('Created answer.');
  1640. self.pc.setLocalDescription(answer, function() {
  1641. util.log('Set localDescription to answer.');
  1642. self._socket.send({
  1643. type: 'ANSWER',
  1644. payload: {
  1645. sdp: answer
  1646. },
  1647. dst: self.peer
  1648. });
  1649. }, function(err) {
  1650. self.emit('error', err);
  1651. util.log('Failed to setLocalDescription, ', err);
  1652. });
  1653. }, function(err) {
  1654. self.emit('error', err);
  1655. util.log('Failed to create answer, ', err);
  1656. });
  1657. };
  1658. /** Clean up PC, close related DCs. */
  1659. ConnectionManager.prototype._cleanup = function() {
  1660. util.log('Cleanup ConnectionManager for ' + this.peer);
  1661. if (!!this.pc && (this.pc.readyState !== 'closed' || this.pc.signalingState !== 'closed')) {
  1662. this.pc.close();
  1663. this.pc = null;
  1664. }
  1665. var self = this;
  1666. this._socket.send({
  1667. type: 'LEAVE',
  1668. dst: self.peer
  1669. });
  1670. this.open = false;
  1671. this.emit('close');
  1672. };
  1673. /** Attach connection listeners. */
  1674. ConnectionManager.prototype._attachConnectionListeners = function(connection) {
  1675. var self = this;
  1676. connection.on('close', function() {
  1677. if (!!self.connections[connection.label]) {
  1678. delete self.connections[connection.label];
  1679. }
  1680. if (!Object.keys(self.connections).length) {
  1681. self._cleanup();
  1682. }
  1683. });
  1684. connection.on('open', function() {
  1685. self._lock = false;
  1686. self._processQueue();
  1687. });
  1688. };
  1689. /** Handle an SDP. */
  1690. ConnectionManager.prototype.handleSDP = function(sdp, type) {
  1691. sdp = new RTCSessionDescription(sdp);
  1692. var self = this;
  1693. this.pc.setRemoteDescription(sdp, function() {
  1694. util.log('Set remoteDescription: ' + type);
  1695. if (type === 'OFFER') {
  1696. self._makeAnswer();
  1697. }
  1698. }, function(err) {
  1699. self.emit('error', err);
  1700. util.log('Failed to setRemoteDescription, ', err);
  1701. });
  1702. };
  1703. /** Handle a candidate. */
  1704. ConnectionManager.prototype.handleCandidate = function(message) {
  1705. var candidate = new RTCIceCandidate(message.candidate);
  1706. this.pc.addIceCandidate(candidate);
  1707. util.log('Added ICE candidate.');
  1708. };
  1709. /** Handle peer leaving. */
  1710. ConnectionManager.prototype.handleLeave = function() {
  1711. util.log('Peer ' + this.peer + ' disconnected.');
  1712. this.close();
  1713. };
  1714. /** Closes manager and all related connections. */
  1715. ConnectionManager.prototype.close = function() {
  1716. if (!this.open) {
  1717. this.emit('error', new Error('Connections to ' + this.peer + 'are already closed.'));
  1718. return;
  1719. }
  1720. var labels = Object.keys(this.connections);
  1721. for (var i = 0, ii = labels.length; i < ii; i += 1) {
  1722. var label = labels[i];
  1723. var connection = this.connections[label];
  1724. connection.close();
  1725. }
  1726. this.connections = null;
  1727. this._cleanup();
  1728. };
  1729. /** Create and returns a DataConnection with the peer with the given label. */
  1730. ConnectionManager.prototype.connect = function(options) {
  1731. if (!this.open) {
  1732. return;
  1733. }
  1734. options = util.extend({
  1735. label: 'peerjs'
  1736. }, options);
  1737. // Check if label is taken...if so, generate a new label randomly.
  1738. while (!!this.connections[options.label]) {
  1739. options.label = 'peerjs' + this._default;
  1740. this._default += 1;
  1741. }
  1742. this.labels[options.label] = options;
  1743. var dc;
  1744. if (!!this.pc && !this._lock) {
  1745. dc = this.pc.createDataChannel(options.label, { reliable: false });
  1746. }
  1747. var connection = new DataConnection(this.peer, dc, options);
  1748. this._attachConnectionListeners(connection);
  1749. this.connections[options.label] = connection;
  1750. if (!this.pc || this._lock) {
  1751. this._queued.push(connection);
  1752. }
  1753. this._lock = true
  1754. return [options.label, connection];
  1755. };
  1756. /** Updates label:[serialization, reliable, metadata] pairs from offer. */
  1757. ConnectionManager.prototype.update = function(updates) {
  1758. var labels = Object.keys(updates);
  1759. for (var i = 0, ii = labels.length; i < ii; i += 1) {
  1760. var label = labels[i];
  1761. this.labels[label] = updates[label];
  1762. }
  1763. };
  1764. /**
  1765. * An abstraction on top of WebSockets and XHR streaming to provide fastest
  1766. * possible connection for peers.
  1767. */
  1768. function Socket(host, port, key, id) {
  1769. if (!(this instanceof Socket)) return new Socket(host, port, key, id);
  1770. EventEmitter.call(this);
  1771. this._id = id;
  1772. var token = util.randomToken();
  1773. this.disconnected = false;
  1774. this._httpUrl = 'http://' + host + ':' + port + '/' + key + '/' + id + '/' + token;
  1775. this._wsUrl = 'ws://' + host + ':' + port + '/peerjs?key='+key+'&id='+id+'&token='+token;
  1776. };
  1777. util.inherits(Socket, EventEmitter);
  1778. /** Check in with ID or get one from server. */
  1779. Socket.prototype.start = function() {
  1780. this._startXhrStream();
  1781. this._startWebSocket();
  1782. };
  1783. /** Start up websocket communications. */
  1784. Socket.prototype._startWebSocket = function() {
  1785. var self = this;
  1786. if (!!this._socket) {
  1787. return;
  1788. }
  1789. this._socket = new WebSocket(this._wsUrl);
  1790. this._socket.onmessage = function(event) {
  1791. var data;
  1792. try {
  1793. data = JSON.parse(event.data);
  1794. } catch(e) {
  1795. util.log('Invalid server message', event.data);
  1796. return;
  1797. }
  1798. self.emit('message', data);
  1799. };
  1800. // Take care of the queue of connections if necessary and make sure Peer knows
  1801. // socket is open.
  1802. this._socket.onopen = function() {
  1803. if (!!self._timeout) {
  1804. clearTimeout(self._timeout);
  1805. setTimeout(function(){
  1806. self._http.abort();
  1807. self._http = null;
  1808. }, 5000);
  1809. }
  1810. util.log('Socket open');
  1811. };
  1812. };
  1813. /** Start XHR streaming. */
  1814. Socket.prototype._startXhrStream = function(n) {
  1815. try {
  1816. var self = this;
  1817. this._http = new XMLHttpRequest();
  1818. this._http._index = 1;
  1819. this._http._streamIndex = n || 0;
  1820. this._http.open('post', this._httpUrl + '/id?i=' + this._http._streamIndex, true);
  1821. this._http.onreadystatechange = function() {
  1822. if (this.readyState == 2 && !!this.old) {
  1823. this.old.abort();
  1824. delete this.old;
  1825. }
  1826. if (this.readyState > 2 && this.status == 200 && !!this.responseText) {
  1827. self._handleStream(this);
  1828. }
  1829. };
  1830. this._http.send(null);
  1831. this._setHTTPTimeout();
  1832. } catch(e) {
  1833. util.log('XMLHttpRequest not available; defaulting to WebSockets');
  1834. }
  1835. };
  1836. /** Handles onreadystatechange response as a stream. */
  1837. Socket.prototype._handleStream = function(http) {
  1838. // 3 and 4 are loading/done state. All others are not relevant.
  1839. var messages = http.responseText.split('\n');
  1840. // Check to see if anything needs to be processed on buffer.
  1841. if (!!http._buffer) {
  1842. while (http._buffer.length > 0) {
  1843. var index = http._buffer.shift();
  1844. var bufferedMessage = messages[index];
  1845. try {
  1846. bufferedMessage = JSON.parse(bufferedMessage);
  1847. } catch(e) {
  1848. http._buffer.shift(index);
  1849. break;
  1850. }
  1851. this.emit('message', bufferedMessage);
  1852. }
  1853. }
  1854. var message = messages[http._index];
  1855. if (!!message) {
  1856. http._index += 1;
  1857. // Buffering--this message is incomplete and we'll get to it next time.
  1858. // This checks if the httpResponse ended in a `\n`, in which case the last
  1859. // element of messages should be the empty string.
  1860. if (http._index === messages.length) {
  1861. if (!http._buffer) {
  1862. http._buffer = [];
  1863. }
  1864. http._buffer.push(http._index - 1);
  1865. } else {
  1866. try {
  1867. message = JSON.parse(message);
  1868. } catch(e) {
  1869. util.log('Invalid server message', message);
  1870. return;
  1871. }
  1872. this.emit('message', message);
  1873. }
  1874. }
  1875. };
  1876. Socket.prototype._setHTTPTimeout = function() {
  1877. var self = this;
  1878. this._timeout = setTimeout(function() {
  1879. var old = self._http;
  1880. if (!self._wsOpen()) {
  1881. self._startXhrStream(old._streamIndex + 1);
  1882. self._http.old = old;
  1883. } else {
  1884. old.abort();
  1885. }
  1886. }, 25000);
  1887. };
  1888. Socket.prototype._wsOpen = function() {
  1889. return !!this._socket && this._socket.readyState == 1;
  1890. };
  1891. /** Exposed send for DC & Peer. */
  1892. Socket.prototype.send = function(data) {
  1893. if (this.disconnected) {
  1894. return;
  1895. }
  1896. if (!data.type) {
  1897. this.emit('error', 'Invalid message');
  1898. return;
  1899. }
  1900. var message = JSON.stringify(data);
  1901. if (this._wsOpen()) {
  1902. this._socket.send(message);
  1903. } else {
  1904. var http = new XMLHttpRequest();
  1905. var url = this._httpUrl + '/' + data.type.toLowerCase();
  1906. http.open('post', url, true);
  1907. http.setRequestHeader('Content-Type', 'application/json');
  1908. http.send(message);
  1909. }
  1910. };
  1911. Socket.prototype.close = function() {
  1912. if (!this.disconnected && this._wsOpen()) {
  1913. this._socket.close();
  1914. this.disconnected = true;
  1915. }
  1916. };
  1917. })(this);