forked from illuspas/Node-Media-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_core_amf.js
1178 lines (1071 loc) · 27.4 KB
/
node_core_amf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Created by delian on 3/12/14.
* This module provides encoding and decoding of the AMF0 and AMF3 format
*/
var amf3dRules = {
0x00: amf3decUndefined,
0x01: amf3decNull,
0x02: amf3decFalse,
0x03: amf3decTrue,
0x04: amf3decInteger,
0x05: amf3decDouble,
0x06: amf3decString,
0x07: amf3decXmlDoc,
0x08: amf3decDate,
0x09: amf3decArray,
0x0A: amf3decObject,
0x0B: amf3decXml,
0x0C: amf3decByteArray //,
// 0x0D: amf3decVecInt,
// 0x0E: amf3decVecUInt,
// 0x0F: amf3decVecDouble,
// 0x10: amf3decVecObject,
// 0x11: amf3decDict // No dictionary support for the moment!
};
var amf3eRules = {
'string': amf3encString,
'integer': amf3encInteger,
'double': amf3encDouble,
'xml': amf3encXmlDoc,
'object': amf3encObject,
'array': amf3encArray,
'sarray': amf3encArray,
'binary': amf3encByteArray,
'true': amf3encTrue,
'false': amf3encFalse,
'undefined': amf3encUndefined,
'null': amf3encNull
};
var amf0dRules = {
0x00: amf0decNumber,
0x01: amf0decBool,
0x02: amf0decString,
0x03: amf0decObject,
// 0x04: amf0decMovie, // Reserved
0x05: amf0decNull,
0x06: amf0decUndefined,
0x07: amf0decRef,
0x08: amf0decArray,
// 0x09: amf0decObjEnd, // Should never happen normally
0x0A: amf0decSArray,
0x0B: amf0decDate,
0x0C: amf0decLongString,
// 0x0D: amf0decUnsupported, // Has been never originally implemented by Adobe!
// 0x0E: amf0decRecSet, // Has been never originally implemented by Adobe!
0x0F: amf0decXmlDoc,
0x10: amf0decTypedObj,
0x11: amf0decSwitchAmf3
};
var amf0eRules = {
'string': amf0encString,
'integer': amf0encNumber,
'double': amf0encNumber,
'xml': amf0encXmlDoc,
'object': amf0encObject,
'array': amf0encArray,
'sarray': amf0encSArray,
'binary': amf0encString,
'true': amf0encBool,
'false': amf0encBool,
'undefined': amf0encUndefined,
'null': amf0encNull
};
function amfType(o) {
var jsType = typeof o;
if (o === null) return 'null';
if (jsType == 'undefined') return 'undefined';
if (jsType == 'number') {
if (parseInt(o) == o) return 'integer';
return 'double';
}
if (jsType == 'boolean') return o ? 'true' : 'false';
if (jsType == 'string') return 'string';
if (jsType == 'object') {
if (o instanceof Array) {
if (o.sarray) return 'sarray';
return 'array';
}
return 'object';
}
throw new Error('Unsupported type!')
}
// AMF3 implementation
/**
* AMF3 Decode undefined value
* @returns {{len: number, value: undefined}}
*/
function amf3decUndefined() {
return { len: 1, value: undefined }
}
/**
* AMF3 Encode undefined value
* @returns {Buffer}
*/
function amf3encUndefined() {
var buf = new Buffer(1);
buf.writeUInt8(0x00);
return buf;
}
/**
* AMF3 Decode null
* @returns {{len: number, value: null}}
*/
function amf3decNull() {
return { len: 1, value: null }
}
/**
* AMF3 Encode null
* @returns {Buffer}
*/
function amf3encNull() {
var buf = new Buffer(1);
buf.writeUInt8(0x01);
return buf;
}
/**
* AMF3 Decode false
* @returns {{len: number, value: boolean}}
*/
function amf3decFalse() {
return { len: 1, value: false }
}
/**
* AMF3 Encode false
* @returns {Buffer}
*/
function amf3encFalse() {
var buf = new Buffer(1);
buf.writeUInt8(0x02);
return buf;
}
/**
* AMF3 Decode true
* @returns {{len: number, value: boolean}}
*/
function amf3decTrue() {
return { len: 1, value: true }
}
/**
* AMF3 Encode true
* @returns {Buffer}
*/
function amf3encTrue() {
var buf = new Buffer(1);
buf.writeUInt8(0x03);
return buf;
}
/**
* Generic decode of AMF3 UInt29 values
* @param buf
* @returns {{len: number, value: number}}
*/
function amf3decUI29(buf) {
var val = 0;
var len = 1;
var b;
do {
b = buf.readUInt8(len++);
val = (val << 7) + (b & 0x7F);
} while (len < 5 || b > 0x7F);
if (len == 5) val = val | b; // Preserve the major bit of the last byte
return { len: len, value: val }
}
/**
* Generic encode of AMF3 UInt29 value
* @param num
* @returns {Buffer}
*/
function amf3encUI29(num) {
var len = 0;
if (num < 0x80) len = 1;
if (num < 0x4000) len = 2;
if (num < 0x200000) len = 3;
if (num >= 0x200000) len = 4;
var buf = new Buffer(len);
switch (len) {
case 1:
buf.writeUInt8(num, 0);
break;
case 2:
buf.writeUInt8(num & 0x7F, 0);
buf.writeUInt8((num >> 7) | 0x80, 1);
break;
case 3:
buf.writeUInt8(num & 0x7F, 0);
buf.writeUInt8((num >> 7) & 0x7F, 1);
buf.writeUInt8((num >> 14) | 0x80, 2);
break;
case 4:
buf.writeUInt8(num & 0xFF, 0);
buf.writeUInt8((num >> 8) & 0x7F, 1);
buf.writeUInt8((num >> 15) | 0x7F, 2);
buf.writeUInt8((num >> 22) | 0x7F, 3);
break;
}
return buf;
}
/**
* AMF3 Decode an integer
* @param buf
* @returns {{len: number, value: number}}
*/
function amf3decInteger(buf) { // Invert the integer
var resp = amf3decUI29(buf);
if (resp.value > 0x0FFFFFFF) resp.value = (resp.value & 0x0FFFFFFF) - 0x10000000;
return resp;
}
/**
* AMF3 Encode an integer
* @param num
* @returns {Buffer}
*/
function amf3encInteger(num) {
var buf = new Buffer(1);
buf.writeUInt8(0x4, 0);
return Buffer.concat([buf, amf3encUI29(num & 0x3FFFFFFF)]); // This AND will auto convert the sign bit!
}
/**
* AMF3 Decode String
* @param buf
* @returns {{len: *, value: (*|String)}}
*/
function amf3decString(buf) {
var sLen = amf3decUI29(buf);
var s = sLen & 1;
sLen = sLen >> 1; // The real length without the lowest bit
if (s) return { len: sLen.value + 5, value: buf.slice(5, sLen.value + 5).toString('utf8') };
throw new Error("Error, we have a need to decode a String that is a Reference"); // TODO: Implement references!
}
/**
* AMF3 Encode String
* @param str
* @returns {Buffer}
*/
function amf3encString(str) {
var sLen = amf3encUI29(str.length << 1);
var buf = new Buffer(1);
buf.writeUInt8(0x6, 0);
return Buffer.concat([buf, sLen, new Buffer(str, 'utf8')]);
}
/**
* AMF3 Decode XMLDoc
* @param buf
* @returns {{len: *, value: (*|String)}}
*/
function amf3decXmlDoc(buf) {
var sLen = amf3decUI29(buf);
var s = sLen & 1;
sLen = sLen >> 1; // The real length without the lowest bit
if (s) return { len: sLen.value + 5, value: buf.slice(5, sLen.value + 5).toString('utf8') };
throw new Error("Error, we have a need to decode a String that is a Reference"); // TODO: Implement references!
}
/**
* AMF3 Encode XMLDoc
* @param str
* @returns {Buffer}
*/
function amf3encXmlDoc(str) {
var sLen = amf3encUI29(str.length << 1);
var buf = new Buffer(1);
buf.writeUInt8(0x7, 0);
return Buffer.concat([buf, sLen, new Buffer(str, 'utf8')]);
}
/**
* AMF3 Decode Generic XML
* @param buf
* @returns {{len: *, value: (*|String)}}
*/
function amf3decXml(buf) {
var sLen = amf3decUI29(buf);
var s = sLen & 1;
sLen = sLen >> 1; // The real length without the lowest bit
if (s) return { len: sLen.value + 5, value: buf.slice(5, sLen.value + 5).toString('utf8') };
throw new Error("Error, we have a need to decode a String that is a Reference"); // TODO: Implement references!
}
/**
* AMF3 Encode Generic XML
* @param str
* @returns {Buffer}
*/
function amf3encXml(str) {
var sLen = amf3encUI29(str.length << 1);
var buf = new Buffer(1);
buf.writeUInt8(0x0B, 0);
return Buffer.concat([buf, sLen, new Buffer(str, 'utf8')]);
}
/**
* AMF3 Decide Byte Array
* @param buf
* @returns {{len: *, value: (Array|string|*|Buffer|Blob)}}
*/
function amf3decByteArray(buf) {
var sLen = amf3decUI29(buf);
var s = sLen & 1; // TODO: Check if we follow the same rule!
sLen = sLen >> 1; // The real length without the lowest bit
if (s) return { len: sLen.value + 5, value: buf.slice(5, sLen.value + 5) };
throw new Error("Error, we have a need to decode a String that is a Reference"); // TODO: Implement references!
}
/**
* AMF3 Encode Byte Array
* @param str
* @returns {Buffer}
*/
function amf3encByteArray(str) {
var sLen = amf3encUI29(str.length << 1);
var buf = new Buffer(1);
buf.writeUInt8(0x0C, 0);
return Buffer.concat([buf, sLen, (typeof str == 'string') ? new Buffer(str, 'binary') : str]);
}
/**
* AMF3 Decode Double
* @param buf
* @returns {{len: number, value: (*|Number)}}
*/
function amf3decDouble(buf) {
return { len: 9, value: buf.readDoubleBE(1) }
}
/**
* AMF3 Encode Double
* @param num
* @returns {Buffer}
*/
function amf3encDouble(num) {
var buf = new Buffer(9);
buf.writeUInt8(0x05, 0);
buf.writeDoubleBE(num, 1);
return buf;
}
/**
* AMF3 Decode Date
* @param buf
* @returns {{len: *, value: (*|Number)}}
*/
function amf3decDate(buf) { // The UI29 should be 1
var uTz = amf3decUI29(buf);
var ts = buf.readDoubleBE(uTz.len);
return { len: uTz.len + 8, value: ts }
}
/**
* AMF3 Encode Date
* @param ts
* @returns {Buffer}
*/
function amf3encDate(ts) {
var buf = new Buffer(1);
buf.writeUInt8(0x8, 0);
var tsBuf = new Buffer(8);
tsBuf.writeDoubleBE(ts, 0);
return Buffer.concat([buf, amf3encUI29(1), tsBuf]); // We always do 1
}
/**
* AMF3 Decode Array
* @param buf
* @returns {{len: *, value: *}}
*/
function amf3decArray(buf) {
var count = amf3decUI29(buf.slice(1));
var obj = amf3decObject(buf.slice(count.len));
if (count.value % 2 == 1) throw new Error("This is a reference to another array, which currently we don't support!");
return { len: count.len + obj.len, value: obj.value }
}
/**
* AMF3 Encode Array
*/
function amf3encArray() {
throw new Error('Encoding arrays is not supported yet!'); // TODO: Implement encoding of arrays
}
/**
* AMF3 Decode Object
* @param buf
*/
function amf3decObject(buf) {
var obj = {};
let pos = 0;
return obj;
}
/**
* AMF3 Encode Object
* @param o
*/
function amf3encObject(o) {
}
// AMF0 Implementation
/**
* AMF0 Decode Number
* @param buf
* @returns {{len: number, value: (*|Number)}}
*/
function amf0decNumber(buf) {
return { len: 9, value: buf.readDoubleBE(1) }
}
/**
* AMF0 Encode Number
* @param num
* @returns {Buffer}
*/
function amf0encNumber(num) {
var buf = new Buffer(9);
buf.writeUInt8(0x00, 0);
buf.writeDoubleBE(num, 1);
return buf;
}
/**
* AMF0 Decode Boolean
* @param buf
* @returns {{len: number, value: boolean}}
*/
function amf0decBool(buf) {
return { len: 2, value: (buf.readUInt8(1) != 0) }
}
/**
* AMF0 Encode Boolean
* @param num
* @returns {Buffer}
*/
function amf0encBool(num) {
var buf = new Buffer(2);
buf.writeUInt8(0x01, 0);
buf.writeUInt8((num ? 1 : 0), 1);
return buf;
}
/**
* AMF0 Decode Null
* @returns {{len: number, value: null}}
*/
function amf0decNull() {
return { len: 1, value: null }
}
/**
* AMF0 Encode Null
* @returns {Buffer}
*/
function amf0encNull() {
var buf = new Buffer(1);
buf.writeUInt8(0x05, 0);
return buf;
}
/**
* AMF0 Decode Undefined
* @returns {{len: number, value: undefined}}
*/
function amf0decUndefined() {
return { len: 1, value: undefined }
}
/**
* AMF0 Encode Undefined
* @returns {Buffer}
*/
function amf0encUndefined() {
var buf = new Buffer(1);
buf.writeUInt8(0x06, 0);
return buf;
}
/**
* AMF0 Decode Date
* @param buf
* @returns {{len: number, value: (*|Number)}}
*/
function amf0decDate(buf) {
// var s16 = buf.readInt16BE(1);
var ts = buf.readDoubleBE(3);
return { len: 11, value: ts }
}
/**
* AMF0 Encode Date
* @param ts
* @returns {Buffer}
*/
function amf0encDate(ts) {
var buf = new Buffer(11);
buf.writeUInt8(0x0B, 0);
buf.writeInt16BE(0, 1);
buf.writeDoubleBE(ts, 3);
return buf;
}
/**
* AMF0 Decode Object
* @param buf
* @returns {{len: number, value: {}}}
*/
function amf0decObject(buf) { // TODO: Implement references!
var obj = {};
var iBuf = buf.slice(1);
var len = 1;
// console.log('ODec',iBuf.readUInt8(0));
while (iBuf.readUInt8(0) != 0x09) {
// console.log('Field', iBuf.readUInt8(0), iBuf);
var prop = amf0decUString(iBuf);
// console.log('Got field for property', prop);
len += prop.len;
if (iBuf.slice(prop.len).readUInt8(0) == 0x09) {
len++;
// console.log('Found the end property');
break;
} // END Object as value, we shall leave
if (prop.value == '') break;
var val = amf0DecodeOne(iBuf.slice(prop.len));
// console.log('Got field for value', val);
obj[prop.value] = val.value;
len += val.len;
iBuf = iBuf.slice(prop.len + val.len);
}
return { len: len, value: obj }
}
/**
* AMF0 Encode Object
*/
function amf0encObject(o) {
if (typeof o !== 'object') return;
var data = new Buffer(1);
data.writeUInt8(0x03, 0); // Type object
var k;
for (k in o) {
data = Buffer.concat([data, amf0encUString(k), amf0EncodeOne(o[k])]);
}
var termCode = new Buffer(1);
termCode.writeUInt8(0x09, 0);
return Buffer.concat([data, amf0encUString(''), termCode]);
}
/**
* AMF0 Decode Reference
* @param buf
* @returns {{len: number, value: string}}
*/
function amf0decRef(buf) {
var index = buf.readUInt16BE(1);
return { len: 3, value: 'ref' + index }
}
/**
* AMF0 Encode Reference
* @param index
* @returns {Buffer}
*/
function amf0encRef(index) {
var buf = new Buffer(3);
buf.writeUInt8(0x07, 0);
buf.writeUInt16BE(index, 1);
return buf;
}
/**
* AMF0 Decode String
* @param buf
* @returns {{len: *, value: (*|string|String)}}
*/
function amf0decString(buf) {
var sLen = buf.readUInt16BE(1);
return { len: 3 + sLen, value: buf.toString('utf8', 3, 3 + sLen) }
}
/**
* AMF0 Decode Untyped (without the type byte) String
* @param buf
* @returns {{len: *, value: (*|string|String)}}
*/
function amf0decUString(buf) {
var sLen = buf.readUInt16BE(0);
return { len: 2 + sLen, value: buf.toString('utf8', 2, 2 + sLen) }
}
/**
* Do AMD0 Encode of Untyped String
* @param s
* @returns {Buffer}
*/
function amf0encUString(s) {
var data = new Buffer(s, 'utf8');
var sLen = new Buffer(2);
sLen.writeUInt16BE(data.length, 0);
return Buffer.concat([sLen, data]);
}
/**
* AMF0 Encode String
* @param str
* @returns {Buffer}
*/
function amf0encString(str) {
var buf = new Buffer(3);
buf.writeUInt8(0x02, 0);
buf.writeUInt16BE(str.length, 1);
return Buffer.concat([buf, new Buffer(str, 'utf8')]);
}
/**
* AMF0 Decode Long String
* @param buf
* @returns {{len: *, value: (*|string|String)}}
*/
function amf0decLongString(buf) {
var sLen = buf.readUInt32BE(1);
return { len: 5 + sLen, value: buf.toString('utf8', 5, 5 + sLen) }
}
/**
* AMF0 Encode Long String
* @param str
* @returns {Buffer}
*/
function amf0encLongString(str) {
var buf = new Buffer(5);
buf.writeUInt8(0x0C, 0);
buf.writeUInt32BE(str.length, 1);
return Buffer.concat([buf, new Buffer(str, 'utf8')]);
}
/**
* AMF0 Decode Array
* @param buf
* @returns {{len: *, value: ({}|*)}}
*/
function amf0decArray(buf) {
// var count = buf.readUInt32BE(1);
var obj = amf0decObject(buf.slice(4));
return { len: 5 + obj.len, value: obj.value }
}
/**
* AMF0 Encode Array
*/
function amf0encArray(a) {
var l = 0;
if (a instanceof Array) l = a.length; else l = Object.keys(a).length;
console.log('Array encode', l, a);
var buf = new Buffer(5);
buf.writeUInt8(8, 0);
buf.writeUInt32BE(l, 1);
var data = amf0encObject(a);
return Buffer.concat([buf, data.slice(1)]);
}
/**
* AMF0 Encode Binary Array into binary Object
* @param aData
* @returns {Buffer}
*/
function amf0cnvArray2Object(aData) {
var buf = new Buffer(1);
buf.writeUInt8(0x3, 0); // Object id
return Buffer.concat([buf, aData.slice(5)]);
}
/**
* AMF0 Encode Binary Object into binary Array
* @param oData
* @returns {Buffer}
*/
function amf0cnvObject2Array(oData) {
var buf = new Buffer(5);
var o = amf0decObject(oData);
var l = Object.keys(o).length;
buf.writeUInt32BE(l, 1);
return Buffer.concat([buf, oData.slice(1)]);
}
/**
* AMF0 Decode XMLDoc
* @param buf
* @returns {{len: *, value: (*|string|String)}}
*/
function amf0decXmlDoc(buf) {
var sLen = buf.readUInt16BE(1);
return { len: 3 + sLen, value: buf.toString('utf8', 3, 3 + sLen) }
}
/**
* AMF0 Encode XMLDoc
* @param str
* @returns {Buffer}
*/
function amf0encXmlDoc(str) { // Essentially it is the same as string
var buf = new Buffer(3);
buf.writeUInt8(0x0F, 0);
buf.writeUInt16BE(str.length, 1);
return Buffer.concat([buf, new Buffer(str, 'utf8')]);
}
/**
* AMF0 Decode Strict Array
* @param buf
* @returns {{len: number, value: Array}}
*/
function amf0decSArray(buf) {
var a = [];
var len = 5;
var ret;
for (var count = buf.readUInt32BE(1); count; count--) {
ret = amf0DecodeOne(buf.slice(len));
a.push(ret.value);
len += ret.len;
}
return { len: len, value: amf0markSArray(a) }
}
/**
* AMF0 Encode Strict Array
* @param a Array
*/
function amf0encSArray(a) {
console.log('Do strict array!');
var buf = new Buffer(5);
buf.writeUInt8(0x0A, 0);
buf.writeUInt32BE(a.length, 1);
var i;
for (i = 0; i < a.length; i++) {
buf = Buffer.concat([buf, amf0EncodeOne(a[i])]);
}
return buf;
}
function amf0markSArray(a) {
Object.defineProperty(a, 'sarray', { value: true });
return a;
}
/**
* AMF0 Decode Typed Object
* @param buf
* @returns {{len: number, value: ({}|*)}}
*/
function amf0decTypedObj(buf) {
var className = amf0decString(buf);
var obj = amf0decObject(buf.slice(className.len - 1));
obj.value.__className__ = className.value;
return { len: className.len + obj.len - 1, value: obj.value }
}
/**
* AMF0 Decode Switch AMF3 Object
* @param buf
* @returns {{len: number, value: ({}|*)}}
*/
function amf0decSwitchAmf3(buf) {
var r = amf3DecodeOne(buf.slice(1));
return r;
}
/**
* AMF0 Encode Typed Object
*/
function amf0encTypedObj() {
throw new Error("Error: SArray encoding is not yet implemented!"); // TODO: Error
}
/**
* Decode one value from the Buffer according to the applied rules
* @param rules
* @param buffer
* @returns {*}
*/
function amfXDecodeOne(rules, buffer) {
if (!rules[buffer.readUInt8(0)]) {
console.error('Unknown field', buffer.readUInt8(0));
return null;
}
return rules[buffer.readUInt8(0)](buffer);
}
/**
* Decode one AMF0 value
* @param buffer
* @returns {*}
*/
function amf0DecodeOne(buffer) {
return amfXDecodeOne(amf0dRules, buffer);
}
/**
* Decode one AMF3 value
* @param buffer
* @returns {*}
*/
function amf3DecodeOne(buffer) {
return amfXDecodeOne(amf3dRules, buffer);
}
/**
* Decode a whole buffer of AMF values according to rules and return in array
* @param rules
* @param buffer
* @returns {Array}
*/
function amfXDecode(rules, buffer) {
// We shall receive clean buffer and will respond with an array of values
var resp = [];
var res;
for (var i = 0; i < buffer.length;) {
res = amfXDecodeOne(rules, buffer.slice(i));
i += res.len;
resp.push(res.value); // Add the response
}
return resp;
}
/**
* Decode a buffer of AMF3 values
* @param buffer
* @returns {Array}
*/
function amf3Decode(buffer) {
return amfXDecode(amf3dRules, buffer);
}
/**
* Decode a buffer of AMF0 values
* @param buffer
* @returns {Array}
*/
function amf0Decode(buffer) {
return amfXDecode(amf0dRules, buffer);
}
/**
* Encode one AMF value according to rules
* @param rules
* @param o
* @returns {*}
*/
function amfXEncodeOne(rules, o) {
// console.log('amfXEncodeOne type',o,amfType(o),rules[amfType(o)]);
var f = rules[amfType(o)];
if (f) return f(o);
throw new Error('Unsupported type for encoding!');
}
/**
* Encode one AMF0 value
* @param o
* @returns {*}
*/
function amf0EncodeOne(o) {
return amfXEncodeOne(amf0eRules, o);
}
/**
* Encode one AMF3 value
* @param o
* @returns {*}
*/
function amf3EncodeOne(o) {
return amfXEncodeOne(amf3eRules, o);
}
/**
* Encode an array of values into a buffer
* @param a
* @returns {Buffer}
*/
function amf3Encode(a) {
var buf = new Buffer(0);
a.forEach(function (o) {
buf = Buffer.concat([buf, amf3EncodeOne(o)]);
});
return buf;
}
/**
* Encode an array of values into a buffer
* @param a
* @returns {Buffer}
*/
function amf0Encode(a) {
var buf = new Buffer(0);
a.forEach(function (o) {
buf = Buffer.concat([buf, amf0EncodeOne(o)]);
});
return buf;
}
var rtmpCmdDecode = {
"_result": ["transId", "cmdObj", "info"],
"_error": ["transId", "cmdObj", "info", "streamId"], // Info / Streamid are optional
"onStatus": ["transId", "cmdObj", "info"],
"releaseStream": ["transId", "cmdObj", "streamId"],
"getStreamLength": ["transId", "cmdObj", "streamId"],
"getMovLen": ["transId", "cmdObj", "streamId"],
"FCPublish": ["transId", "cmdObj", "streamId"],
"FCUnpublish": ["transId", "cmdObj", "streamId"],
"onFCPublish": ["transId", "cmdObj", "info"],
"connect": ["transId", "cmdObj", "args"],
"call": ["transId", "cmdObj", "args"],
"createStream": ["transId", "cmdObj"],
"close": ["transId", "cmdObj"],
"play": ["transId", "cmdObj", "streamName", "start", "duration", "reset"],
"play2": ["transId", "cmdObj", "params"],
"deleteStream": ["transId", "cmdObj", "streamId"],
"closeStream": ["transId", "cmdObj"],
"receiveAudio": ["transId", "cmdObj", "bool"],
"receiveVideo": ["transId", "cmdObj", "bool"],
"publish": ["transId", "cmdObj", "streamName", "type"],
"seek": ["transId", "cmdObj", "ms"],
"pause": ["transId", "cmdObj", "pause", "ms"]
};
var rtmpDataDecode = {
"@setDataFrame": ["method", "dataObj"],
"onMetaData": ["cmdObj"],
"|RtmpSampleAccess": ["bool1", "bool2"],
};
/**
* Decode a data!
* @param dbuf
* @returns {{cmd: (*|string|String|*), value: *}}
*/
function decodeAmf0Data(dbuf) {
var buffer = dbuf;
var resp = {};
var cmd = amf0DecodeOne(buffer);
resp.cmd = cmd.value;
buffer = buffer.slice(cmd.len);
if (rtmpDataDecode[cmd.value]) {
rtmpDataDecode[cmd.value].forEach(function (n) {
if (buffer.length > 0) {
var r = amf0DecodeOne(buffer);
buffer = buffer.slice(r.len);
resp[n] = r.value;
}
});
} else {
console.log('Unknown command', resp);
}
return resp
}
/**
* Decode a command!
* @param dbuf
* @returns {{cmd: (*|string|String|*), value: *}}