Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: webrtc/examples/objc/AppRTCMobile/ARDAppClient.m

Issue 2770113004: Pass settings model to ARDAppClient instead of individual settings. (Closed)
Patch Set: Undo change Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2014 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2014 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 91
92 - (void)timerDidFire:(NSTimer *)timer { 92 - (void)timerDidFire:(NSTimer *)timer {
93 _timerHandler(); 93 _timerHandler();
94 } 94 }
95 95
96 @end 96 @end
97 97
98 @implementation ARDAppClient { 98 @implementation ARDAppClient {
99 RTCFileLogger *_fileLogger; 99 RTCFileLogger *_fileLogger;
100 ARDTimerProxy *_statsTimer; 100 ARDTimerProxy *_statsTimer;
101 RTCMediaConstraints *_cameraConstraints; 101 ARDSettingsModel *_settings;
102 NSNumber *_maxBitrate;
103 NSString *_videoCodec;
104 } 102 }
105 103
106 @synthesize shouldGetStats = _shouldGetStats; 104 @synthesize shouldGetStats = _shouldGetStats;
107 @synthesize state = _state; 105 @synthesize state = _state;
108 @synthesize delegate = _delegate; 106 @synthesize delegate = _delegate;
109 @synthesize roomServerClient = _roomServerClient; 107 @synthesize roomServerClient = _roomServerClient;
110 @synthesize channel = _channel; 108 @synthesize channel = _channel;
111 @synthesize loopbackChannel = _loopbackChannel; 109 @synthesize loopbackChannel = _loopbackChannel;
112 @synthesize turnClient = _turnClient; 110 @synthesize turnClient = _turnClient;
113 @synthesize peerConnection = _peerConnection; 111 @synthesize peerConnection = _peerConnection;
114 @synthesize factory = _factory; 112 @synthesize factory = _factory;
115 @synthesize messageQueue = _messageQueue; 113 @synthesize messageQueue = _messageQueue;
116 @synthesize isTurnComplete = _isTurnComplete; 114 @synthesize isTurnComplete = _isTurnComplete;
117 @synthesize hasReceivedSdp = _hasReceivedSdp; 115 @synthesize hasReceivedSdp = _hasReceivedSdp;
118 @synthesize roomId = _roomId; 116 @synthesize roomId = _roomId;
119 @synthesize clientId = _clientId; 117 @synthesize clientId = _clientId;
120 @synthesize isInitiator = _isInitiator; 118 @synthesize isInitiator = _isInitiator;
121 @synthesize iceServers = _iceServers; 119 @synthesize iceServers = _iceServers;
122 @synthesize webSocketURL = _websocketURL; 120 @synthesize webSocketURL = _websocketURL;
123 @synthesize webSocketRestURL = _websocketRestURL; 121 @synthesize webSocketRestURL = _websocketRestURL;
124 @synthesize defaultPeerConnectionConstraints = 122 @synthesize defaultPeerConnectionConstraints =
125 _defaultPeerConnectionConstraints; 123 _defaultPeerConnectionConstraints;
126 @synthesize isLoopback = _isLoopback; 124 @synthesize isLoopback = _isLoopback;
127 @synthesize isAudioOnly = _isAudioOnly; 125 @synthesize isAudioOnly = _isAudioOnly;
128 @synthesize shouldMakeAecDump = _shouldMakeAecDump; 126 @synthesize shouldMakeAecDump = _shouldMakeAecDump;
129 @synthesize shouldUseLevelControl = _shouldUseLevelControl; 127 @synthesize shouldUseLevelControl = _shouldUseLevelControl;
130 128
131 - (instancetype)init { 129 - (instancetype)init {
132 return [self initWithDelegate:nil preferVideoCodec:@"H264"]; 130 return [self initWithDelegate:nil];
133 } 131 }
134 132
135 - (instancetype)initWithDelegate:(id<ARDAppClientDelegate>)delegate 133 - (instancetype)initWithDelegate:(id<ARDAppClientDelegate>)delegate {
136 preferVideoCodec:(NSString *)codec {
137 if (self = [super init]) { 134 if (self = [super init]) {
138 _roomServerClient = [[ARDAppEngineClient alloc] init]; 135 _roomServerClient = [[ARDAppEngineClient alloc] init];
139 _delegate = delegate; 136 _delegate = delegate;
140 _videoCodec = codec;
141 NSURL *turnRequestURL = [NSURL URLWithString:kARDIceServerRequestUrl]; 137 NSURL *turnRequestURL = [NSURL URLWithString:kARDIceServerRequestUrl];
142 _turnClient = [[ARDTURNClient alloc] initWithURL:turnRequestURL]; 138 _turnClient = [[ARDTURNClient alloc] initWithURL:turnRequestURL];
143 [self configure]; 139 [self configure];
144 } 140 }
145 return self; 141 return self;
146 } 142 }
147 143
148 // TODO(tkchin): Provide signaling channel factory interface so we can recreate 144 // TODO(tkchin): Provide signaling channel factory interface so we can recreate
149 // channel if we need to on network failure. Also, make this the default public 145 // channel if we need to on network failure. Also, make this the default public
150 // constructor. 146 // constructor.
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 202
207 - (void)setState:(ARDAppClientState)state { 203 - (void)setState:(ARDAppClientState)state {
208 if (_state == state) { 204 if (_state == state) {
209 return; 205 return;
210 } 206 }
211 _state = state; 207 _state = state;
212 [_delegate appClient:self didChangeState:_state]; 208 [_delegate appClient:self didChangeState:_state];
213 } 209 }
214 210
215 - (void)connectToRoomWithId:(NSString *)roomId 211 - (void)connectToRoomWithId:(NSString *)roomId
212 usingSettings:(ARDSettingsModel *)settings
216 isLoopback:(BOOL)isLoopback 213 isLoopback:(BOOL)isLoopback
217 isAudioOnly:(BOOL)isAudioOnly 214 isAudioOnly:(BOOL)isAudioOnly
218 shouldMakeAecDump:(BOOL)shouldMakeAecDump 215 shouldMakeAecDump:(BOOL)shouldMakeAecDump
219 shouldUseLevelControl:(BOOL)shouldUseLevelControl { 216 shouldUseLevelControl:(BOOL)shouldUseLevelControl {
220 NSParameterAssert(roomId.length); 217 NSParameterAssert(roomId.length);
221 NSParameterAssert(_state == kARDAppClientStateDisconnected); 218 NSParameterAssert(_state == kARDAppClientStateDisconnected);
219 _settings = settings;
222 _isLoopback = isLoopback; 220 _isLoopback = isLoopback;
223 _isAudioOnly = isAudioOnly; 221 _isAudioOnly = isAudioOnly;
224 _shouldMakeAecDump = shouldMakeAecDump; 222 _shouldMakeAecDump = shouldMakeAecDump;
225 _shouldUseLevelControl = shouldUseLevelControl; 223 _shouldUseLevelControl = shouldUseLevelControl;
226 self.state = kARDAppClientStateConnecting; 224 self.state = kARDAppClientStateConnecting;
227 225
228 #if defined(WEBRTC_IOS) 226 #if defined(WEBRTC_IOS)
229 if (kARDAppClientEnableTracing) { 227 if (kARDAppClientEnableTracing) {
230 NSString *filePath = [self documentsFilePathForFileName:@"webrtc-trace.txt"] ; 228 NSString *filePath = [self documentsFilePathForFileName:@"webrtc-trace.txt"] ;
231 RTCStartInternalCapture(filePath); 229 RTCStartInternalCapture(filePath);
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 #endif 310 #endif
313 _peerConnection = nil; 311 _peerConnection = nil;
314 self.state = kARDAppClientStateDisconnected; 312 self.state = kARDAppClientStateDisconnected;
315 #if defined(WEBRTC_IOS) 313 #if defined(WEBRTC_IOS)
316 if (kARDAppClientEnableTracing) { 314 if (kARDAppClientEnableTracing) {
317 RTCStopInternalCapture(); 315 RTCStopInternalCapture();
318 } 316 }
319 #endif 317 #endif
320 } 318 }
321 319
322 - (void)setCameraConstraints:(RTCMediaConstraints *)mediaConstraints {
323 _cameraConstraints = mediaConstraints;
324 }
325
326 - (void)setMaxBitrate:(NSNumber *)maxBitrate {
327 _maxBitrate = maxBitrate;
328 }
329
330 #pragma mark - ARDSignalingChannelDelegate 320 #pragma mark - ARDSignalingChannelDelegate
331 321
332 - (void)channel:(id<ARDSignalingChannel>)channel 322 - (void)channel:(id<ARDSignalingChannel>)channel
333 didReceiveMessage:(ARDSignalingMessage *)message { 323 didReceiveMessage:(ARDSignalingMessage *)message {
334 switch (message.type) { 324 switch (message.type) {
335 case kARDSignalingMessageTypeOffer: 325 case kARDSignalingMessageTypeOffer:
336 case kARDSignalingMessageTypeAnswer: 326 case kARDSignalingMessageTypeAnswer:
337 // Offers and answers must be processed before any other message, so we 327 // Offers and answers must be processed before any other message, so we
338 // place them at the front of the queue. 328 // place them at the front of the queue.
339 _hasReceivedSdp = YES; 329 _hasReceivedSdp = YES;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 NSError *sdpError = 441 NSError *sdpError =
452 [[NSError alloc] initWithDomain:kARDAppClientErrorDomain 442 [[NSError alloc] initWithDomain:kARDAppClientErrorDomain
453 code:kARDAppClientErrorCreateSDP 443 code:kARDAppClientErrorCreateSDP
454 userInfo:userInfo]; 444 userInfo:userInfo];
455 [_delegate appClient:self didError:sdpError]; 445 [_delegate appClient:self didError:sdpError];
456 return; 446 return;
457 } 447 }
458 // Prefer codec from settings if available. 448 // Prefer codec from settings if available.
459 RTCSessionDescription *sdpPreferringCodec = 449 RTCSessionDescription *sdpPreferringCodec =
460 [ARDSDPUtils descriptionForDescription:sdp 450 [ARDSDPUtils descriptionForDescription:sdp
461 preferredVideoCodec:_videoCodec]; 451 preferredVideoCodec:[_settings currentVideoCodecSetti ngFromStore]];
462 __weak ARDAppClient *weakSelf = self; 452 __weak ARDAppClient *weakSelf = self;
463 [_peerConnection setLocalDescription:sdpPreferringCodec 453 [_peerConnection setLocalDescription:sdpPreferringCodec
464 completionHandler:^(NSError *error) { 454 completionHandler:^(NSError *error) {
465 ARDAppClient *strongSelf = weakSelf; 455 ARDAppClient *strongSelf = weakSelf;
466 [strongSelf peerConnection:strongSelf.peerConnection 456 [strongSelf peerConnection:strongSelf.peerConnection
467 didSetSessionDescriptionWithError:error]; 457 didSetSessionDescriptionWithError:error];
468 }]; 458 }];
469 ARDSessionDescriptionMessage *message = 459 ARDSessionDescriptionMessage *message =
470 [[ARDSessionDescriptionMessage alloc] 460 [[ARDSessionDescriptionMessage alloc]
471 initWithDescription:sdpPreferringCodec]; 461 initWithDescription:sdpPreferringCodec];
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 message.type == kARDSignalingMessageTypeBye); 595 message.type == kARDSignalingMessageTypeBye);
606 switch (message.type) { 596 switch (message.type) {
607 case kARDSignalingMessageTypeOffer: 597 case kARDSignalingMessageTypeOffer:
608 case kARDSignalingMessageTypeAnswer: { 598 case kARDSignalingMessageTypeAnswer: {
609 ARDSessionDescriptionMessage *sdpMessage = 599 ARDSessionDescriptionMessage *sdpMessage =
610 (ARDSessionDescriptionMessage *)message; 600 (ARDSessionDescriptionMessage *)message;
611 RTCSessionDescription *description = sdpMessage.sessionDescription; 601 RTCSessionDescription *description = sdpMessage.sessionDescription;
612 // Prefer codec from settings if available. 602 // Prefer codec from settings if available.
613 RTCSessionDescription *sdpPreferringCodec = 603 RTCSessionDescription *sdpPreferringCodec =
614 [ARDSDPUtils descriptionForDescription:description 604 [ARDSDPUtils descriptionForDescription:description
615 preferredVideoCodec:_videoCodec]; 605 preferredVideoCodec:[_settings currentVideoCodecSet tingFromStore]];
616 __weak ARDAppClient *weakSelf = self; 606 __weak ARDAppClient *weakSelf = self;
617 [_peerConnection setRemoteDescription:sdpPreferringCodec 607 [_peerConnection setRemoteDescription:sdpPreferringCodec
618 completionHandler:^(NSError *error) { 608 completionHandler:^(NSError *error) {
619 ARDAppClient *strongSelf = weakSelf; 609 ARDAppClient *strongSelf = weakSelf;
620 [strongSelf peerConnection:strongSelf.peerConnection 610 [strongSelf peerConnection:strongSelf.peerConnection
621 didSetSessionDescriptionWithError:error]; 611 didSetSessionDescriptionWithError:error];
622 }]; 612 }];
623 break; 613 break;
624 } 614 }
625 case kARDSignalingMessageTypeCandidate: { 615 case kARDSignalingMessageTypeCandidate: {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 [_delegate appClient:self didReceiveLocalVideoTrack:track]; 671 [_delegate appClient:self didReceiveLocalVideoTrack:track];
682 } 672 }
683 673
684 return sender; 674 return sender;
685 } 675 }
686 676
687 - (void)setMaxBitrateForPeerConnectionVideoSender { 677 - (void)setMaxBitrateForPeerConnectionVideoSender {
688 for (RTCRtpSender *sender in _peerConnection.senders) { 678 for (RTCRtpSender *sender in _peerConnection.senders) {
689 if (sender.track != nil) { 679 if (sender.track != nil) {
690 if ([sender.track.kind isEqualToString:kARDVideoTrackKind]) { 680 if ([sender.track.kind isEqualToString:kARDVideoTrackKind]) {
691 [self setMaxBitrate:_maxBitrate forVideoSender:sender]; 681 [self setMaxBitrate:[_settings currentMaxBitrateSettingFromStore] forVid eoSender:sender];
692 } 682 }
693 } 683 }
694 } 684 }
695 } 685 }
696 686
697 - (void)setMaxBitrate:(NSNumber *)maxBitrate forVideoSender:(RTCRtpSender *)send er { 687 - (void)setMaxBitrate:(NSNumber *)maxBitrate forVideoSender:(RTCRtpSender *)send er {
698 if (maxBitrate.intValue <= 0) { 688 if (maxBitrate.intValue <= 0) {
699 return; 689 return;
700 } 690 }
701 691
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 NSString *valueLevelControl = _shouldUseLevelControl ? 757 NSString *valueLevelControl = _shouldUseLevelControl ?
768 kRTCMediaConstraintsValueTrue : kRTCMediaConstraintsValueFalse; 758 kRTCMediaConstraintsValueTrue : kRTCMediaConstraintsValueFalse;
769 NSDictionary *mandatoryConstraints = @{ kRTCMediaConstraintsLevelControl : va lueLevelControl }; 759 NSDictionary *mandatoryConstraints = @{ kRTCMediaConstraintsLevelControl : va lueLevelControl };
770 RTCMediaConstraints *constraints = 760 RTCMediaConstraints *constraints =
771 [[RTCMediaConstraints alloc] initWithMandatoryConstraints:mandatoryConstr aints 761 [[RTCMediaConstraints alloc] initWithMandatoryConstraints:mandatoryConstr aints
772 optionalConstraints:nil]; 762 optionalConstraints:nil];
773 return constraints; 763 return constraints;
774 } 764 }
775 765
776 - (RTCMediaConstraints *)cameraConstraints { 766 - (RTCMediaConstraints *)cameraConstraints {
777 return _cameraConstraints; 767 RTCMediaConstraints *cameraConstraints = [[RTCMediaConstraints alloc]
768 initWithMandatoryConstraints:nil
769 optionalConstraints:[_settings currentMediaConstraintFromStoreAsR TCDictionary]];
770 return cameraConstraints;
778 } 771 }
779 772
780 - (RTCMediaConstraints *)defaultAnswerConstraints { 773 - (RTCMediaConstraints *)defaultAnswerConstraints {
781 return [self defaultOfferConstraints]; 774 return [self defaultOfferConstraints];
782 } 775 }
783 776
784 - (RTCMediaConstraints *)defaultOfferConstraints { 777 - (RTCMediaConstraints *)defaultOfferConstraints {
785 NSDictionary *mandatoryConstraints = @{ 778 NSDictionary *mandatoryConstraints = @{
786 @"OfferToReceiveAudio" : @"true", 779 @"OfferToReceiveAudio" : @"true",
787 @"OfferToReceiveVideo" : @"true" 780 @"OfferToReceiveVideo" : @"true"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 code:kARDAppClientErrorInvalidRoom 850 code:kARDAppClientErrorInvalidRoom
858 userInfo:@{ 851 userInfo:@{
859 NSLocalizedDescriptionKey: @"Invalid room.", 852 NSLocalizedDescriptionKey: @"Invalid room.",
860 }]; 853 }];
861 break; 854 break;
862 } 855 }
863 return error; 856 return error;
864 } 857 }
865 858
866 @end 859 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698