peer.js 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  1. /*! peerjs.js build:0.2.0, 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. debug: false,
  647. browserisms: '',
  648. inherits: function(ctor, superCtor) {
  649. ctor.super_ = superCtor;
  650. ctor.prototype = Object.create(superCtor.prototype, {
  651. constructor: {
  652. value: ctor,
  653. enumerable: false,
  654. writable: true,
  655. configurable: true
  656. }
  657. });
  658. },
  659. extend: function(dest, source) {
  660. for(var key in source) {
  661. if(source.hasOwnProperty(key)) {
  662. dest[key] = source[key];
  663. }
  664. }
  665. return dest;
  666. },
  667. pack: BinaryPack.pack,
  668. unpack: BinaryPack.unpack,
  669. randomPort: function() {
  670. return Math.round(Math.random() * 60535) + 5000;
  671. },
  672. log: function () {
  673. if (util.debug) {
  674. var err = false;
  675. var copy = Array.prototype.slice.call(arguments);
  676. copy.unshift('PeerJS: ');
  677. for (var i = 0, l = copy.length; i < l; i++){
  678. if (copy[i] instanceof Error) {
  679. copy[i] = '(' + copy[i].name + ') ' + copy[i].message;
  680. err = true;
  681. }
  682. }
  683. err ? console.error.apply(console, copy) : console.log.apply(console, copy);
  684. }
  685. },
  686. setZeroTimeout: (function(global) {
  687. var timeouts = [];
  688. var messageName = 'zero-timeout-message';
  689. // Like setTimeout, but only takes a function argument. There's
  690. // no time argument (always zero) and no arguments (you have to
  691. // use a closure).
  692. function setZeroTimeoutPostMessage(fn) {
  693. timeouts.push(fn);
  694. global.postMessage(messageName, '*');
  695. }
  696. function handleMessage(event) {
  697. if (event.source == global && event.data == messageName) {
  698. if (event.stopPropagation) {
  699. event.stopPropagation();
  700. }
  701. if (timeouts.length) {
  702. timeouts.shift()();
  703. }
  704. }
  705. }
  706. if (global.addEventListener) {
  707. global.addEventListener('message', handleMessage, true);
  708. } else if (global.attachEvent) {
  709. global.attachEvent('onmessage', handleMessage);
  710. }
  711. return setZeroTimeoutPostMessage;
  712. }(this)),
  713. blobToArrayBuffer: function(blob, cb){
  714. var fr = new FileReader();
  715. fr.onload = function(evt) {
  716. cb(evt.target.result);
  717. };
  718. fr.readAsArrayBuffer(blob);
  719. },
  720. blobToBinaryString: function(blob, cb){
  721. var fr = new FileReader();
  722. fr.onload = function(evt) {
  723. cb(evt.target.result);
  724. };
  725. fr.readAsBinaryString(blob);
  726. },
  727. binaryStringToArrayBuffer: function(binary) {
  728. var byteArray = new Uint8Array(binary.length);
  729. for (var i = 0; i < binary.length; i++) {
  730. byteArray[i] = binary.charCodeAt(i) & 0xff;
  731. }
  732. return byteArray.buffer;
  733. },
  734. randomToken: function () {
  735. return Math.random().toString(36).substr(2);
  736. }
  737. };
  738. /**
  739. * Reliable transfer for Chrome Canary DataChannel impl.
  740. * Author: @michellebu
  741. */
  742. function Reliable(dc, debug) {
  743. if (!(this instanceof Reliable)) return new Reliable(dc);
  744. this._dc = dc;
  745. util.debug = debug;
  746. // Messages sent/received so far.
  747. // id: { ack: n, chunks: [...] }
  748. this._outgoing = {};
  749. // id: { ack: ['ack', id, n], chunks: [...] }
  750. this._incoming = {};
  751. this._received = {};
  752. // Window size.
  753. this._window = 1000;
  754. // MTU.
  755. this._mtu = 500;
  756. // Interval for setInterval. In ms.
  757. this._interval = 10;
  758. // Messages sent.
  759. this._count = 0;
  760. // Outgoing message queue.
  761. this._queue = [];
  762. this._setupDC();
  763. };
  764. // Send a message reliably.
  765. Reliable.prototype.send = function(msg) {
  766. // Determine if chunking is necessary.
  767. var bl = util.pack(msg);
  768. if (bl.size < this._mtu) {
  769. this._handleSend(['no', bl]);
  770. return;
  771. }
  772. this._outgoing[this._count] = {
  773. ack: 0,
  774. chunks: this._chunk(bl)
  775. };
  776. if (util.debug) {
  777. this._outgoing[this._count].timer = new Date();
  778. }
  779. // Send prelim window.
  780. this._sendWindowedChunks(this._count);
  781. this._count += 1;
  782. };
  783. // Overwritten, typically.
  784. Reliable.prototype.onmessage = function(msg) {};
  785. // Set up interval for processing queue.
  786. Reliable.prototype._setupInterval = function() {
  787. var self = this;
  788. this._timeout = setInterval(function() {
  789. // FIXME: String stuff makes things terribly async.
  790. var msg = self._queue.shift();
  791. if (msg._multiple) {
  792. for (var i = 0, ii = msg.length; i < ii; i += 1) {
  793. self._intervalSend(msg[i]);
  794. }
  795. } else {
  796. self._intervalSend(msg);
  797. }
  798. }, this._interval);
  799. };
  800. Reliable.prototype._intervalSend = function(msg) {
  801. var self = this;
  802. util.log('Sending...', msg);
  803. msg = util.pack(msg);
  804. util.blobToBinaryString(msg, function(str) {
  805. self._dc.send(str);
  806. });
  807. if (self._queue.length === 0) {
  808. clearTimeout(self._timeout);
  809. self._timeout = null;
  810. self._processAcks();
  811. }
  812. };
  813. // Go through ACKs to send missing pieces.
  814. Reliable.prototype._processAcks = function() {
  815. // processAcks
  816. for (var id in this._outgoing) {
  817. if (this._outgoing.hasOwnProperty(id)) {
  818. this._sendWindowedChunks(id);
  819. }
  820. }
  821. };
  822. // Handle sending a message.
  823. // FIXME: Don't wait for interval time for all messages...
  824. Reliable.prototype._handleSend = function(msg) {
  825. var push = true;
  826. for (var i = 0, ii = this._queue.length; i < ii; i += 1) {
  827. var item = this._queue[i];
  828. if (item === msg) {
  829. push = false;
  830. } else if (item._multiple && item.indexOf(msg) !== -1) {
  831. push = false;
  832. }
  833. }
  834. if (push) {
  835. this._queue.push(msg);
  836. if (!this._timeout) {
  837. this._setupInterval();
  838. }
  839. }
  840. };
  841. // Set up DataChannel handlers.
  842. Reliable.prototype._setupDC = function() {
  843. // Handle various message types.
  844. var self = this;
  845. this._dc.onmessage = function(e) {
  846. var msg = e.data;
  847. var datatype = msg.constructor;
  848. // FIXME: msg is String until binary is supported.
  849. // Once that happens, this will have to be smarter.
  850. if (datatype === String) {
  851. var ab = util.binaryStringToArrayBuffer(msg);
  852. msg = util.unpack(ab);
  853. self._handleMessage(msg);
  854. }
  855. };
  856. };
  857. // Handles an incoming message.
  858. Reliable.prototype._handleMessage = function(msg) {
  859. util.log('handleMessage: ', msg);
  860. var id = msg[1];
  861. var idata = this._incoming[id];
  862. var odata = this._outgoing[id];
  863. var data;
  864. switch (msg[0]) {
  865. // No chunking was done.
  866. case 'no':
  867. var message = id;
  868. if (!!message) {
  869. // TODO: What fancy timeout stuff to do with ACK?
  870. this.onmessage(util.unpack(message));
  871. }
  872. break;
  873. // Reached the end of the message.
  874. case 'end':
  875. // What if 'end' is sent out of order? Eventually we will ACK for
  876. // and receive it, so shouldn't be a problem.
  877. data = idata;
  878. if (!!data && data.ack[2] === msg[2]) {
  879. this._complete(id);
  880. this._received[id] = true;
  881. } else if (!!data) {
  882. this._ack(id, data.ack);
  883. }
  884. break;
  885. case 'ack':
  886. data = odata;
  887. if (!!data) {
  888. // TODO: more optimization for window size & data sent.
  889. // TODO: possibly process ACKs only after queue cleared to avoid dups?
  890. var ack = msg[2];
  891. // Take the larger ACK, for out of order messages.
  892. data.ack = Math.max(ack, data.ack);
  893. // Clean up when all chunks are ACKed.
  894. if (data.ack >= data.chunks.length) {
  895. util.log('Time: ', new Date() - data.timer);
  896. delete this._outgoing[id];
  897. } else {
  898. this._processAcks();
  899. }
  900. }
  901. // If !data, just ignore.
  902. break;
  903. // Received a chunk of data.
  904. case 'chunk':
  905. // Create a new entry if none exists.
  906. data = idata;
  907. if (!data) {
  908. if (this._received[id] !== undefined) {
  909. break;
  910. }
  911. data = {
  912. ack: ['ack', id, 0],
  913. chunks: []
  914. };
  915. this._incoming[id] = data;
  916. }
  917. var n = msg[2];
  918. var chunk = msg[3];
  919. data.chunks[n] = new Uint8Array(chunk);
  920. // If we get the chunk we're looking for, ACK for next missing.
  921. // Otherwise, ACK the same N again.
  922. if (n === data.ack[2]) {
  923. this._calculateNextAck(id);
  924. }
  925. this._ack(id);
  926. break;
  927. default:
  928. // Shouldn't happen, but would make sense for message to just go
  929. // through as is.
  930. this._handleSend(msg);
  931. break;
  932. }
  933. };
  934. // Chunks BL into smaller messages.
  935. Reliable.prototype._chunk = function(bl) {
  936. var chunks = [];
  937. var size = bl.size;
  938. var start = 0;
  939. while (start < size) {
  940. var end = Math.min(size, start + this._mtu);
  941. var b = bl.slice(start, end);
  942. var chunk = {
  943. payload: b
  944. }
  945. chunks.push(chunk);
  946. start = end;
  947. }
  948. return chunks;
  949. };
  950. // Sends ACK N, expecting Nth blob chunk for message ID.
  951. Reliable.prototype._ack = function(id, n) {
  952. var ack = this._incoming[id].ack;
  953. this._handleSend(ack);
  954. };
  955. // Calculates the next ACK number, given chunks.
  956. Reliable.prototype._calculateNextAck = function(id) {
  957. var data = this._incoming[id];
  958. var chunks = data.chunks;
  959. for (var i = 0, ii = chunks.length; i < ii; i += 1) {
  960. // This chunk is missing!!! Better ACK for it.
  961. if (chunks[i] === undefined) {
  962. data.ack[2] = i;
  963. return;
  964. }
  965. }
  966. data.ack[2] = chunks.length;
  967. };
  968. // Sends the next window of chunks.
  969. Reliable.prototype._sendWindowedChunks = function(id) {
  970. util.log('sendWindowedChunks for: ', id);
  971. var data = this._outgoing[id];
  972. var ch = data.chunks;
  973. var chunks = [];
  974. var limit = Math.min(data.ack + this._window, ch.length);
  975. for (var i = data.ack; i < limit; i += 1) {
  976. if (!ch[i].sent || i === data.ack) {
  977. // Sliding window.
  978. if (i === data.ack && ch[i].sent) {
  979. this._window = Math.max(1, Math.round(this._window / 10));
  980. limit = Math.min(data.ack + this._window, ch.length);
  981. } else if (i === data.ack) {
  982. this._window = Math.min(1000, Math.round(this._window * 10));
  983. limit = Math.min(data.ack + this._window, ch.length);
  984. }
  985. ch[i].sent = true;
  986. chunks.push(['chunk', id, i, ch[i].payload]);
  987. }
  988. }
  989. if (data.ack + this._window >= ch.length - 1) {
  990. chunks.push(['end', id, ch.length])
  991. }
  992. chunks._multiple = true;
  993. this._handleSend(chunks);
  994. // TODO: set retry timer.
  995. };
  996. // Puts together a message from chunks.
  997. Reliable.prototype._complete = function(id) {
  998. // FIXME: handle errors.
  999. util.log('Complete', id);
  1000. var self = this;
  1001. var chunks = this._incoming[id].chunks;
  1002. var bl = new Blob(chunks);
  1003. util.blobToArrayBuffer(bl, function(ab) {
  1004. util.log('Calling onmessage with complete message');
  1005. self.onmessage(util.unpack(ab));
  1006. });
  1007. delete this._incoming[id];
  1008. };
  1009. // Ups bandwidth limit on SDP. Meant to be called during offer/answer.
  1010. Reliable.higherBandwidthSDP = function(sdp) {
  1011. // AS stands for Application-Specific Maximum.
  1012. // Bandwidth number is in kilobits / sec.
  1013. // See RFC for more info: http://www.ietf.org/rfc/rfc2327.txt
  1014. var parts = sdp.split('b=AS:30');
  1015. var replace = 'b=AS:102400'; // 100 Mbps
  1016. return parts[0] + replace + parts[1];
  1017. };
  1018. exports.Reliable = Reliable;
  1019. var RTCPeerConnection = null;
  1020. var getUserMedia = null;
  1021. var attachMediaStream = null;
  1022. if (navigator.mozGetUserMedia) {
  1023. util.browserisms = 'Firefox';
  1024. RTCSessionDescription = window.mozRTCSessionDescription;
  1025. RTCPeerConnection = window.mozRTCPeerConnection;
  1026. getUserMedia = navigator.mozGetUserMedia.bind(navigator);
  1027. } else if (navigator.webkitGetUserMedia) {
  1028. util.browserisms = 'Webkit';
  1029. RTCPeerConnection = window.webkitRTCPeerConnection;
  1030. getUserMedia = navigator.webkitGetUserMedia.bind(navigator);
  1031. }
  1032. exports.RTCSessionDescription = RTCSessionDescription;
  1033. exports.RTCPeerConnection = RTCPeerConnection;
  1034. exports.getUserMedia = getUserMedia;
  1035. /**
  1036. * A peer who can initiate connections with other peers.
  1037. */
  1038. function Peer(id, options) {
  1039. if (id && id.constructor == Object) {
  1040. options = id;
  1041. id = undefined;
  1042. }
  1043. if (!(this instanceof Peer)) return new Peer(id, options);
  1044. EventEmitter.call(this);
  1045. // Detect relative URL host.
  1046. if (options.host === '/') {
  1047. options.host = window.location.hostname;
  1048. }
  1049. options = util.extend({
  1050. debug: false,
  1051. host: '0.peerjs.com',
  1052. port: 9000,
  1053. key: 'peerjs',
  1054. config: { 'iceServers': [{ 'url': 'stun:stun.l.google.com:19302' }] }
  1055. }, options);
  1056. this._options = options;
  1057. util.debug = options.debug;
  1058. // Ensure alphanumeric_-
  1059. var self = this;
  1060. if (id && !/^[A-Za-z0-9]+(?:[ _-][A-Za-z0-9]+)*$/.exec(id)) {
  1061. util.setZeroTimeout(function() {
  1062. self._abort('invalid-id', 'ID "' + id + '" is invalid');
  1063. });
  1064. return
  1065. }
  1066. if (options.key && !/^[A-Za-z0-9]+(?:[ _-][A-Za-z0-9]+)*$/.exec(options.key)) {
  1067. util.setZeroTimeout(function() {
  1068. self._abort('invalid-key', 'API KEY "' + options.key + '" is invalid');
  1069. });
  1070. return
  1071. }
  1072. // Connections for this peer.
  1073. this.connections = {};
  1074. // Connection managers.
  1075. this.managers = {};
  1076. // Queued connections to make.
  1077. this._queued = [];
  1078. // Init immediately if ID is given, otherwise ask server for ID
  1079. if (id) {
  1080. this.id = id;
  1081. this._init();
  1082. } else {
  1083. this._getId();
  1084. }
  1085. };
  1086. util.inherits(Peer, EventEmitter);
  1087. Peer.prototype._getId = function(cb) {
  1088. var self = this;
  1089. try {
  1090. var http = new XMLHttpRequest();
  1091. var url = 'http://' + this._options.host + ':' + this._options.port + '/' + this._options.key + '/id';
  1092. var queryString = '?ts=' + new Date().getTime() + '' + Math.random();
  1093. url += queryString;
  1094. // If there's no ID we need to wait for one before trying to init socket.
  1095. http.open('get', url, true);
  1096. http.onreadystatechange = function() {
  1097. if (http.readyState === 4) {
  1098. self.id = http.responseText;
  1099. self._init();
  1100. }
  1101. };
  1102. http.send(null);
  1103. } catch(e) {
  1104. this._abort('server-error', 'Could not get an ID from the server');
  1105. }
  1106. };
  1107. Peer.prototype._init = function() {
  1108. var self = this;
  1109. this._socket = new Socket(this._options.host, this._options.port, this._options.key, this.id);
  1110. this._socket.on('message', function(data) {
  1111. self._handleServerJSONMessage(data);
  1112. });
  1113. this._socket.on('error', function(error) {
  1114. util.log(error);
  1115. self._abort('socket-error', error);
  1116. });
  1117. this._socket.on('close', function() {
  1118. var msg = 'Underlying socket has closed';
  1119. util.log('error', msg);
  1120. self._abort('socket-closed', msg);
  1121. });
  1122. this._socket.start();
  1123. }
  1124. Peer.prototype._handleServerJSONMessage = function(message) {
  1125. var peer = message.src;
  1126. var manager = this.managers[peer];
  1127. var payload = message.payload;
  1128. switch (message.type) {
  1129. case 'OPEN':
  1130. this._processQueue();
  1131. this.emit('open', this.id);
  1132. break;
  1133. case 'ERROR':
  1134. util.log(payload.msg);
  1135. this._abort('server-error', payload.msg);
  1136. break;
  1137. case 'ID-TAKEN':
  1138. this._abort('unavailable-id', 'ID `'+this.id+'` is taken');
  1139. break;
  1140. case 'OFFER':
  1141. var options = {
  1142. sdp: payload.sdp,
  1143. labels: payload.labels,
  1144. config: this._options.config
  1145. };
  1146. var manager = this.managers[peer];
  1147. if (!manager) {
  1148. manager = new ConnectionManager(this.id, peer, this._socket, options);
  1149. this._attachManagerListeners(manager);
  1150. this.managers[peer] = manager;
  1151. this.connections[peer] = {};
  1152. }
  1153. manager.update(options.labels);
  1154. manager.handleSDP(payload.sdp, message.type);
  1155. break;
  1156. case 'EXPIRE':
  1157. if (manager) {
  1158. manager.close();
  1159. manager.emit('error', new Error('Could not connect to peer ' + manager.peer));
  1160. }
  1161. break;
  1162. case 'ANSWER':
  1163. if (manager) {
  1164. manager.handleSDP(payload.sdp, message.type);
  1165. }
  1166. break;
  1167. case 'CANDIDATE':
  1168. if (manager) {
  1169. manager.handleCandidate(payload);
  1170. }
  1171. break;
  1172. case 'LEAVE':
  1173. if (manager) {
  1174. manager.handleLeave();
  1175. }
  1176. break;
  1177. case 'INVALID-KEY':
  1178. this._abort('invalid-key', 'API KEY "' + this._key + '" is invalid');
  1179. break;
  1180. case 'PORT':
  1181. //if (util.browserisms === 'Firefox') {
  1182. // connection.handlePort(payload);
  1183. // break;
  1184. //}
  1185. default:
  1186. util.log('Unrecognized message type:', message.type);
  1187. break;
  1188. }
  1189. };
  1190. /** Process queued calls to connect. */
  1191. Peer.prototype._processQueue = function() {
  1192. while (this._queued.length > 0) {
  1193. var manager = this._queued.pop();
  1194. manager.initialize(this.id, this._socket);
  1195. }
  1196. };
  1197. /** Listeners for manager. */
  1198. Peer.prototype._attachManagerListeners = function(manager) {
  1199. var self = this;
  1200. // Handle receiving a connection.
  1201. manager.on('connection', function(connection) {
  1202. self.connections[connection.peer][connection.label] = connection;
  1203. self.emit('connection', connection);
  1204. });
  1205. // Handle a connection closing.
  1206. manager.on('close', function() {
  1207. if (!!self.managers[manager.peer]) {
  1208. delete self.managers[manager.peer]
  1209. }
  1210. });
  1211. manager.on('error', function(err) {
  1212. self.emit('error', err);
  1213. });
  1214. };
  1215. /** Destroys the Peer and emits an error message. */
  1216. Peer.prototype._abort = function(type, message) {
  1217. var err = new Error(message);
  1218. err.type = type;
  1219. this.destroy();
  1220. this.emit('error', err);
  1221. };
  1222. Peer.prototype._cleanup = function() {
  1223. var self = this;
  1224. if (!!this.managers) {
  1225. var peers = Object.keys(this.managers);
  1226. for (var i = 0, ii = peers.length; i < ii; i++) {
  1227. this.managers[peers[i]].close();
  1228. }
  1229. util.setZeroTimeout(function(){
  1230. self._socket.close();
  1231. });
  1232. }
  1233. this.emit('close');
  1234. };
  1235. /** Exposed connect function for users. Will try to connect later if user
  1236. * is waiting for an ID. */
  1237. // TODO: pause XHR streaming when not in use and start again when this is
  1238. // called.
  1239. Peer.prototype.connect = function(peer, options) {
  1240. if (this.destroyed) {
  1241. this._abort('peer-destroyed', 'This Peer has been destroyed and is no longer able to make connections.');
  1242. return;
  1243. }
  1244. options = util.extend({
  1245. config: this._options.config
  1246. }, options);
  1247. var manager = this.managers[peer];
  1248. if (!manager) {
  1249. manager = new ConnectionManager(this.id, peer, this._socket, options);
  1250. this._attachManagerListeners(manager);
  1251. this.managers[peer] = manager;
  1252. this.connections[peer] = {};
  1253. }
  1254. var connectionInfo = manager.connect(options);
  1255. if (!!connectionInfo) {
  1256. this.connections[peer][connectionInfo[0]] = connectionInfo[1];
  1257. }
  1258. if (!this.id) {
  1259. this._queued.push(manager);
  1260. }
  1261. return connectionInfo[1];
  1262. };
  1263. Peer.prototype.destroy = function() {
  1264. if (!this.destroyed) {
  1265. this._cleanup();
  1266. this.destroyed = true;
  1267. }
  1268. };
  1269. exports.Peer = Peer;
  1270. /**
  1271. * Wraps a DataChannel between two Peers.
  1272. */
  1273. function DataConnection(peer, dc, options) {
  1274. if (!(this instanceof DataConnection)) return new DataConnection(peer, dc, options);
  1275. EventEmitter.call(this);
  1276. options = util.extend({
  1277. reliable: false,
  1278. serialization: 'binary'
  1279. }, options);
  1280. // Connection is not open yet.
  1281. this.open = false;
  1282. this.label = options.label;
  1283. this.metadata = options.metadata;
  1284. this.serialization = options.serialization;
  1285. this.peer = peer;
  1286. this._isReliable = options.reliable;
  1287. this._dc = dc;
  1288. if (!!this._dc) {
  1289. this._configureDataChannel();
  1290. }
  1291. };
  1292. util.inherits(DataConnection, EventEmitter);
  1293. DataConnection.prototype._configureDataChannel = function() {
  1294. var self = this;
  1295. if (util.browserisms !== 'Webkit') {
  1296. this._dc.binaryType = 'arraybuffer';
  1297. }
  1298. this._dc.onopen = function() {
  1299. util.log('Data channel connection success');
  1300. self.open = true;
  1301. self.emit('open');
  1302. };
  1303. // Reliable.
  1304. if (this._isReliable) {
  1305. this._reliable = new Reliable(this._dc, util.debug);
  1306. }
  1307. if (this._reliable) {
  1308. this._reliable.onmessage = function(msg) {
  1309. self.emit('data', msg);
  1310. };
  1311. } else {
  1312. this._dc.onmessage = function(e) {
  1313. self._handleDataMessage(e);
  1314. };
  1315. }
  1316. this._dc.onclose = function(e) {
  1317. util.log('DataChannel closed.');
  1318. self.close();
  1319. };
  1320. };
  1321. DataConnection.prototype._cleanup = function() {
  1322. if (!!this._dc && this._dc.readyState !== 'closed') {
  1323. this._dc.close();
  1324. this._dc = null;
  1325. }
  1326. this.open = false;
  1327. this.emit('close');
  1328. };
  1329. // Handles a DataChannel message.
  1330. DataConnection.prototype._handleDataMessage = function(e) {
  1331. var self = this;
  1332. var data = e.data;
  1333. var datatype = data.constructor;
  1334. if (this.serialization === 'binary' || this.serialization === 'binary-utf8') {
  1335. if (datatype === Blob) {
  1336. util.blobToArrayBuffer(data, function(ab) {
  1337. data = util.unpack(ab);
  1338. self.emit('data', data);
  1339. });
  1340. return;
  1341. } else if (datatype === ArrayBuffer) {
  1342. data = util.unpack(data);
  1343. } else if (datatype === String) {
  1344. var ab = util.binaryStringToArrayBuffer(data);
  1345. data = util.unpack(ab);
  1346. }
  1347. } else if (this.serialization === 'json') {
  1348. data = JSON.parse(data);
  1349. }
  1350. this.emit('data', data);
  1351. };
  1352. DataConnection.prototype.addDC = function(dc) {
  1353. this._dc = dc;
  1354. this._configureDataChannel();
  1355. };
  1356. /**
  1357. * Exposed functionality for users.
  1358. */
  1359. /** Allows user to close connection. */
  1360. DataConnection.prototype.close = function() {
  1361. if (!this.open) {
  1362. return;
  1363. }
  1364. this._cleanup();
  1365. };
  1366. /** Allows user to send data. */
  1367. DataConnection.prototype.send = function(data) {
  1368. if (!this.open) {
  1369. this.emit('error', new Error('Connection no longer open.'));
  1370. }
  1371. if (this._reliable) {
  1372. // Note: reliable sending will make it so that you cannot customize
  1373. // serialization.
  1374. this._reliable.send(data);
  1375. return;
  1376. }
  1377. var self = this;
  1378. if (this.serialization === 'none') {
  1379. this._dc.send(data);
  1380. } else if (this.serialization === 'json') {
  1381. this._dc.send(JSON.stringify(data));
  1382. } else {
  1383. var utf8 = (this.serialization === 'binary-utf8');
  1384. var blob = util.pack(data, utf8);
  1385. // DataChannel currently only supports strings.
  1386. if (util.browserisms === 'Webkit') {
  1387. util.blobToBinaryString(blob, function(str){
  1388. self._dc.send(str);
  1389. });
  1390. } else {
  1391. this._dc.send(blob);
  1392. }
  1393. }
  1394. };
  1395. /**
  1396. * Manages DataConnections between its peer and one other peer.
  1397. * Internally, manages PeerConnection.
  1398. */
  1399. function ConnectionManager(id, peer, socket, options) {
  1400. if (!(this instanceof ConnectionManager)) return new ConnectionManager(id, peer, socket, options);
  1401. EventEmitter.call(this);
  1402. options = util.extend({
  1403. config: { 'iceServers': [{ 'url': 'stun:stun.l.google.com:19302' }] }
  1404. }, options);
  1405. this._options = options;
  1406. // PeerConnection is not yet dead.
  1407. this.open = true;
  1408. this.id = id;
  1409. this.peer = peer;
  1410. this.pc = null;
  1411. // Mapping labels to metadata and serialization.
  1412. // label => { metadata: ..., serialization: ..., reliable: ...}
  1413. this.labels = {};
  1414. // A default label in the event that none are passed in.
  1415. this._default = 0;
  1416. // DataConnections on this PC.
  1417. this.connections = {};
  1418. this._queued = [];
  1419. this._socket = socket;
  1420. if (!!this.id) {
  1421. this.initialize();
  1422. }
  1423. };
  1424. util.inherits(ConnectionManager, EventEmitter);
  1425. ConnectionManager.prototype.initialize = function(id, socket) {
  1426. if (!!id) {
  1427. this.id = id;
  1428. }
  1429. if (!!socket) {
  1430. this._socket = socket;
  1431. }
  1432. // Set up PeerConnection.
  1433. this._startPeerConnection();
  1434. // Process queued DCs.
  1435. this._processQueue();
  1436. // Listen for ICE candidates.
  1437. this._setupIce();
  1438. // Listen for negotiation needed.
  1439. // Chrome only **
  1440. this._setupNegotiationHandler();
  1441. // Listen for data channel.
  1442. this._setupDataChannel();
  1443. this.initialize = function() { };
  1444. };
  1445. /** Start a PC. */
  1446. ConnectionManager.prototype._startPeerConnection = function() {
  1447. util.log('Creating RTCPeerConnection');
  1448. this.pc = new RTCPeerConnection(this._options.config, { optional: [ { RtpDataChannels: true } ]});
  1449. };
  1450. /** Add DataChannels to all queued DataConnections. */
  1451. ConnectionManager.prototype._processQueue = function() {
  1452. var conn = this._queued.pop();
  1453. if (!!conn) {
  1454. conn.addDC(this.pc.createDataChannel(conn.label, { reliable: false }));
  1455. }
  1456. };
  1457. /** Set up ICE candidate handlers. */
  1458. ConnectionManager.prototype._setupIce = function() {
  1459. util.log('Listening for ICE candidates.');
  1460. var self = this;
  1461. this.pc.onicecandidate = function(evt) {
  1462. if (evt.candidate) {
  1463. util.log('Received ICE candidates.');
  1464. self._socket.send({
  1465. type: 'CANDIDATE',
  1466. payload: {
  1467. candidate: evt.candidate
  1468. },
  1469. dst: self.peer
  1470. });
  1471. }
  1472. };
  1473. };
  1474. /** Set up onnegotiationneeded. */
  1475. ConnectionManager.prototype._setupNegotiationHandler = function() {
  1476. var self = this;
  1477. util.log('Listening for `negotiationneeded`');
  1478. this.pc.onnegotiationneeded = function() {
  1479. util.log('`negotiationneeded` triggered');
  1480. self._makeOffer();
  1481. };
  1482. };
  1483. /** Set up Data Channel listener. */
  1484. ConnectionManager.prototype._setupDataChannel = function() {
  1485. var self = this;
  1486. util.log('Listening for data channel');
  1487. this.pc.ondatachannel = function(evt) {
  1488. util.log('Received data channel');
  1489. var dc = evt.channel;
  1490. var label = dc.label;
  1491. // This should not be empty.
  1492. var options = self.labels[label] || {};
  1493. var connection = new DataConnection(self.peer, dc, options);
  1494. self._attachConnectionListeners(connection);
  1495. self.connections[label] = connection;
  1496. self.emit('connection', connection);
  1497. };
  1498. };
  1499. /** Send an offer. */
  1500. ConnectionManager.prototype._makeOffer = function() {
  1501. var self = this;
  1502. this.pc.createOffer(function(offer) {
  1503. util.log('Created offer.');
  1504. self.pc.setLocalDescription(offer, function() {
  1505. util.log('Set localDescription to offer');
  1506. self._socket.send({
  1507. type: 'OFFER',
  1508. payload: {
  1509. sdp: offer,
  1510. config: self._options.config,
  1511. labels: self.labels
  1512. },
  1513. dst: self.peer
  1514. });
  1515. // We can now reset labels because all info has been communicated.
  1516. self.labels = {};
  1517. }, function(err) {
  1518. self.emit('error', err);
  1519. util.log('Failed to setLocalDescription, ', err);
  1520. });
  1521. });
  1522. };
  1523. /** Create an answer for PC. */
  1524. ConnectionManager.prototype._makeAnswer = function() {
  1525. var self = this;
  1526. this.pc.createAnswer(function(answer) {
  1527. util.log('Created answer.');
  1528. self.pc.setLocalDescription(answer, function() {
  1529. util.log('Set localDescription to answer.');
  1530. self._socket.send({
  1531. type: 'ANSWER',
  1532. payload: {
  1533. sdp: answer
  1534. },
  1535. dst: self.peer
  1536. });
  1537. }, function(err) {
  1538. self.emit('error', err);
  1539. util.log('Failed to setLocalDescription, ', err);
  1540. });
  1541. }, function(err) {
  1542. self.emit('error', err);
  1543. util.log('Failed to create answer, ', err);
  1544. });
  1545. };
  1546. /** Clean up PC, close related DCs. */
  1547. ConnectionManager.prototype._cleanup = function() {
  1548. util.log('Cleanup ConnectionManager for ' + this.peer);
  1549. if (!!this.pc && this.pc.readyState !== 'closed') {
  1550. this.pc.close();
  1551. this.pc = null;
  1552. }
  1553. var self = this;
  1554. this._socket.send({
  1555. type: 'LEAVE',
  1556. dst: self.peer
  1557. });
  1558. this.open = false;
  1559. this.emit('close');
  1560. };
  1561. /** Attach connection listeners. */
  1562. ConnectionManager.prototype._attachConnectionListeners = function(connection) {
  1563. var self = this;
  1564. connection.on('close', function() {
  1565. if (!!self.connections[connection.label]) {
  1566. delete self.connections[connection.label];
  1567. }
  1568. if (!Object.keys(self.connections).length) {
  1569. self._cleanup();
  1570. }
  1571. });
  1572. connection.on('open', function() {
  1573. self._lock = false;
  1574. self._processQueue();
  1575. });
  1576. };
  1577. /** Handle an SDP. */
  1578. ConnectionManager.prototype.handleSDP = function(sdp, type) {
  1579. sdp = new RTCSessionDescription(sdp);
  1580. var self = this;
  1581. this.pc.setRemoteDescription(sdp, function() {
  1582. util.log('Set remoteDescription: ' + type);
  1583. if (type === 'OFFER') {
  1584. self._makeAnswer();
  1585. }
  1586. }, function(err) {
  1587. self.emit('error', err);
  1588. util.log('Failed to setRemoteDescription, ', err);
  1589. });
  1590. };
  1591. /** Handle a candidate. */
  1592. ConnectionManager.prototype.handleCandidate = function(message) {
  1593. var candidate = new RTCIceCandidate(message.candidate);
  1594. this.pc.addIceCandidate(candidate);
  1595. util.log('Added ICE candidate.');
  1596. };
  1597. /** Handle peer leaving. */
  1598. ConnectionManager.prototype.handleLeave = function() {
  1599. util.log('Peer ' + this.peer + ' disconnected.');
  1600. this.close();
  1601. };
  1602. /** Closes manager and all related connections. */
  1603. ConnectionManager.prototype.close = function() {
  1604. if (!this.open) {
  1605. this.emit('error', new Error('Connections to ' + this.peer + 'are already closed.'));
  1606. return;
  1607. }
  1608. var labels = Object.keys(this.connections);
  1609. for (var i = 0, ii = labels.length; i < ii; i += 1) {
  1610. var label = labels[i];
  1611. var connection = this.connections[label];
  1612. connection.close();
  1613. }
  1614. this.connections = null;
  1615. this._cleanup();
  1616. };
  1617. /** Create and returns a DataConnection with the peer with the given label. */
  1618. ConnectionManager.prototype.connect = function(options) {
  1619. if (!this.open) {
  1620. return;
  1621. }
  1622. options = util.extend({
  1623. label: 'peerjs'
  1624. }, options);
  1625. // Check if label is taken...if so, generate a new label randomly.
  1626. while (!!this.connections[options.label]) {
  1627. options.label = 'peerjs' + this._default;
  1628. this._default += 1;
  1629. }
  1630. this.labels[options.label] = options;
  1631. var dc;
  1632. if (!!this.pc && !this._lock) {
  1633. dc = this.pc.createDataChannel(options.label, { reliable: false });
  1634. }
  1635. var connection = new DataConnection(this.peer, dc, options);
  1636. this._attachConnectionListeners(connection);
  1637. this.connections[options.label] = connection;
  1638. if (!this.pc || this._lock) {
  1639. this._queued.push(connection);
  1640. }
  1641. this._lock = true
  1642. return [options.label, connection];
  1643. };
  1644. /** Updates label:[serialization, reliable, metadata] pairs from offer. */
  1645. ConnectionManager.prototype.update = function(updates) {
  1646. var labels = Object.keys(updates);
  1647. for (var i = 0, ii = labels.length; i < ii; i += 1) {
  1648. var label = labels[i];
  1649. this.labels[label] = updates[label];
  1650. }
  1651. };
  1652. /**
  1653. * An abstraction on top of WebSockets and XHR streaming to provide fastest
  1654. * possible connection for peers.
  1655. */
  1656. function Socket(host, port, key, id) {
  1657. if (!(this instanceof Socket)) return new Socket(host, port, key, id);
  1658. EventEmitter.call(this);
  1659. this._id = id;
  1660. var token = util.randomToken();
  1661. this._httpUrl = 'http://' + host + ':' + port + '/' + key + '/' + id + '/' + token;
  1662. this._wsUrl = 'ws://' + host + ':' + port + '/peerjs?key='+key+'&id='+id+'&token='+token;
  1663. };
  1664. util.inherits(Socket, EventEmitter);
  1665. /** Check in with ID or get one from server. */
  1666. Socket.prototype.start = function() {
  1667. this._startXhrStream();
  1668. this._startWebSocket();
  1669. };
  1670. /** Start up websocket communications. */
  1671. Socket.prototype._startWebSocket = function() {
  1672. var self = this;
  1673. if (!!this._socket) {
  1674. return;
  1675. }
  1676. this._socket = new WebSocket(this._wsUrl);
  1677. this._socket.onmessage = function(event) {
  1678. var data;
  1679. try {
  1680. data = JSON.parse(event.data);
  1681. } catch(e) {
  1682. util.log('Invalid server message', event.data);
  1683. return;
  1684. }
  1685. self.emit('message', data);
  1686. };
  1687. // Take care of the queue of connections if necessary and make sure Peer knows
  1688. // socket is open.
  1689. this._socket.onopen = function() {
  1690. if (!!self._timeout) {
  1691. clearTimeout(self._timeout);
  1692. setTimeout(function(){
  1693. self._http.abort();
  1694. self._http = null;
  1695. }, 5000);
  1696. }
  1697. util.log('Socket open');
  1698. };
  1699. };
  1700. /** Start XHR streaming. */
  1701. Socket.prototype._startXhrStream = function(n) {
  1702. try {
  1703. var self = this;
  1704. this._http = new XMLHttpRequest();
  1705. this._http._index = 1;
  1706. this._http._streamIndex = n || 0;
  1707. this._http.open('post', this._httpUrl + '/id?i=' + this._http._streamIndex, true);
  1708. this._http.onreadystatechange = function() {
  1709. if (this.readyState == 2 && !!this.old) {
  1710. this.old.abort();
  1711. delete this.old;
  1712. }
  1713. if (this.readyState > 2 && this.status == 200 && !!this.responseText) {
  1714. self._handleStream(this);
  1715. }
  1716. };
  1717. this._http.send(null);
  1718. this._setHTTPTimeout();
  1719. } catch(e) {
  1720. util.log('XMLHttpRequest not available; defaulting to WebSockets');
  1721. }
  1722. };
  1723. /** Handles onreadystatechange response as a stream. */
  1724. Socket.prototype._handleStream = function(http) {
  1725. // 3 and 4 are loading/done state. All others are not relevant.
  1726. var messages = http.responseText.split('\n');
  1727. // Check to see if anything needs to be processed on buffer.
  1728. if (!!http._buffer) {
  1729. while (http._buffer.length > 0) {
  1730. var index = http._buffer.shift();
  1731. var bufferedMessage = messages[index];
  1732. try {
  1733. bufferedMessage = JSON.parse(bufferedMessage);
  1734. } catch(e) {
  1735. http._buffer.shift(index);
  1736. break;
  1737. }
  1738. this.emit('message', bufferedMessage);
  1739. }
  1740. }
  1741. var message = messages[http._index];
  1742. if (!!message) {
  1743. http._index += 1;
  1744. // Buffering--this message is incomplete and we'll get to it next time.
  1745. // This checks if the httpResponse ended in a `\n`, in which case the last
  1746. // element of messages should be the empty string.
  1747. if (http._index === messages.length) {
  1748. if (!http._buffer) {
  1749. http._buffer = [];
  1750. }
  1751. http._buffer.push(http._index - 1);
  1752. } else {
  1753. try {
  1754. message = JSON.parse(message);
  1755. } catch(e) {
  1756. util.log('Invalid server message', message);
  1757. return;
  1758. }
  1759. this.emit('message', message);
  1760. }
  1761. }
  1762. };
  1763. Socket.prototype._setHTTPTimeout = function() {
  1764. var self = this;
  1765. this._timeout = setTimeout(function() {
  1766. var old = self._http;
  1767. if (!self._wsOpen()) {
  1768. self._startXhrStream(old._streamIndex + 1);
  1769. self._http.old = old;
  1770. } else {
  1771. old.abort();
  1772. }
  1773. }, 25000);
  1774. };
  1775. /** Exposed send for DC & Peer. */
  1776. Socket.prototype.send = function(data) {
  1777. if (!data.type) {
  1778. this.emit('error', 'Invalid message');
  1779. return;
  1780. }
  1781. var message = JSON.stringify(data);
  1782. if (this._wsOpen()) {
  1783. this._socket.send(message);
  1784. } else {
  1785. var http = new XMLHttpRequest();
  1786. var url = this._httpUrl + '/' + data.type.toLowerCase();
  1787. http.open('post', url, true);
  1788. http.setRequestHeader('Content-Type', 'application/json');
  1789. http.send(message);
  1790. }
  1791. };
  1792. Socket.prototype.close = function() {
  1793. if (!!this._wsOpen()) {
  1794. this._socket.close();
  1795. }
  1796. };
  1797. Socket.prototype._wsOpen = function() {
  1798. return !!this._socket && this._socket.readyState == 1;
  1799. };
  1800. })(this);