peer.js 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358
  1. /*! peerjs.js build:0.2.8, 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. noop: function() {},
  647. // Logging logic
  648. logLevel: 0,
  649. setLogLevel: function(level) {
  650. if (level = parseInt(level, 10)) {
  651. util.logLevel = level;
  652. } else {
  653. // If they are using truthy/falsy values for debug
  654. util.logLevel = (!!level) ? 3 : 0;
  655. }
  656. util.log = util.warn = util.error = util.noop;
  657. if (util.logLevel > 0) {
  658. util.error = util._printWith('ERROR');
  659. }
  660. if (util.logLevel > 1) {
  661. util.warn = util._printWith('WARNING');
  662. }
  663. if (util.logLevel > 2) {
  664. util.log = util._print;
  665. }
  666. },
  667. setLogFunction: function(fn) {
  668. if (fn.constructor !== Function) {
  669. util.warn('The log function you passed in is not a function. Defaulting to regular logs.');
  670. } else {
  671. util._print = fn;
  672. }
  673. },
  674. _printWith: function(prefix) {
  675. return function() {
  676. var copy = Array.prototype.slice.call(arguments);
  677. copy.unshift(prefix);
  678. util._print.apply(util, copy);
  679. };
  680. },
  681. _print: function () {
  682. var err = false;
  683. var copy = Array.prototype.slice.call(arguments);
  684. copy.unshift('PeerJS: ');
  685. for (var i = 0, l = copy.length; i < l; i++){
  686. if (copy[i] instanceof Error) {
  687. copy[i] = '(' + copy[i].name + ') ' + copy[i].message;
  688. err = true;
  689. }
  690. }
  691. err ? console.error.apply(console, copy) : console.log.apply(console, copy);
  692. },
  693. //
  694. // Lists which features are supported
  695. // Temporarily set everything to true
  696. supports: (function(){
  697. return {
  698. audioVideo: true,
  699. data: true,
  700. binary: false,
  701. reliable: false,
  702. onnegotiationneeded: true
  703. };
  704. }()),
  705. //
  706. // Ensure alphanumeric ids
  707. validateId: function(id) {
  708. // Allow empty ids
  709. return !id || /^[A-Za-z0-9]+(?:[ _-][A-Za-z0-9]+)*$/.exec(id);
  710. },
  711. validateKey: function(key) {
  712. // Allow empty keys
  713. return !key || /^[A-Za-z0-9]+(?:[ _-][A-Za-z0-9]+)*$/.exec(key);
  714. },
  715. // OLD
  716. chromeCompatible: true,
  717. firefoxCompatible: true,
  718. chromeVersion: 26,
  719. firefoxVersion: 22,
  720. debug: false,
  721. browserisms: '',
  722. inherits: function(ctor, superCtor) {
  723. ctor.super_ = superCtor;
  724. ctor.prototype = Object.create(superCtor.prototype, {
  725. constructor: {
  726. value: ctor,
  727. enumerable: false,
  728. writable: true,
  729. configurable: true
  730. }
  731. });
  732. },
  733. extend: function(dest, source) {
  734. for(var key in source) {
  735. if(source.hasOwnProperty(key)) {
  736. dest[key] = source[key];
  737. }
  738. }
  739. return dest;
  740. },
  741. pack: BinaryPack.pack,
  742. unpack: BinaryPack.unpack,
  743. log: function () {
  744. if (util.debug) {
  745. var err = false;
  746. var copy = Array.prototype.slice.call(arguments);
  747. copy.unshift('PeerJS: ');
  748. for (var i = 0, l = copy.length; i < l; i++){
  749. if (copy[i] instanceof Error) {
  750. copy[i] = '(' + copy[i].name + ') ' + copy[i].message;
  751. err = true;
  752. }
  753. }
  754. err ? console.error.apply(console, copy) : console.log.apply(console, copy);
  755. }
  756. },
  757. setZeroTimeout: (function(global) {
  758. var timeouts = [];
  759. var messageName = 'zero-timeout-message';
  760. // Like setTimeout, but only takes a function argument. There's
  761. // no time argument (always zero) and no arguments (you have to
  762. // use a closure).
  763. function setZeroTimeoutPostMessage(fn) {
  764. timeouts.push(fn);
  765. global.postMessage(messageName, '*');
  766. }
  767. function handleMessage(event) {
  768. if (event.source == global && event.data == messageName) {
  769. if (event.stopPropagation) {
  770. event.stopPropagation();
  771. }
  772. if (timeouts.length) {
  773. timeouts.shift()();
  774. }
  775. }
  776. }
  777. if (global.addEventListener) {
  778. global.addEventListener('message', handleMessage, true);
  779. } else if (global.attachEvent) {
  780. global.attachEvent('onmessage', handleMessage);
  781. }
  782. return setZeroTimeoutPostMessage;
  783. }(this)),
  784. // Binary stuff
  785. blobToArrayBuffer: function(blob, cb){
  786. var fr = new FileReader();
  787. fr.onload = function(evt) {
  788. cb(evt.target.result);
  789. };
  790. fr.readAsArrayBuffer(blob);
  791. },
  792. blobToBinaryString: function(blob, cb){
  793. var fr = new FileReader();
  794. fr.onload = function(evt) {
  795. cb(evt.target.result);
  796. };
  797. fr.readAsBinaryString(blob);
  798. },
  799. binaryStringToArrayBuffer: function(binary) {
  800. var byteArray = new Uint8Array(binary.length);
  801. for (var i = 0; i < binary.length; i++) {
  802. byteArray[i] = binary.charCodeAt(i) & 0xff;
  803. }
  804. return byteArray.buffer;
  805. },
  806. randomToken: function () {
  807. return Math.random().toString(36).substr(2);
  808. },
  809. //
  810. // When we have proper version/feature mappings we can remove this
  811. isBrowserCompatible: function() {
  812. var c, f;
  813. if (this.chromeCompatible) {
  814. if ((c = navigator.userAgent.split('Chrome/')) && c.length > 1) {
  815. // Get version #.
  816. var v = c[1].split('.')[0];
  817. return parseInt(v) >= this.chromeVersion;
  818. }
  819. }
  820. if (this.firefoxCompatible) {
  821. if ((f = navigator.userAgent.split('Firefox/')) && f.length > 1) {
  822. // Get version #.
  823. var v = f[1].split('.')[0];
  824. return parseInt(v) >= this.firefoxVersion;
  825. }
  826. }
  827. return false;
  828. },
  829. isSecure: function() {
  830. return location.protocol === 'https:';
  831. }
  832. };
  833. /**
  834. * Reliable transfer for Chrome Canary DataChannel impl.
  835. * Author: @michellebu
  836. */
  837. function Reliable(dc, debug) {
  838. if (!(this instanceof Reliable)) return new Reliable(dc);
  839. this._dc = dc;
  840. util.debug = debug;
  841. // Messages sent/received so far.
  842. // id: { ack: n, chunks: [...] }
  843. this._outgoing = {};
  844. // id: { ack: ['ack', id, n], chunks: [...] }
  845. this._incoming = {};
  846. this._received = {};
  847. // Window size.
  848. this._window = 1000;
  849. // MTU.
  850. this._mtu = 500;
  851. // Interval for setInterval. In ms.
  852. this._interval = 0;
  853. // Messages sent.
  854. this._count = 0;
  855. // Outgoing message queue.
  856. this._queue = [];
  857. this._setupDC();
  858. };
  859. // Send a message reliably.
  860. Reliable.prototype.send = function(msg) {
  861. // Determine if chunking is necessary.
  862. var bl = util.pack(msg);
  863. if (bl.size < this._mtu) {
  864. this._handleSend(['no', bl]);
  865. return;
  866. }
  867. this._outgoing[this._count] = {
  868. ack: 0,
  869. chunks: this._chunk(bl)
  870. };
  871. if (util.debug) {
  872. this._outgoing[this._count].timer = new Date();
  873. }
  874. // Send prelim window.
  875. this._sendWindowedChunks(this._count);
  876. this._count += 1;
  877. };
  878. // Set up interval for processing queue.
  879. Reliable.prototype._setupInterval = function() {
  880. // TODO: fail gracefully.
  881. var self = this;
  882. this._timeout = setInterval(function() {
  883. // FIXME: String stuff makes things terribly async.
  884. var msg = self._queue.shift();
  885. if (msg._multiple) {
  886. for (var i = 0, ii = msg.length; i < ii; i += 1) {
  887. self._intervalSend(msg[i]);
  888. }
  889. } else {
  890. self._intervalSend(msg);
  891. }
  892. }, this._interval);
  893. };
  894. Reliable.prototype._intervalSend = function(msg) {
  895. var self = this;
  896. msg = util.pack(msg);
  897. util.blobToBinaryString(msg, function(str) {
  898. self._dc.send(str);
  899. });
  900. if (self._queue.length === 0) {
  901. clearTimeout(self._timeout);
  902. self._timeout = null;
  903. //self._processAcks();
  904. }
  905. };
  906. // Go through ACKs to send missing pieces.
  907. Reliable.prototype._processAcks = function() {
  908. for (var id in this._outgoing) {
  909. if (this._outgoing.hasOwnProperty(id)) {
  910. this._sendWindowedChunks(id);
  911. }
  912. }
  913. };
  914. // Handle sending a message.
  915. // FIXME: Don't wait for interval time for all messages...
  916. Reliable.prototype._handleSend = function(msg) {
  917. var push = true;
  918. for (var i = 0, ii = this._queue.length; i < ii; i += 1) {
  919. var item = this._queue[i];
  920. if (item === msg) {
  921. push = false;
  922. } else if (item._multiple && item.indexOf(msg) !== -1) {
  923. push = false;
  924. }
  925. }
  926. if (push) {
  927. this._queue.push(msg);
  928. if (!this._timeout) {
  929. this._setupInterval();
  930. }
  931. }
  932. };
  933. // Set up DataChannel handlers.
  934. Reliable.prototype._setupDC = function() {
  935. // Handle various message types.
  936. var self = this;
  937. this._dc.onmessage = function(e) {
  938. var msg = e.data;
  939. var datatype = msg.constructor;
  940. // FIXME: msg is String until binary is supported.
  941. // Once that happens, this will have to be smarter.
  942. if (datatype === String) {
  943. var ab = util.binaryStringToArrayBuffer(msg);
  944. msg = util.unpack(ab);
  945. self._handleMessage(msg);
  946. }
  947. };
  948. };
  949. // Handles an incoming message.
  950. Reliable.prototype._handleMessage = function(msg) {
  951. var id = msg[1];
  952. var idata = this._incoming[id];
  953. var odata = this._outgoing[id];
  954. var data;
  955. switch (msg[0]) {
  956. // No chunking was done.
  957. case 'no':
  958. var message = id;
  959. if (!!message) {
  960. this.onmessage(util.unpack(message));
  961. }
  962. break;
  963. // Reached the end of the message.
  964. case 'end':
  965. data = idata;
  966. // In case end comes first.
  967. this._received[id] = msg[2];
  968. if (!data) {
  969. break;
  970. }
  971. this._ack(id);
  972. break;
  973. case 'ack':
  974. data = odata;
  975. if (!!data) {
  976. var ack = msg[2];
  977. // Take the larger ACK, for out of order messages.
  978. data.ack = Math.max(ack, data.ack);
  979. // Clean up when all chunks are ACKed.
  980. if (data.ack >= data.chunks.length) {
  981. util.log('Time: ', new Date() - data.timer);
  982. delete this._outgoing[id];
  983. } else {
  984. this._processAcks();
  985. }
  986. }
  987. // If !data, just ignore.
  988. break;
  989. // Received a chunk of data.
  990. case 'chunk':
  991. // Create a new entry if none exists.
  992. data = idata;
  993. if (!data) {
  994. var end = this._received[id];
  995. if (end === true) {
  996. break;
  997. }
  998. data = {
  999. ack: ['ack', id, 0],
  1000. chunks: []
  1001. };
  1002. this._incoming[id] = data;
  1003. }
  1004. var n = msg[2];
  1005. var chunk = msg[3];
  1006. data.chunks[n] = new Uint8Array(chunk);
  1007. // If we get the chunk we're looking for, ACK for next missing.
  1008. // Otherwise, ACK the same N again.
  1009. if (n === data.ack[2]) {
  1010. this._calculateNextAck(id);
  1011. }
  1012. this._ack(id);
  1013. break;
  1014. default:
  1015. // Shouldn't happen, but would make sense for message to just go
  1016. // through as is.
  1017. this._handleSend(msg);
  1018. break;
  1019. }
  1020. };
  1021. // Chunks BL into smaller messages.
  1022. Reliable.prototype._chunk = function(bl) {
  1023. var chunks = [];
  1024. var size = bl.size;
  1025. var start = 0;
  1026. while (start < size) {
  1027. var end = Math.min(size, start + this._mtu);
  1028. var b = bl.slice(start, end);
  1029. var chunk = {
  1030. payload: b
  1031. }
  1032. chunks.push(chunk);
  1033. start = end;
  1034. }
  1035. util.log('Created', chunks.length, 'chunks.');
  1036. return chunks;
  1037. };
  1038. // Sends ACK N, expecting Nth blob chunk for message ID.
  1039. Reliable.prototype._ack = function(id) {
  1040. var ack = this._incoming[id].ack;
  1041. // if ack is the end value, then call _complete.
  1042. if (this._received[id] === ack[2]) {
  1043. this._complete(id);
  1044. this._received[id] = true;
  1045. }
  1046. this._handleSend(ack);
  1047. };
  1048. // Calculates the next ACK number, given chunks.
  1049. Reliable.prototype._calculateNextAck = function(id) {
  1050. var data = this._incoming[id];
  1051. var chunks = data.chunks;
  1052. for (var i = 0, ii = chunks.length; i < ii; i += 1) {
  1053. // This chunk is missing!!! Better ACK for it.
  1054. if (chunks[i] === undefined) {
  1055. data.ack[2] = i;
  1056. return;
  1057. }
  1058. }
  1059. data.ack[2] = chunks.length;
  1060. };
  1061. // Sends the next window of chunks.
  1062. Reliable.prototype._sendWindowedChunks = function(id) {
  1063. util.log('sendWindowedChunks for: ', id);
  1064. var data = this._outgoing[id];
  1065. var ch = data.chunks;
  1066. var chunks = [];
  1067. var limit = Math.min(data.ack + this._window, ch.length);
  1068. for (var i = data.ack; i < limit; i += 1) {
  1069. if (!ch[i].sent || i === data.ack) {
  1070. ch[i].sent = true;
  1071. chunks.push(['chunk', id, i, ch[i].payload]);
  1072. }
  1073. }
  1074. if (data.ack + this._window >= ch.length) {
  1075. chunks.push(['end', id, ch.length])
  1076. }
  1077. chunks._multiple = true;
  1078. this._handleSend(chunks);
  1079. };
  1080. // Puts together a message from chunks.
  1081. Reliable.prototype._complete = function(id) {
  1082. util.log('Completed called for', id);
  1083. var self = this;
  1084. var chunks = this._incoming[id].chunks;
  1085. var bl = new Blob(chunks);
  1086. util.blobToArrayBuffer(bl, function(ab) {
  1087. self.onmessage(util.unpack(ab));
  1088. });
  1089. delete this._incoming[id];
  1090. };
  1091. // Ups bandwidth limit on SDP. Meant to be called during offer/answer.
  1092. Reliable.higherBandwidthSDP = function(sdp) {
  1093. // AS stands for Application-Specific Maximum.
  1094. // Bandwidth number is in kilobits / sec.
  1095. // See RFC for more info: http://www.ietf.org/rfc/rfc2327.txt
  1096. var parts = sdp.split('b=AS:30');
  1097. var replace = 'b=AS:102400'; // 100 Mbps
  1098. return parts[0] + replace + parts[1];
  1099. };
  1100. // Overwritten, typically.
  1101. Reliable.prototype.onmessage = function(msg) {};
  1102. exports.Reliable = Reliable;
  1103. if (window.mozRTCPeerConnection) {
  1104. util.browserisms = 'Firefox';
  1105. } else if (window.webkitRTCPeerConnection) {
  1106. util.browserisms = 'Webkit';
  1107. } else {
  1108. util.browserisms = 'Unknown';
  1109. }
  1110. exports.RTCSessionDescription = window.mozRTCSessionDescription || window.RTCSessionDescription;
  1111. exports.RTCPeerConnection = window.mozRTCPeerConnection || window.webkitRTCPeerConnection || window.RTCPeerConnection;
  1112. /**
  1113. * A peer who can initiate connections with other peers.
  1114. */
  1115. function Peer(id, options) {
  1116. if (!(this instanceof Peer)) return new Peer(id, options);
  1117. EventEmitter.call(this);
  1118. // Deal with overloading
  1119. if (id && id.constructor == Object) {
  1120. options = id;
  1121. id = undefined;
  1122. } else if (id) {
  1123. // Ensure id is a string
  1124. id = id.toString();
  1125. }
  1126. //
  1127. // Configurize options
  1128. options = util.extend({
  1129. debug: 0, // 1: Errors, 2: Warnings, 3: All logs
  1130. host: '0.peerjs.com',
  1131. port: 9000,
  1132. key: 'peerjs',
  1133. config: { 'iceServers': [{ 'url': 'stun:stun.l.google.com:19302' }] }
  1134. }, options);
  1135. this.options = options;
  1136. // Detect relative URL host.
  1137. if (options.host === '/') {
  1138. options.host = window.location.hostname;
  1139. }
  1140. // Set whether we use SSL to same as current host
  1141. if (options.secure === undefined) {
  1142. options.secure = util.isSecure();
  1143. }
  1144. // TODO: document this feature
  1145. // Set a custom log function if present
  1146. if (options.logFunction) {
  1147. util.setLogFunction(options.logFunction);
  1148. }
  1149. util.setLogLevel(options.debug);
  1150. //
  1151. // Sanity checks
  1152. // Ensure WebRTC supported
  1153. if (!util.supports.audioVideo && !util.supports.data ) {
  1154. this._delayedAbort('browser-incompatible', 'The current browser does not support WebRTC');
  1155. return;
  1156. }
  1157. // Ensure alphanumeric id
  1158. if (!util.validateId(id)) {
  1159. this._delayedAbort('invalid-id', 'ID "' + id + '" is invalid');
  1160. return;
  1161. }
  1162. // Ensure valid key
  1163. if (!util.validateKey(options.key)) {
  1164. this._delayedAbort('invalid-key', 'API KEY "' + options.key + '" is invalid');
  1165. return;
  1166. }
  1167. // Ensure not using unsecure cloud server on SSL page
  1168. if (options.secure && options.host === '0.peerjs.com') {
  1169. this._delayedAbort('ssl-unavailable',
  1170. 'The cloud server currently does not support HTTPS. Please run your own PeerServer to use HTTPS.');
  1171. return;
  1172. }
  1173. //
  1174. // States.
  1175. this.destroyed = false; // Connections have been killed
  1176. this.disconnected = false; // Connection to PeerServer killed manually but P2P connections still active
  1177. this.open = false; // Sockets and such are not yet open.
  1178. //
  1179. // References
  1180. this.connections = {}; // DataConnections for this peer.
  1181. this._lostMessages = {}; // src => [list of messages]
  1182. //
  1183. // Initialize the 'socket' (which is actually a mix of XHR streaming and
  1184. // websockets.)
  1185. var self = this;
  1186. this.socket = new Socket(this.options.secure, this.options.host, this.options.port, this.options.key);
  1187. this.socket.on('message', function(data) {
  1188. self._handleMessage(data);
  1189. });
  1190. this.socket.on('error', function(error) {
  1191. self._abort('socket-error', error);
  1192. });
  1193. this.socket.on('close', function() {
  1194. if (!self.disconnected) { // If we haven't explicitly disconnected, emit error.
  1195. self._abort('socket-closed', 'Underlying socket is already closed.');
  1196. }
  1197. });
  1198. //
  1199. // Start the connections
  1200. if (id) {
  1201. this._initialize(id);
  1202. } else {
  1203. this._retrieveId();
  1204. }
  1205. //
  1206. };
  1207. util.inherits(Peer, EventEmitter);
  1208. /** Get a unique ID from the server via XHR. */
  1209. Peer.prototype._retrieveId = function(cb) {
  1210. var self = this;
  1211. var http = new XMLHttpRequest();
  1212. // TODO: apparently using ://something.com gives relative protocol?
  1213. var protocol = this.options.secure ? 'https://' : 'http://';
  1214. var url = protocol + this.options.host + ':' + this.options.port + '/' + this.options.key + '/id';
  1215. var queryString = '?ts=' + new Date().getTime() + '' + Math.random();
  1216. url += queryString;
  1217. // If there's no ID we need to wait for one before trying to init socket.
  1218. http.open('get', url, true);
  1219. http.onerror = function(e) {
  1220. util.error('Error retrieving ID', e);
  1221. self._abort('server-error', 'Could not get an ID from the server');
  1222. }
  1223. http.onreadystatechange = function() {
  1224. if (http.readyState !== 4) {
  1225. return;
  1226. }
  1227. if (http.status !== 200) {
  1228. http.onerror();
  1229. return;
  1230. }
  1231. self._initialize(http.responseText);
  1232. };
  1233. http.send(null);
  1234. };
  1235. /** Initialize a connection with the server. */
  1236. Peer.prototype._initialize = function(id) {
  1237. var self = this;
  1238. this.id = id;
  1239. this.socket.start(this.id);
  1240. }
  1241. /** Handles messages from the server. */
  1242. Peer.prototype._handleMessage = function(message) {
  1243. var type = message.type;
  1244. var payload = message.payload;
  1245. var peer = message.src;
  1246. switch (type) {
  1247. case 'OPEN': // The connection to the server is open.
  1248. this.emit('open', this.id);
  1249. this.open = true;
  1250. break;
  1251. case 'ERROR': // Server error.
  1252. this._abort('server-error', payload.msg);
  1253. break;
  1254. case 'ID-TAKEN': // The selected ID is taken.
  1255. this._abort('unavailable-id', 'ID `' + this.id + '` is taken');
  1256. break;
  1257. case 'INVALID-KEY': // The given API key cannot be found.
  1258. this._abort('invalid-key', 'API KEY "' + this._key + '" is invalid');
  1259. break;
  1260. //
  1261. case 'LEAVE': // Another peer has closed its connection to this peer.
  1262. this._cleanupPeer(peer);
  1263. break;
  1264. case 'EXPIRE': // The offer sent to a peer has expired without response.
  1265. // TODO: should this be on the DataConnection? It's currently here but I'm not so sure it belongs.
  1266. this.emit('error', new Error('Could not connect to peer ' + peer));
  1267. break;
  1268. case 'OFFER': // we should consider switching this to CALL/CONNECT, but this is the least breaking option.
  1269. var connectionId = payload.connectionId;
  1270. var connection = this.getConnection(peer, connectionId);
  1271. if (connection) {
  1272. util.warn('Offer received for existing Connection ID:', connectionId);
  1273. //connection.handleMessage(message);
  1274. } else {
  1275. // Create a new connection.
  1276. if (payload.type === 'call') {
  1277. var connection = new MediaConnection(peer, this, {
  1278. connectionId: connectionId,
  1279. _payload: payload,
  1280. metadata: payload.metadata,
  1281. });
  1282. this._addConnection(peer, connection);
  1283. this.emit('call', connection);
  1284. } else if (payload.type === 'data') {
  1285. connection = new DataConnection(peer, this, {
  1286. connectionId: connectionId,
  1287. _payload: payload,
  1288. metadata: payload.metadata,
  1289. label: payload.label,
  1290. serialization: payload.serialization,
  1291. reliable: payload.reliable
  1292. });
  1293. this._addConnection(peer, connection);
  1294. this.emit('connection', connection);
  1295. } else {
  1296. util.warn('Received malformed connection type:', payload.type);
  1297. return;
  1298. }
  1299. // Find messages.
  1300. var messages = this._lostMessages[connection.id];
  1301. if (messages) {
  1302. for (var i = 0, ii = messages.length; i < ii; i += 1) {
  1303. connection.handleMessage(messages[i]);
  1304. }
  1305. delete this._lostMessages[connection.id];
  1306. }
  1307. }
  1308. break;
  1309. default:
  1310. // TODO: if out of order, must queue.
  1311. if (!payload) {
  1312. util.warn('You received a malformed message from ' + peer + ' of type ' + type);
  1313. return;
  1314. }
  1315. var id = payload.connectionId;
  1316. var connection = this.getConnection(peer, id);
  1317. if (connection) {
  1318. // Pass it on.
  1319. connection.handleMessage(message);
  1320. } else if (id) {
  1321. // Store for possible later use
  1322. this._storeMessage(id, message);
  1323. } else {
  1324. util.warn('You received an unrecognized message:', message);
  1325. }
  1326. break;
  1327. }
  1328. }
  1329. /** Stores messages without a connection, to be claimed later. */
  1330. Peer.prototype._storeMessage = function(connectionId, message) {
  1331. if (!this._lostMessages[connectionId]) {
  1332. this._lostMessages[connectionId] = [];
  1333. }
  1334. this._lostMessages[connectionId].push(message);
  1335. }
  1336. /**
  1337. * Returns a DataConnection to the specified peer. See documentation for a
  1338. * complete list of options.
  1339. */
  1340. Peer.prototype.connect = function(peer, options) {
  1341. if (this.disconnected) {
  1342. util.warn('You cannot connect to a new Peer because you called '
  1343. + '.disconnect() on this Peer and ended your connection with the'
  1344. + ' server. You can create a new Peer to reconnect.');
  1345. this.emit('error', new Error('Cannot connect to new Peer after disconnecting from server.'));
  1346. return;
  1347. }
  1348. var connection = new DataConnection(peer, this, options);
  1349. this._addConnection(peer, connection);
  1350. return connection;
  1351. }
  1352. /**
  1353. * Returns a MediaConnection to the specified peer. See documentation for a
  1354. * complete list of options.
  1355. */
  1356. Peer.prototype.call = function(peer, stream, options) {
  1357. if (!stream) {
  1358. util.error('To call a peer, you must provide a stream from your browser\'s `getUserMedia`.');
  1359. return;
  1360. }
  1361. options._stream = stream;
  1362. var call = new MediaConnection(peer, this, options);
  1363. this._addConnection(peer, call);
  1364. return call;
  1365. }
  1366. /** Add a data/media connection to this peer. */
  1367. Peer.prototype._addConnection = function(peer, connection) {
  1368. if (!this.connections[peer]) {
  1369. this.connections[peer] = [];
  1370. }
  1371. this.connections[peer].push(connection);
  1372. }
  1373. /** Retrieve a data/media connection for this peer. */
  1374. Peer.prototype.getConnection = function(peer, id) {
  1375. var connections = this.connections[peer];
  1376. if (!connections) {
  1377. return null;
  1378. }
  1379. for (var i = 0, ii = connections.length; i < ii; i++) {
  1380. if (connections[i].id === id) {
  1381. return connections[i];
  1382. }
  1383. }
  1384. return null;
  1385. }
  1386. Peer.prototype._delayedAbort = function(type, message) {
  1387. var self = this;
  1388. util.setZeroTimeout(function(){
  1389. self._abort(type, message);
  1390. });
  1391. }
  1392. /** Destroys the Peer and emits an error message. */
  1393. Peer.prototype._abort = function(type, message) {
  1394. util.error('Aborting. Error:', message);
  1395. var err = new Error(message);
  1396. err.type = type;
  1397. this.destroy();
  1398. this.emit('error', err);
  1399. };
  1400. /**
  1401. * Destroys the Peer: closes all active connections as well as the connection
  1402. * to the server.
  1403. * Warning: The peer can no longer create or accept connections after being
  1404. * destroyed.
  1405. */
  1406. Peer.prototype.destroy = function() {
  1407. if (!this.destroyed) {
  1408. this._cleanup();
  1409. this.disconnect();
  1410. this.destroyed = true;
  1411. }
  1412. }
  1413. /** Disconnects every connection on this peer. */
  1414. Peer.prototype._cleanup = function() {
  1415. var peers = Object.keys(this.connections);
  1416. for (var i = 0, ii = peers.length; i < ii; i++) {
  1417. this._cleanupPeer(peers[i]);
  1418. }
  1419. this.emit('close');
  1420. }
  1421. /** Closes all connections to this peer. */
  1422. Peer.prototype._cleanupPeer = function(peer) {
  1423. var connections = this.connections[peer];
  1424. for (var j = 0, jj = connections.length; j < jj; j += 1) {
  1425. connections[j].close();
  1426. }
  1427. }
  1428. /**
  1429. * Disconnects the Peer's connection to the PeerServer. Does not close any
  1430. * active connections.
  1431. * Warning: The peer can no longer create or accept connections after being
  1432. * disconnected. It also cannot reconnect to the server.
  1433. */
  1434. Peer.prototype.disconnect = function() {
  1435. var self = this;
  1436. util.setZeroTimeout(function(){
  1437. if (!self.disconnected) {
  1438. self.disconnected = true;
  1439. self.open = false;
  1440. if (self.socket) {
  1441. self.socket.close();
  1442. }
  1443. self.id = null;
  1444. }
  1445. });
  1446. }
  1447. /** The current browser. */
  1448. // TODO: maybe expose util.supports
  1449. Peer.browser = util.browserisms;
  1450. exports.Peer = Peer;
  1451. /**
  1452. * Wraps a DataChannel between two Peers.
  1453. */
  1454. function DataConnection(peer, provider, options) {
  1455. if (!(this instanceof DataConnection)) return new DataConnection(peer, provider, options);
  1456. EventEmitter.call(this);
  1457. // TODO: perhaps default serialization should be binary-utf8?
  1458. this.options = util.extend({
  1459. serialization: 'binary'
  1460. }, options);
  1461. // Connection is not open yet.
  1462. this.open = false;
  1463. this.type = 'data';
  1464. this.peer = peer;
  1465. this.provider = provider;
  1466. this.id = this.options.connectionId || DataConnection._idPrefix + util.randomToken();
  1467. this.label = this.options.label || this.id;
  1468. this.metadata = this.options.metadata; // TODO: metadata could also be a part of the paylod.
  1469. this.serialization = this.options.serialization;
  1470. this.reliable = this.options.reliable;
  1471. Negotiator.startConnection(
  1472. this,
  1473. this.options._payload || {
  1474. originator: true,
  1475. multiplex: this.options.multiplex // I don't think multiplex should be a
  1476. // top-level property because it only
  1477. // applies to the originator--otherwise
  1478. // we'd just have an options.pc to use.
  1479. }
  1480. );
  1481. }
  1482. util.inherits(DataConnection, EventEmitter);
  1483. DataConnection._idPrefix = 'dc_';
  1484. /** Called by the Negotiator when the DataChannel is ready. */
  1485. DataConnection.prototype.initialize = function(dc) {
  1486. this._dc = dc;
  1487. this._configureDataChannel();
  1488. }
  1489. DataConnection.prototype._configureDataChannel = function() {
  1490. var self = this;
  1491. // TODO: util.supports.binary
  1492. if (util.supports.binary) {
  1493. // Webkit doesn't support binary yet
  1494. this._dc.binaryType = 'arraybuffer';
  1495. }
  1496. this._dc.onopen = function() {
  1497. util.log('Data channel connection success');
  1498. self.open = true;
  1499. self.emit('open');
  1500. }
  1501. // Use the Reliable shim for non Firefox browsers
  1502. // TODO: util.supports.reliable
  1503. if (!util.supports.reliable) {
  1504. this._reliable = new Reliable(this._dc, util.debug);
  1505. }
  1506. if (this._reliable) {
  1507. this._reliable.onmessage = function(msg) {
  1508. self.emit('data', msg);
  1509. };
  1510. } else {
  1511. this._dc.onmessage = function(e) {
  1512. self._handleDataMessage(e);
  1513. };
  1514. }
  1515. this._dc.onclose = function(e) {
  1516. util.log('DataChannel closed for:', self.peer);
  1517. // TODO: remove connection from Peer as well!!
  1518. self.close();
  1519. };
  1520. }
  1521. DataConnection.prototype._cleanup = function() {
  1522. if (this._dc && this._dc.readyState !== 'closed') {
  1523. this._dc.close();
  1524. this._dc = null;
  1525. }
  1526. this.open = false;
  1527. Negotiator.cleanup(this);
  1528. this.emit('close');
  1529. }
  1530. // Handles a DataChannel message.
  1531. DataConnection.prototype._handleDataMessage = function(e) {
  1532. var self = this;
  1533. var data = e.data;
  1534. var datatype = data.constructor;
  1535. if (this.serialization === 'binary' || this.serialization === 'binary-utf8') {
  1536. if (datatype === Blob) {
  1537. // Datatype should never be blob
  1538. util.blobToArrayBuffer(data, function(ab) {
  1539. data = util.unpack(ab);
  1540. self.emit('data', data);
  1541. });
  1542. return;
  1543. } else if (datatype === ArrayBuffer) {
  1544. data = util.unpack(data);
  1545. } else if (datatype === String) {
  1546. // String fallback for binary data for browsers that don't support binary yet
  1547. var ab = util.binaryStringToArrayBuffer(data);
  1548. data = util.unpack(ab);
  1549. }
  1550. } else if (this.serialization === 'json') {
  1551. data = JSON.parse(data);
  1552. }
  1553. this.emit('data', data);
  1554. }
  1555. /**
  1556. * Exposed functionality for users.
  1557. */
  1558. /** Allows user to close connection. */
  1559. DataConnection.prototype.close = function() {
  1560. if (!this.open) {
  1561. return;
  1562. }
  1563. this._cleanup();
  1564. };
  1565. /** Allows user to send data. */
  1566. DataConnection.prototype.send = function(data) {
  1567. if (!this.open) {
  1568. this.emit('error', new Error('Connection is not open. You should listen for the `open` event before sending messages.'));
  1569. }
  1570. if (this._reliable) {
  1571. // Note: reliable shim sending will make it so that you cannot customize
  1572. // serialization.
  1573. this._reliable.send(data);
  1574. return;
  1575. }
  1576. var self = this;
  1577. if (this.serialization === 'none') {
  1578. this._dc.send(data);
  1579. } else if (this.serialization === 'json') {
  1580. this._dc.send(JSON.stringify(data));
  1581. } else {
  1582. var utf8 = (this.serialization === 'binary-utf8');
  1583. var blob = util.pack(data, utf8);
  1584. // DataChannel currently only supports strings.
  1585. if (!util.supports.binary) {
  1586. util.blobToBinaryString(blob, function(str){
  1587. self._dc.send(str);
  1588. });
  1589. } else {
  1590. this._dc.send(blob);
  1591. }
  1592. }
  1593. };
  1594. DataConnection.prototype.handleMessage = function(message) {
  1595. var payload = message.payload;
  1596. switch (message.type) {
  1597. case 'ANSWER':
  1598. // TODO: assert sdp exists.
  1599. // Should we pass `this`?
  1600. // Forward to negotiator
  1601. Negotiator.handleSDP(message.type, this, payload.sdp);
  1602. break;
  1603. case 'CANDIDATE':
  1604. // TODO
  1605. Negotiator.handleCandidate(this, payload.candidate);
  1606. break;
  1607. default:
  1608. util.warn('Unrecognized message type:', message.type, 'from peer:', this.peer);
  1609. break;
  1610. }
  1611. }
  1612. /**
  1613. * Wraps the streaming interface between two Peers.
  1614. */
  1615. function MediaConnection(peer, provider, options) {
  1616. if (!(this instanceof MediaConnection)) return new MediaConnection(peer, provider, options);
  1617. EventEmitter.call(this);
  1618. this.options = util.extend({}, options);
  1619. this.open = false;
  1620. this.type = 'media';
  1621. this.peer = peer;
  1622. this.provider = provider;
  1623. this.metadata = this.options.metadata;
  1624. this.localStream = this.options._stream;
  1625. this.id = this.options.connectionId || MediaConnection._idPrefix + util.randomToken();
  1626. if (this.localStream) {
  1627. this.pc = Negotiator.startConnection(
  1628. this,
  1629. {_stream: this.localStream, originator: true}
  1630. )
  1631. }
  1632. };
  1633. util.inherits(MediaConnection, EventEmitter);
  1634. MediaConnection._idPrefix = 'mc_';
  1635. MediaConnection.prototype.addStream = function(remoteStream) {
  1636. util.log('Receiving stream', remoteStream);
  1637. this.remoteStream = remoteStream;
  1638. this.emit('stream', remoteStream); // Should we call this `open`?
  1639. this.open = true;
  1640. };
  1641. MediaConnection.prototype.handleMessage = function(message) {
  1642. var payload = message.payload;
  1643. switch (message.type) {
  1644. case 'ANSWER':
  1645. // TODO: assert sdp exists.
  1646. // Should we pass `this`?
  1647. // Forward to negotiator
  1648. Negotiator.handleSDP(message.type, this, payload.sdp);
  1649. break;
  1650. case 'CANDIDATE':
  1651. // TODO
  1652. Negotiator.handleCandidate(this, payload.candidate);
  1653. break;
  1654. default:
  1655. util.warn('Unrecognized message type:', message.type, 'from peer:', this.peer);
  1656. break;
  1657. }
  1658. }
  1659. MediaConnection.prototype.answer = function(stream) {
  1660. if (this.localStream) {
  1661. // Throw some error.
  1662. return;
  1663. }
  1664. this.options._payload._stream = stream;
  1665. this.localStream = stream;
  1666. this._pc = Negotiator.startConnection(
  1667. this.type,
  1668. this.peer,
  1669. this.id,
  1670. this.provider,
  1671. this.options._payload
  1672. )
  1673. };
  1674. /**
  1675. * Exposed functionality for users.
  1676. */
  1677. /** Allows user to close connection. */
  1678. MediaConnection.prototype.close = function() {
  1679. if (this.open) {
  1680. this.open = false;
  1681. this.emit('close')
  1682. }
  1683. };
  1684. /**
  1685. * Manages all negotiations between Peers.
  1686. */
  1687. // TODO: LOCKS.
  1688. // TODO: FIREFOX new PC after offer made for DC.
  1689. var Negotiator = {
  1690. pcs: {
  1691. data: {},
  1692. media: {}
  1693. }, // type => {peerId: {pc_id: pc}}.
  1694. //providers: {}, // provider's id => providers (there may be multiple providers/client.
  1695. queue: [] // connections that are delayed due to a PC being in use.
  1696. }
  1697. Negotiator._idPrefix = 'pc_';
  1698. /** Returns a PeerConnection object set up correctly (for data, media). */
  1699. // Options preceeded with _ are ones we add artificially.
  1700. Negotiator.startConnection = function(connection, options) {
  1701. //Negotiator._addProvider(provider);
  1702. var pc = Negotiator._getPeerConnection(connection, options);
  1703. if (connection.type === 'media' && options._stream) {
  1704. // Add the stream.
  1705. pc.addStream(options._stream);
  1706. }
  1707. // Set the connection's PC.
  1708. connection.pc = pc;
  1709. // What do we need to do now?
  1710. if (options.originator) {
  1711. if (connection.type === 'data') {
  1712. // Create the datachannel.
  1713. var dc = pc.createDataChannel(connection.label, {reliable: options.reliable});
  1714. connection.initialize(dc);
  1715. }
  1716. if (!util.supports.onnegotiationneeded) {
  1717. Negotiator._makeOffer(connection);
  1718. }
  1719. } else {
  1720. Negotiator.handleSDP('OFFER', connection, options.sdp);
  1721. }
  1722. }
  1723. Negotiator._getPeerConnection = function(connection, options) {
  1724. if (!Negotiator.pcs[connection.type]) {
  1725. util.error(connection.type + ' is not a valid connection type. Maybe you overrode the `type` property somewhere.');
  1726. }
  1727. if (!Negotiator.pcs[connection.type][connection.peer]) {
  1728. Negotiator.pcs[connection.type][connection.peer] = {};
  1729. }
  1730. var peerConnections = Negotiator.pcs[connection.type][connection.peer];
  1731. var pc;
  1732. if (options.multiplex) {
  1733. // TODO: this doesn't work right now because we don't have PC ids.
  1734. // Find an existing PC to use.
  1735. ids = Object.keys(peerConnections);
  1736. for (var i = 0, ii = ids.length; i < ii; i += 1) {
  1737. pc = peerConnections[ids[i]];
  1738. if (pc.signalingState === 'stable') {
  1739. break; // We can go ahead and use this PC.
  1740. }
  1741. }
  1742. } else if (options.pc) { // Simplest case: PC id already provided for us.
  1743. pc = Negotiator.pcs[connection.type][connection.peer][options.pc];
  1744. }
  1745. if (!pc || pc.signalingState !== 'stable') {
  1746. pc = Negotiator._startPeerConnection(connection);
  1747. }
  1748. return pc;
  1749. }
  1750. /*
  1751. Negotiator._addProvider = function(provider) {
  1752. if ((!provider.id && !provider.disconnected) || !provider.socket.open) {
  1753. // Wait for provider to obtain an ID.
  1754. provider.on('open', function(id) {
  1755. Negotiator._addProvider(provider);
  1756. });
  1757. } else {
  1758. Negotiator.providers[provider.id] = provider;
  1759. }
  1760. }*/
  1761. /** Start a PC. */
  1762. Negotiator._startPeerConnection = function(connection) {
  1763. util.log('Creating RTCPeerConnection.');
  1764. var id = Negotiator._idPrefix + util.randomToken();
  1765. pc = new RTCPeerConnection(connection.provider.options.config, {optional: [{RtpDataChannels: true}]});
  1766. Negotiator.pcs[connection.type][connection.peer][id] = pc;
  1767. Negotiator._setupListeners(connection, pc, id);
  1768. return pc;
  1769. }
  1770. /** Set up various WebRTC listeners. */
  1771. Negotiator._setupListeners = function(connection, pc, pc_id) {
  1772. var peerId = connection.peer;
  1773. var connectionId = connection.id;
  1774. var provider = connection.provider;
  1775. // ICE CANDIDATES.
  1776. util.log('Listening for ICE candidates.');
  1777. pc.onicecandidate = function(evt) {
  1778. if (evt.candidate) {
  1779. util.log('Received ICE candidates for:', connection.peer);
  1780. provider.socket.send({
  1781. type: 'CANDIDATE',
  1782. payload: {
  1783. candidate: evt.candidate,
  1784. type: connection.type,
  1785. connectionId: connection.id
  1786. },
  1787. dst: peerId,
  1788. });
  1789. }
  1790. };
  1791. pc.oniceconnectionstatechange = function() {
  1792. switch (pc.iceConnectionState) {
  1793. case 'failed':
  1794. util.log('iceConnectionState is disconnected, closing connections to ' + peerId);
  1795. Negotiator.cleanup(connection);
  1796. break;
  1797. case 'completed':
  1798. pc.onicecandidate = util.noop;
  1799. break;
  1800. }
  1801. };
  1802. // Fallback for older Chrome impls.
  1803. pc.onicechange = pc.oniceconnectionstatechange;
  1804. // ONNEGOTIATIONNEEDED (Chrome)
  1805. util.log('Listening for `negotiationneeded`');
  1806. pc.onnegotiationneeded = function() {
  1807. util.log('`negotiationneeded` triggered');
  1808. Negotiator._makeOffer(connection);
  1809. };
  1810. // DATACONNECTION.
  1811. util.log('Listening for data channel');
  1812. // Fired between offer and answer, so options should already be saved
  1813. // in the options hash.
  1814. pc.ondatachannel = function(evt) {
  1815. util.log('Received data channel');
  1816. var dc = evt.channel;
  1817. var connection = provider.getConnection(peerId, connectionId);
  1818. connection.initialize(dc);
  1819. };
  1820. // MEDIACONNECTION.
  1821. util.log('Listening for remote stream');
  1822. pc.onaddstream = function(evt) {
  1823. util.log('Received remote stream');
  1824. var stream = evt.stream;
  1825. provider.getConnection(peerId, id).receiveStream(stream);
  1826. };
  1827. }
  1828. Negotiator.cleanup = function(connection) {
  1829. connection.close(); // Will fail safely if connection is already closed.
  1830. // TODO: close PeerConnection when all connections are closed.
  1831. util.log('Cleanup PeerConnection for ' + connection.peer);
  1832. /*if (!!this.pc && (this.pc.readyState !== 'closed' || this.pc.signalingState !== 'closed')) {
  1833. this.pc.close();
  1834. this.pc = null;
  1835. }*/
  1836. connection.provider.socket.send({
  1837. type: 'LEAVE',
  1838. dst: connection.peer
  1839. });
  1840. }
  1841. Negotiator._makeOffer = function(connection) {
  1842. var pc = connection.pc;
  1843. pc.createOffer(function(offer) {
  1844. util.log('Created offer.');
  1845. if (!util.supports.reliable && connection.type === 'data') {
  1846. offer.sdp = Reliable.higherBandwidthSDP(offer.sdp);
  1847. }
  1848. pc.setLocalDescription(offer, function() {
  1849. util.log('Set localDescription: offer', 'for:', connection.peer);
  1850. connection.provider.socket.send({
  1851. type: 'OFFER',
  1852. payload: {
  1853. sdp: offer,
  1854. type: connection.type,
  1855. label: connection.label,
  1856. reliable: connection.reliable,
  1857. serialization: connection.serialization,
  1858. metadata: connection.metadata,
  1859. connectionId: connection.id
  1860. },
  1861. dst: connection.peer,
  1862. });
  1863. }, function(err) {
  1864. connection.provider.emit('error', err);
  1865. util.log('Failed to setLocalDescription, ', err);
  1866. });
  1867. }, function(err) {
  1868. connection.provider.emit('error', err);
  1869. util.log('Failed to createOffer, ', err);
  1870. });
  1871. }
  1872. Negotiator._makeAnswer = function(connection) {
  1873. var pc = connection.pc;
  1874. pc.createAnswer(function(answer) {
  1875. util.log('Created answer.');
  1876. if (!util.supports.reliable && connection.type === 'data') {
  1877. answer.sdp = Reliable.higherBandwidthSDP(answer.sdp);
  1878. }
  1879. pc.setLocalDescription(answer, function() {
  1880. util.log('Set localDescription: answer', 'for:', connection.peer);
  1881. connection.provider.socket.send({
  1882. type: 'ANSWER',
  1883. payload: {
  1884. sdp: answer,
  1885. type: connection.type,
  1886. connectionId: connection.id
  1887. },
  1888. dst: connection.peer
  1889. });
  1890. }, function(err) {
  1891. connection.provider.emit('error', err);
  1892. util.log('Failed to setLocalDescription, ', err);
  1893. });
  1894. }, function(err) {
  1895. connection.provider.emit('error', err);
  1896. util.log('Failed to create answer, ', err);
  1897. });
  1898. }
  1899. /** Handle an SDP. */
  1900. Negotiator.handleSDP = function(type, connection, sdp) {
  1901. sdp = new RTCSessionDescription(sdp);
  1902. var pc = connection.pc;
  1903. util.log('Setting remote description', sdp);
  1904. pc.setRemoteDescription(sdp, function() {
  1905. util.log('Set remoteDescription:', type, 'for:', connection.peer);
  1906. if (type === 'OFFER') {
  1907. if (connection.type === 'media') {
  1908. if (connection.localStream) {
  1909. // Add local stream (from answer).
  1910. pc.addStream(connection.localStream);
  1911. }
  1912. util.setZeroTimeout(function(){
  1913. // Add remote streams
  1914. connection.addStream(pc.getRemoteStreams()[0]);
  1915. });
  1916. }
  1917. Negotiator._makeAnswer(connection);
  1918. }
  1919. }, function(err) {
  1920. connection.provider.emit('error', err);
  1921. util.log('Failed to setRemoteDescription, ', err);
  1922. });
  1923. }
  1924. /** Handle a candidate. */
  1925. Negotiator.handleCandidate = function(connection, candidate) {
  1926. var candidate = new RTCIceCandidate(candidate);
  1927. connection.pc.addIceCandidate(candidate);
  1928. util.log('Added ICE candidate for:', connection.peer);
  1929. }
  1930. /**
  1931. * An abstraction on top of WebSockets and XHR streaming to provide fastest
  1932. * possible connection for peers.
  1933. */
  1934. function Socket(secure, host, port, key) {
  1935. if (!(this instanceof Socket)) return new Socket(secure, host, port, key);
  1936. EventEmitter.call(this);
  1937. // Disconnected manually.
  1938. this.disconnected = false;
  1939. this._queue = [];
  1940. var wsProtocol = secure ? 'wss://' : 'ws://';
  1941. this._httpUrl = '//' + host + ':' + port + '/' + key;
  1942. this._wsUrl = wsProtocol + host + ':' + port + '/peerjs?key=' + key;
  1943. }
  1944. util.inherits(Socket, EventEmitter);
  1945. /** Check in with ID or get one from server. */
  1946. Socket.prototype.start = function(id) {
  1947. this.id = id;
  1948. var token = util.randomToken();
  1949. this._httpUrl += '/' + id + '/' + token;
  1950. this._wsUrl += '&id='+id+'&token='+token;
  1951. this._startXhrStream();
  1952. this._startWebSocket();
  1953. };
  1954. /** Start up websocket communications. */
  1955. Socket.prototype._startWebSocket = function(id) {
  1956. var self = this;
  1957. if (this._socket) {
  1958. return;
  1959. }
  1960. this._socket = new WebSocket(this._wsUrl);
  1961. this._socket.onmessage = function(event) {
  1962. var data;
  1963. try {
  1964. data = JSON.parse(event.data);
  1965. } catch(e) {
  1966. util.log('Invalid server message', event.data);
  1967. return;
  1968. }
  1969. self.emit('message', data);
  1970. };
  1971. // Take care of the queue of connections if necessary and make sure Peer knows
  1972. // socket is open.
  1973. this._socket.onopen = function() {
  1974. if (self._timeout) {
  1975. clearTimeout(self._timeout);
  1976. setTimeout(function(){
  1977. self._http.abort();
  1978. self._http = null;
  1979. }, 5000);
  1980. }
  1981. self._sendQueuedMessages();
  1982. util.log('Socket open');
  1983. };
  1984. };
  1985. /** Start XHR streaming. */
  1986. Socket.prototype._startXhrStream = function(n) {
  1987. try {
  1988. var self = this;
  1989. this._http = new XMLHttpRequest();
  1990. this._http._index = 1;
  1991. this._http._streamIndex = n || 0;
  1992. this._http.open('post', this._httpUrl + '/id?i=' + this._http._streamIndex, true);
  1993. this._http.onreadystatechange = function() {
  1994. if (this.readyState == 2 && this.old) {
  1995. this.old.abort();
  1996. delete this.old;
  1997. }
  1998. if (this.readyState > 2 && this.status == 200 && this.responseText) {
  1999. self._handleStream(this);
  2000. }
  2001. };
  2002. this._http.send(null);
  2003. this._setHTTPTimeout();
  2004. } catch(e) {
  2005. util.log('XMLHttpRequest not available; defaulting to WebSockets');
  2006. }
  2007. };
  2008. /** Handles onreadystatechange response as a stream. */
  2009. Socket.prototype._handleStream = function(http) {
  2010. // 3 and 4 are loading/done state. All others are not relevant.
  2011. var messages = http.responseText.split('\n');
  2012. // Check to see if anything needs to be processed on buffer.
  2013. if (http._buffer) {
  2014. while (http._buffer.length > 0) {
  2015. var index = http._buffer.shift();
  2016. var bufferedMessage = messages[index];
  2017. try {
  2018. bufferedMessage = JSON.parse(bufferedMessage);
  2019. } catch(e) {
  2020. http._buffer.shift(index);
  2021. break;
  2022. }
  2023. this.emit('message', bufferedMessage);
  2024. }
  2025. }
  2026. var message = messages[http._index];
  2027. if (message) {
  2028. http._index += 1;
  2029. // Buffering--this message is incomplete and we'll get to it next time.
  2030. // This checks if the httpResponse ended in a `\n`, in which case the last
  2031. // element of messages should be the empty string.
  2032. if (http._index === messages.length) {
  2033. if (!http._buffer) {
  2034. http._buffer = [];
  2035. }
  2036. http._buffer.push(http._index - 1);
  2037. } else {
  2038. try {
  2039. message = JSON.parse(message);
  2040. } catch(e) {
  2041. util.log('Invalid server message', message);
  2042. return;
  2043. }
  2044. this.emit('message', message);
  2045. }
  2046. }
  2047. }
  2048. Socket.prototype._setHTTPTimeout = function() {
  2049. var self = this;
  2050. this._timeout = setTimeout(function() {
  2051. var old = self._http;
  2052. if (!self._wsOpen()) {
  2053. self._startXhrStream(old._streamIndex + 1);
  2054. self._http.old = old;
  2055. } else {
  2056. old.abort();
  2057. }
  2058. }, 25000);
  2059. }
  2060. /** Is the websocket currently open? */
  2061. Socket.prototype._wsOpen = function() {
  2062. return this._socket && this._socket.readyState == 1;
  2063. }
  2064. /** Send queued messages. */
  2065. Socket.prototype._sendQueuedMessages = function() {
  2066. for (var i = 0, ii = this._queue.length; i < ii; i += 1) {
  2067. this.send(this._queue[i]);
  2068. }
  2069. }
  2070. /** Exposed send for DC & Peer. */
  2071. Socket.prototype.send = function(data) {
  2072. if (this.disconnected) {
  2073. return;
  2074. }
  2075. // If we didn't get an ID yet, we can't yet send anything so we should queue
  2076. // up these messages.
  2077. if (!this.id) {
  2078. this._queue.push(data);
  2079. return;
  2080. }
  2081. if (!data.type) {
  2082. this.emit('error', 'Invalid message');
  2083. return;
  2084. }
  2085. var message = JSON.stringify(data);
  2086. if (this._wsOpen()) {
  2087. this._socket.send(message);
  2088. } else {
  2089. var http = new XMLHttpRequest();
  2090. var url = this._httpUrl + '/' + data.type.toLowerCase();
  2091. http.open('post', url, true);
  2092. http.setRequestHeader('Content-Type', 'application/json');
  2093. http.send(message);
  2094. }
  2095. }
  2096. Socket.prototype.close = function() {
  2097. if (!this.disconnected && this._wsOpen()) {
  2098. this._socket.close();
  2099. this.disconnected = true;
  2100. }
  2101. };
  2102. })(this);