-
Notifications
You must be signed in to change notification settings - Fork 0
/
bundle.js
1132 lines (1048 loc) · 50.6 KB
/
bundle.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
/*eslint-disable block-scoped-var, id-length, no-control-regex, no-magic-numbers, no-prototype-builtins, no-redeclare, no-shadow, no-var, sort-vars*/
(function($protobuf) {
"use strict";
// Common aliases
var $Reader = $protobuf.Reader, $Writer = $protobuf.Writer, $util = $protobuf.util;
// Exported root namespace
var $root = $protobuf.roots["default"] || ($protobuf.roots["default"] = {});
$root.flashcontrol = (function() {
/**
* Namespace flashcontrol.
* @exports flashcontrol
* @namespace
*/
var flashcontrol = {};
flashcontrol.FlashControl = (function() {
/**
* Constructs a new FlashControl service.
* @memberof flashcontrol
* @classdesc Represents a FlashControl
* @extends $protobuf.rpc.Service
* @constructor
* @param {$protobuf.RPCImpl} rpcImpl RPC implementation
* @param {boolean} [requestDelimited=false] Whether requests are length-delimited
* @param {boolean} [responseDelimited=false] Whether responses are length-delimited
*/
function FlashControl(rpcImpl, requestDelimited, responseDelimited) {
$protobuf.rpc.Service.call(this, rpcImpl, requestDelimited, responseDelimited);
}
(FlashControl.prototype = Object.create($protobuf.rpc.Service.prototype)).constructor = FlashControl;
/**
* Creates new FlashControl service using the specified rpc implementation.
* @function create
* @memberof flashcontrol.FlashControl
* @static
* @param {$protobuf.RPCImpl} rpcImpl RPC implementation
* @param {boolean} [requestDelimited=false] Whether requests are length-delimited
* @param {boolean} [responseDelimited=false] Whether responses are length-delimited
* @returns {FlashControl} RPC service. Useful where requests and/or responses are streamed.
*/
FlashControl.create = function create(rpcImpl, requestDelimited, responseDelimited) {
return new this(rpcImpl, requestDelimited, responseDelimited);
};
/**
* Callback as used by {@link flashcontrol.FlashControl#takePhoto}.
* @memberof flashcontrol.FlashControl
* @typedef TakePhotoCallback
* @type {function}
* @param {Error|null} error Error, if any
* @param {flashcontrol.PhotoResponse} [response] PhotoResponse
*/
/**
* Calls TakePhoto.
* @function takePhoto
* @memberof flashcontrol.FlashControl
* @instance
* @param {flashcontrol.IPhotoRequest} request PhotoRequest message or plain object
* @param {flashcontrol.FlashControl.TakePhotoCallback} callback Node-style callback called with the error, if any, and PhotoResponse
* @returns {undefined}
* @variation 1
*/
Object.defineProperty(FlashControl.prototype.takePhoto = function takePhoto(request, callback) {
return this.rpcCall(takePhoto, $root.flashcontrol.PhotoRequest, $root.flashcontrol.PhotoResponse, request, callback);
}, "name", { value: "TakePhoto" });
/**
* Calls TakePhoto.
* @function takePhoto
* @memberof flashcontrol.FlashControl
* @instance
* @param {flashcontrol.IPhotoRequest} request PhotoRequest message or plain object
* @returns {Promise<flashcontrol.PhotoResponse>} Promise
* @variation 2
*/
/**
* Callback as used by {@link flashcontrol.FlashControl#takePhotoWithNativeCamera}.
* @memberof flashcontrol.FlashControl
* @typedef TakePhotoWithNativeCameraCallback
* @type {function}
* @param {Error|null} error Error, if any
* @param {flashcontrol.PhotoPathResponse} [response] PhotoPathResponse
*/
/**
* Calls TakePhotoWithNativeCamera.
* @function takePhotoWithNativeCamera
* @memberof flashcontrol.FlashControl
* @instance
* @param {flashcontrol.IEmptyRequest} request EmptyRequest message or plain object
* @param {flashcontrol.FlashControl.TakePhotoWithNativeCameraCallback} callback Node-style callback called with the error, if any, and PhotoPathResponse
* @returns {undefined}
* @variation 1
*/
Object.defineProperty(FlashControl.prototype.takePhotoWithNativeCamera = function takePhotoWithNativeCamera(request, callback) {
return this.rpcCall(takePhotoWithNativeCamera, $root.flashcontrol.EmptyRequest, $root.flashcontrol.PhotoPathResponse, request, callback);
}, "name", { value: "TakePhotoWithNativeCamera" });
/**
* Calls TakePhotoWithNativeCamera.
* @function takePhotoWithNativeCamera
* @memberof flashcontrol.FlashControl
* @instance
* @param {flashcontrol.IEmptyRequest} request EmptyRequest message or plain object
* @returns {Promise<flashcontrol.PhotoPathResponse>} Promise
* @variation 2
*/
return FlashControl;
})();
flashcontrol.EmptyRequest = (function() {
/**
* Properties of an EmptyRequest.
* @memberof flashcontrol
* @interface IEmptyRequest
*/
/**
* Constructs a new EmptyRequest.
* @memberof flashcontrol
* @classdesc Represents an EmptyRequest.
* @implements IEmptyRequest
* @constructor
* @param {flashcontrol.IEmptyRequest=} [properties] Properties to set
*/
function EmptyRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
}
/**
* Creates a new EmptyRequest instance using the specified properties.
* @function create
* @memberof flashcontrol.EmptyRequest
* @static
* @param {flashcontrol.IEmptyRequest=} [properties] Properties to set
* @returns {flashcontrol.EmptyRequest} EmptyRequest instance
*/
EmptyRequest.create = function create(properties) {
return new EmptyRequest(properties);
};
/**
* Encodes the specified EmptyRequest message. Does not implicitly {@link flashcontrol.EmptyRequest.verify|verify} messages.
* @function encode
* @memberof flashcontrol.EmptyRequest
* @static
* @param {flashcontrol.IEmptyRequest} message EmptyRequest message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
EmptyRequest.encode = function encode(message, writer) {
if (!writer)
writer = $Writer.create();
return writer;
};
/**
* Encodes the specified EmptyRequest message, length delimited. Does not implicitly {@link flashcontrol.EmptyRequest.verify|verify} messages.
* @function encodeDelimited
* @memberof flashcontrol.EmptyRequest
* @static
* @param {flashcontrol.IEmptyRequest} message EmptyRequest message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
EmptyRequest.encodeDelimited = function encodeDelimited(message, writer) {
return this.encode(message, writer).ldelim();
};
/**
* Decodes an EmptyRequest message from the specified reader or buffer.
* @function decode
* @memberof flashcontrol.EmptyRequest
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @param {number} [length] Message length if known beforehand
* @returns {flashcontrol.EmptyRequest} EmptyRequest
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
EmptyRequest.decode = function decode(reader, length) {
if (!(reader instanceof $Reader))
reader = $Reader.create(reader);
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flashcontrol.EmptyRequest();
while (reader.pos < end) {
var tag = reader.uint32();
switch (tag >>> 3) {
default:
reader.skipType(tag & 7);
break;
}
}
return message;
};
/**
* Decodes an EmptyRequest message from the specified reader or buffer, length delimited.
* @function decodeDelimited
* @memberof flashcontrol.EmptyRequest
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @returns {flashcontrol.EmptyRequest} EmptyRequest
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
EmptyRequest.decodeDelimited = function decodeDelimited(reader) {
if (!(reader instanceof $Reader))
reader = new $Reader(reader);
return this.decode(reader, reader.uint32());
};
/**
* Verifies an EmptyRequest message.
* @function verify
* @memberof flashcontrol.EmptyRequest
* @static
* @param {Object.<string,*>} message Plain object to verify
* @returns {string|null} `null` if valid, otherwise the reason why it is not
*/
EmptyRequest.verify = function verify(message) {
if (typeof message !== "object" || message === null)
return "object expected";
return null;
};
/**
* Creates an EmptyRequest message from a plain object. Also converts values to their respective internal types.
* @function fromObject
* @memberof flashcontrol.EmptyRequest
* @static
* @param {Object.<string,*>} object Plain object
* @returns {flashcontrol.EmptyRequest} EmptyRequest
*/
EmptyRequest.fromObject = function fromObject(object) {
if (object instanceof $root.flashcontrol.EmptyRequest)
return object;
return new $root.flashcontrol.EmptyRequest();
};
/**
* Creates a plain object from an EmptyRequest message. Also converts values to other types if specified.
* @function toObject
* @memberof flashcontrol.EmptyRequest
* @static
* @param {flashcontrol.EmptyRequest} message EmptyRequest
* @param {$protobuf.IConversionOptions} [options] Conversion options
* @returns {Object.<string,*>} Plain object
*/
EmptyRequest.toObject = function toObject() {
return {};
};
/**
* Converts this EmptyRequest to JSON.
* @function toJSON
* @memberof flashcontrol.EmptyRequest
* @instance
* @returns {Object.<string,*>} JSON object
*/
EmptyRequest.prototype.toJSON = function toJSON() {
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
};
/**
* Gets the default type url for EmptyRequest
* @function getTypeUrl
* @memberof flashcontrol.EmptyRequest
* @static
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns {string} The default type url
*/
EmptyRequest.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
if (typeUrlPrefix === undefined) {
typeUrlPrefix = "type.googleapis.com";
}
return typeUrlPrefix + "/flashcontrol.EmptyRequest";
};
return EmptyRequest;
})();
flashcontrol.PhotoPathResponse = (function() {
/**
* Properties of a PhotoPathResponse.
* @memberof flashcontrol
* @interface IPhotoPathResponse
* @property {string|null} [filePath] PhotoPathResponse filePath
* @property {string|null} [errorMsg] PhotoPathResponse errorMsg
*/
/**
* Constructs a new PhotoPathResponse.
* @memberof flashcontrol
* @classdesc Represents a PhotoPathResponse.
* @implements IPhotoPathResponse
* @constructor
* @param {flashcontrol.IPhotoPathResponse=} [properties] Properties to set
*/
function PhotoPathResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
}
/**
* PhotoPathResponse filePath.
* @member {string} filePath
* @memberof flashcontrol.PhotoPathResponse
* @instance
*/
PhotoPathResponse.prototype.filePath = "";
/**
* PhotoPathResponse errorMsg.
* @member {string} errorMsg
* @memberof flashcontrol.PhotoPathResponse
* @instance
*/
PhotoPathResponse.prototype.errorMsg = "";
/**
* Creates a new PhotoPathResponse instance using the specified properties.
* @function create
* @memberof flashcontrol.PhotoPathResponse
* @static
* @param {flashcontrol.IPhotoPathResponse=} [properties] Properties to set
* @returns {flashcontrol.PhotoPathResponse} PhotoPathResponse instance
*/
PhotoPathResponse.create = function create(properties) {
return new PhotoPathResponse(properties);
};
/**
* Encodes the specified PhotoPathResponse message. Does not implicitly {@link flashcontrol.PhotoPathResponse.verify|verify} messages.
* @function encode
* @memberof flashcontrol.PhotoPathResponse
* @static
* @param {flashcontrol.IPhotoPathResponse} message PhotoPathResponse message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
PhotoPathResponse.encode = function encode(message, writer) {
if (!writer)
writer = $Writer.create();
if (message.filePath != null && Object.hasOwnProperty.call(message, "filePath"))
writer.uint32(/* id 1, wireType 2 =*/10).string(message.filePath);
if (message.errorMsg != null && Object.hasOwnProperty.call(message, "errorMsg"))
writer.uint32(/* id 2, wireType 2 =*/18).string(message.errorMsg);
return writer;
};
/**
* Encodes the specified PhotoPathResponse message, length delimited. Does not implicitly {@link flashcontrol.PhotoPathResponse.verify|verify} messages.
* @function encodeDelimited
* @memberof flashcontrol.PhotoPathResponse
* @static
* @param {flashcontrol.IPhotoPathResponse} message PhotoPathResponse message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
PhotoPathResponse.encodeDelimited = function encodeDelimited(message, writer) {
return this.encode(message, writer).ldelim();
};
/**
* Decodes a PhotoPathResponse message from the specified reader or buffer.
* @function decode
* @memberof flashcontrol.PhotoPathResponse
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @param {number} [length] Message length if known beforehand
* @returns {flashcontrol.PhotoPathResponse} PhotoPathResponse
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
PhotoPathResponse.decode = function decode(reader, length) {
if (!(reader instanceof $Reader))
reader = $Reader.create(reader);
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flashcontrol.PhotoPathResponse();
while (reader.pos < end) {
var tag = reader.uint32();
switch (tag >>> 3) {
case 1: {
message.filePath = reader.string();
break;
}
case 2: {
message.errorMsg = reader.string();
break;
}
default:
reader.skipType(tag & 7);
break;
}
}
return message;
};
/**
* Decodes a PhotoPathResponse message from the specified reader or buffer, length delimited.
* @function decodeDelimited
* @memberof flashcontrol.PhotoPathResponse
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @returns {flashcontrol.PhotoPathResponse} PhotoPathResponse
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
PhotoPathResponse.decodeDelimited = function decodeDelimited(reader) {
if (!(reader instanceof $Reader))
reader = new $Reader(reader);
return this.decode(reader, reader.uint32());
};
/**
* Verifies a PhotoPathResponse message.
* @function verify
* @memberof flashcontrol.PhotoPathResponse
* @static
* @param {Object.<string,*>} message Plain object to verify
* @returns {string|null} `null` if valid, otherwise the reason why it is not
*/
PhotoPathResponse.verify = function verify(message) {
if (typeof message !== "object" || message === null)
return "object expected";
if (message.filePath != null && message.hasOwnProperty("filePath"))
if (!$util.isString(message.filePath))
return "filePath: string expected";
if (message.errorMsg != null && message.hasOwnProperty("errorMsg"))
if (!$util.isString(message.errorMsg))
return "errorMsg: string expected";
return null;
};
/**
* Creates a PhotoPathResponse message from a plain object. Also converts values to their respective internal types.
* @function fromObject
* @memberof flashcontrol.PhotoPathResponse
* @static
* @param {Object.<string,*>} object Plain object
* @returns {flashcontrol.PhotoPathResponse} PhotoPathResponse
*/
PhotoPathResponse.fromObject = function fromObject(object) {
if (object instanceof $root.flashcontrol.PhotoPathResponse)
return object;
var message = new $root.flashcontrol.PhotoPathResponse();
if (object.filePath != null)
message.filePath = String(object.filePath);
if (object.errorMsg != null)
message.errorMsg = String(object.errorMsg);
return message;
};
/**
* Creates a plain object from a PhotoPathResponse message. Also converts values to other types if specified.
* @function toObject
* @memberof flashcontrol.PhotoPathResponse
* @static
* @param {flashcontrol.PhotoPathResponse} message PhotoPathResponse
* @param {$protobuf.IConversionOptions} [options] Conversion options
* @returns {Object.<string,*>} Plain object
*/
PhotoPathResponse.toObject = function toObject(message, options) {
if (!options)
options = {};
var object = {};
if (options.defaults) {
object.filePath = "";
object.errorMsg = "";
}
if (message.filePath != null && message.hasOwnProperty("filePath"))
object.filePath = message.filePath;
if (message.errorMsg != null && message.hasOwnProperty("errorMsg"))
object.errorMsg = message.errorMsg;
return object;
};
/**
* Converts this PhotoPathResponse to JSON.
* @function toJSON
* @memberof flashcontrol.PhotoPathResponse
* @instance
* @returns {Object.<string,*>} JSON object
*/
PhotoPathResponse.prototype.toJSON = function toJSON() {
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
};
/**
* Gets the default type url for PhotoPathResponse
* @function getTypeUrl
* @memberof flashcontrol.PhotoPathResponse
* @static
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns {string} The default type url
*/
PhotoPathResponse.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
if (typeUrlPrefix === undefined) {
typeUrlPrefix = "type.googleapis.com";
}
return typeUrlPrefix + "/flashcontrol.PhotoPathResponse";
};
return PhotoPathResponse;
})();
flashcontrol.PhotoRequest = (function() {
/**
* Properties of a PhotoRequest.
* @memberof flashcontrol
* @interface IPhotoRequest
* @property {flashcontrol.FlashMode|null} [flashMode] PhotoRequest flashMode
* @property {flashcontrol.CameraType|null} [cameraType] PhotoRequest cameraType
* @property {number|null} [imageWidth] PhotoRequest imageWidth
* @property {number|null} [imageHeight] PhotoRequest imageHeight
*/
/**
* Constructs a new PhotoRequest.
* @memberof flashcontrol
* @classdesc Represents a PhotoRequest.
* @implements IPhotoRequest
* @constructor
* @param {flashcontrol.IPhotoRequest=} [properties] Properties to set
*/
function PhotoRequest(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
}
/**
* PhotoRequest flashMode.
* @member {flashcontrol.FlashMode} flashMode
* @memberof flashcontrol.PhotoRequest
* @instance
*/
PhotoRequest.prototype.flashMode = 0;
/**
* PhotoRequest cameraType.
* @member {flashcontrol.CameraType} cameraType
* @memberof flashcontrol.PhotoRequest
* @instance
*/
PhotoRequest.prototype.cameraType = 0;
/**
* PhotoRequest imageWidth.
* @member {number} imageWidth
* @memberof flashcontrol.PhotoRequest
* @instance
*/
PhotoRequest.prototype.imageWidth = 0;
/**
* PhotoRequest imageHeight.
* @member {number} imageHeight
* @memberof flashcontrol.PhotoRequest
* @instance
*/
PhotoRequest.prototype.imageHeight = 0;
/**
* Creates a new PhotoRequest instance using the specified properties.
* @function create
* @memberof flashcontrol.PhotoRequest
* @static
* @param {flashcontrol.IPhotoRequest=} [properties] Properties to set
* @returns {flashcontrol.PhotoRequest} PhotoRequest instance
*/
PhotoRequest.create = function create(properties) {
return new PhotoRequest(properties);
};
/**
* Encodes the specified PhotoRequest message. Does not implicitly {@link flashcontrol.PhotoRequest.verify|verify} messages.
* @function encode
* @memberof flashcontrol.PhotoRequest
* @static
* @param {flashcontrol.IPhotoRequest} message PhotoRequest message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
PhotoRequest.encode = function encode(message, writer) {
if (!writer)
writer = $Writer.create();
if (message.flashMode != null && Object.hasOwnProperty.call(message, "flashMode"))
writer.uint32(/* id 1, wireType 0 =*/8).int32(message.flashMode);
if (message.cameraType != null && Object.hasOwnProperty.call(message, "cameraType"))
writer.uint32(/* id 2, wireType 0 =*/16).int32(message.cameraType);
if (message.imageWidth != null && Object.hasOwnProperty.call(message, "imageWidth"))
writer.uint32(/* id 3, wireType 0 =*/24).int32(message.imageWidth);
if (message.imageHeight != null && Object.hasOwnProperty.call(message, "imageHeight"))
writer.uint32(/* id 4, wireType 0 =*/32).int32(message.imageHeight);
return writer;
};
/**
* Encodes the specified PhotoRequest message, length delimited. Does not implicitly {@link flashcontrol.PhotoRequest.verify|verify} messages.
* @function encodeDelimited
* @memberof flashcontrol.PhotoRequest
* @static
* @param {flashcontrol.IPhotoRequest} message PhotoRequest message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
PhotoRequest.encodeDelimited = function encodeDelimited(message, writer) {
return this.encode(message, writer).ldelim();
};
/**
* Decodes a PhotoRequest message from the specified reader or buffer.
* @function decode
* @memberof flashcontrol.PhotoRequest
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @param {number} [length] Message length if known beforehand
* @returns {flashcontrol.PhotoRequest} PhotoRequest
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
PhotoRequest.decode = function decode(reader, length) {
if (!(reader instanceof $Reader))
reader = $Reader.create(reader);
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flashcontrol.PhotoRequest();
while (reader.pos < end) {
var tag = reader.uint32();
switch (tag >>> 3) {
case 1: {
message.flashMode = reader.int32();
break;
}
case 2: {
message.cameraType = reader.int32();
break;
}
case 3: {
message.imageWidth = reader.int32();
break;
}
case 4: {
message.imageHeight = reader.int32();
break;
}
default:
reader.skipType(tag & 7);
break;
}
}
return message;
};
/**
* Decodes a PhotoRequest message from the specified reader or buffer, length delimited.
* @function decodeDelimited
* @memberof flashcontrol.PhotoRequest
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @returns {flashcontrol.PhotoRequest} PhotoRequest
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
PhotoRequest.decodeDelimited = function decodeDelimited(reader) {
if (!(reader instanceof $Reader))
reader = new $Reader(reader);
return this.decode(reader, reader.uint32());
};
/**
* Verifies a PhotoRequest message.
* @function verify
* @memberof flashcontrol.PhotoRequest
* @static
* @param {Object.<string,*>} message Plain object to verify
* @returns {string|null} `null` if valid, otherwise the reason why it is not
*/
PhotoRequest.verify = function verify(message) {
if (typeof message !== "object" || message === null)
return "object expected";
if (message.flashMode != null && message.hasOwnProperty("flashMode"))
switch (message.flashMode) {
default:
return "flashMode: enum value expected";
case 0:
case 1:
case 2:
break;
}
if (message.cameraType != null && message.hasOwnProperty("cameraType"))
switch (message.cameraType) {
default:
return "cameraType: enum value expected";
case 0:
case 1:
break;
}
if (message.imageWidth != null && message.hasOwnProperty("imageWidth"))
if (!$util.isInteger(message.imageWidth))
return "imageWidth: integer expected";
if (message.imageHeight != null && message.hasOwnProperty("imageHeight"))
if (!$util.isInteger(message.imageHeight))
return "imageHeight: integer expected";
return null;
};
/**
* Creates a PhotoRequest message from a plain object. Also converts values to their respective internal types.
* @function fromObject
* @memberof flashcontrol.PhotoRequest
* @static
* @param {Object.<string,*>} object Plain object
* @returns {flashcontrol.PhotoRequest} PhotoRequest
*/
PhotoRequest.fromObject = function fromObject(object) {
if (object instanceof $root.flashcontrol.PhotoRequest)
return object;
var message = new $root.flashcontrol.PhotoRequest();
switch (object.flashMode) {
default:
if (typeof object.flashMode === "number") {
message.flashMode = object.flashMode;
break;
}
break;
case "AUTO":
case 0:
message.flashMode = 0;
break;
case "ON":
case 1:
message.flashMode = 1;
break;
case "OFF":
case 2:
message.flashMode = 2;
break;
}
switch (object.cameraType) {
default:
if (typeof object.cameraType === "number") {
message.cameraType = object.cameraType;
break;
}
break;
case "BACK":
case 0:
message.cameraType = 0;
break;
case "FRONT":
case 1:
message.cameraType = 1;
break;
}
if (object.imageWidth != null)
message.imageWidth = object.imageWidth | 0;
if (object.imageHeight != null)
message.imageHeight = object.imageHeight | 0;
return message;
};
/**
* Creates a plain object from a PhotoRequest message. Also converts values to other types if specified.
* @function toObject
* @memberof flashcontrol.PhotoRequest
* @static
* @param {flashcontrol.PhotoRequest} message PhotoRequest
* @param {$protobuf.IConversionOptions} [options] Conversion options
* @returns {Object.<string,*>} Plain object
*/
PhotoRequest.toObject = function toObject(message, options) {
if (!options)
options = {};
var object = {};
if (options.defaults) {
object.flashMode = options.enums === String ? "AUTO" : 0;
object.cameraType = options.enums === String ? "BACK" : 0;
object.imageWidth = 0;
object.imageHeight = 0;
}
if (message.flashMode != null && message.hasOwnProperty("flashMode"))
object.flashMode = options.enums === String ? $root.flashcontrol.FlashMode[message.flashMode] === undefined ? message.flashMode : $root.flashcontrol.FlashMode[message.flashMode] : message.flashMode;
if (message.cameraType != null && message.hasOwnProperty("cameraType"))
object.cameraType = options.enums === String ? $root.flashcontrol.CameraType[message.cameraType] === undefined ? message.cameraType : $root.flashcontrol.CameraType[message.cameraType] : message.cameraType;
if (message.imageWidth != null && message.hasOwnProperty("imageWidth"))
object.imageWidth = message.imageWidth;
if (message.imageHeight != null && message.hasOwnProperty("imageHeight"))
object.imageHeight = message.imageHeight;
return object;
};
/**
* Converts this PhotoRequest to JSON.
* @function toJSON
* @memberof flashcontrol.PhotoRequest
* @instance
* @returns {Object.<string,*>} JSON object
*/
PhotoRequest.prototype.toJSON = function toJSON() {
return this.constructor.toObject(this, $protobuf.util.toJSONOptions);
};
/**
* Gets the default type url for PhotoRequest
* @function getTypeUrl
* @memberof flashcontrol.PhotoRequest
* @static
* @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns {string} The default type url
*/
PhotoRequest.getTypeUrl = function getTypeUrl(typeUrlPrefix) {
if (typeUrlPrefix === undefined) {
typeUrlPrefix = "type.googleapis.com";
}
return typeUrlPrefix + "/flashcontrol.PhotoRequest";
};
return PhotoRequest;
})();
flashcontrol.PhotoResponse = (function() {
/**
* Properties of a PhotoResponse.
* @memberof flashcontrol
* @interface IPhotoResponse
* @property {Uint8Array|null} [imageData] PhotoResponse imageData
* @property {string|null} [filePath] PhotoResponse filePath
* @property {string|null} [imageFormat] PhotoResponse imageFormat
*/
/**
* Constructs a new PhotoResponse.
* @memberof flashcontrol
* @classdesc Represents a PhotoResponse.
* @implements IPhotoResponse
* @constructor
* @param {flashcontrol.IPhotoResponse=} [properties] Properties to set
*/
function PhotoResponse(properties) {
if (properties)
for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
if (properties[keys[i]] != null)
this[keys[i]] = properties[keys[i]];
}
/**
* PhotoResponse imageData.
* @member {Uint8Array} imageData
* @memberof flashcontrol.PhotoResponse
* @instance
*/
PhotoResponse.prototype.imageData = $util.newBuffer([]);
/**
* PhotoResponse filePath.
* @member {string} filePath
* @memberof flashcontrol.PhotoResponse
* @instance
*/
PhotoResponse.prototype.filePath = "";
/**
* PhotoResponse imageFormat.
* @member {string} imageFormat
* @memberof flashcontrol.PhotoResponse
* @instance
*/
PhotoResponse.prototype.imageFormat = "";
/**
* Creates a new PhotoResponse instance using the specified properties.
* @function create
* @memberof flashcontrol.PhotoResponse
* @static
* @param {flashcontrol.IPhotoResponse=} [properties] Properties to set
* @returns {flashcontrol.PhotoResponse} PhotoResponse instance
*/
PhotoResponse.create = function create(properties) {
return new PhotoResponse(properties);
};
/**
* Encodes the specified PhotoResponse message. Does not implicitly {@link flashcontrol.PhotoResponse.verify|verify} messages.
* @function encode
* @memberof flashcontrol.PhotoResponse
* @static
* @param {flashcontrol.IPhotoResponse} message PhotoResponse message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
PhotoResponse.encode = function encode(message, writer) {
if (!writer)
writer = $Writer.create();
if (message.imageData != null && Object.hasOwnProperty.call(message, "imageData"))
writer.uint32(/* id 1, wireType 2 =*/10).bytes(message.imageData);
if (message.filePath != null && Object.hasOwnProperty.call(message, "filePath"))
writer.uint32(/* id 2, wireType 2 =*/18).string(message.filePath);
if (message.imageFormat != null && Object.hasOwnProperty.call(message, "imageFormat"))
writer.uint32(/* id 3, wireType 2 =*/26).string(message.imageFormat);
return writer;
};
/**
* Encodes the specified PhotoResponse message, length delimited. Does not implicitly {@link flashcontrol.PhotoResponse.verify|verify} messages.
* @function encodeDelimited
* @memberof flashcontrol.PhotoResponse
* @static
* @param {flashcontrol.IPhotoResponse} message PhotoResponse message or plain object to encode
* @param {$protobuf.Writer} [writer] Writer to encode to
* @returns {$protobuf.Writer} Writer
*/
PhotoResponse.encodeDelimited = function encodeDelimited(message, writer) {
return this.encode(message, writer).ldelim();
};
/**
* Decodes a PhotoResponse message from the specified reader or buffer.
* @function decode
* @memberof flashcontrol.PhotoResponse
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @param {number} [length] Message length if known beforehand
* @returns {flashcontrol.PhotoResponse} PhotoResponse
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
PhotoResponse.decode = function decode(reader, length) {
if (!(reader instanceof $Reader))
reader = $Reader.create(reader);
var end = length === undefined ? reader.len : reader.pos + length, message = new $root.flashcontrol.PhotoResponse();
while (reader.pos < end) {
var tag = reader.uint32();
switch (tag >>> 3) {
case 1: {
message.imageData = reader.bytes();
break;
}
case 2: {
message.filePath = reader.string();
break;
}
case 3: {
message.imageFormat = reader.string();
break;
}
default:
reader.skipType(tag & 7);
break;
}
}
return message;
};
/**
* Decodes a PhotoResponse message from the specified reader or buffer, length delimited.
* @function decodeDelimited
* @memberof flashcontrol.PhotoResponse
* @static
* @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from
* @returns {flashcontrol.PhotoResponse} PhotoResponse
* @throws {Error} If the payload is not a reader or valid buffer
* @throws {$protobuf.util.ProtocolError} If required fields are missing
*/
PhotoResponse.decodeDelimited = function decodeDelimited(reader) {
if (!(reader instanceof $Reader))
reader = new $Reader(reader);
return this.decode(reader, reader.uint32());
};
/**
* Verifies a PhotoResponse message.
* @function verify
* @memberof flashcontrol.PhotoResponse
* @static
* @param {Object.<string,*>} message Plain object to verify
* @returns {string|null} `null` if valid, otherwise the reason why it is not
*/
PhotoResponse.verify = function verify(message) {
if (typeof message !== "object" || message === null)
return "object expected";
if (message.imageData != null && message.hasOwnProperty("imageData"))