| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2013 Google Inc. | 3 * Copyright 2013 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
| 9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #ifndef TALK_APP_WEBRTC_WEBRTCSESSIONDESCRIPTIONFACTORY_H_ | 28 #ifndef TALK_APP_WEBRTC_WEBRTCSESSIONDESCRIPTIONFACTORY_H_ |
| 29 #define TALK_APP_WEBRTC_WEBRTCSESSIONDESCRIPTIONFACTORY_H_ | 29 #define TALK_APP_WEBRTC_WEBRTCSESSIONDESCRIPTIONFACTORY_H_ |
| 30 | 30 |
| 31 #include "talk/app/webrtc/dtlsidentitystore.h" |
| 31 #include "talk/app/webrtc/peerconnectioninterface.h" | 32 #include "talk/app/webrtc/peerconnectioninterface.h" |
| 33 #include "talk/session/media/mediasession.h" |
| 32 #include "webrtc/p2p/base/transportdescriptionfactory.h" | 34 #include "webrtc/p2p/base/transportdescriptionfactory.h" |
| 33 #include "talk/session/media/mediasession.h" | |
| 34 #include "webrtc/base/messagehandler.h" | 35 #include "webrtc/base/messagehandler.h" |
| 35 | 36 |
| 36 namespace cricket { | 37 namespace cricket { |
| 37 class ChannelManager; | 38 class ChannelManager; |
| 38 class TransportDescriptionFactory; | 39 class TransportDescriptionFactory; |
| 39 } // namespace cricket | 40 } // namespace cricket |
| 40 | 41 |
| 41 namespace webrtc { | 42 namespace webrtc { |
| 42 class CreateSessionDescriptionObserver; | 43 class CreateSessionDescriptionObserver; |
| 43 class MediaConstraintsInterface; | 44 class MediaConstraintsInterface; |
| 44 class MediaStreamSignaling; | 45 class MediaStreamSignaling; |
| 45 class SessionDescriptionInterface; | 46 class SessionDescriptionInterface; |
| 46 class WebRtcSession; | 47 class WebRtcSession; |
| 47 | 48 |
| 48 // DTLS identity request callback class. | 49 // DTLS identity request callback class. |
| 49 class WebRtcIdentityRequestObserver : public DTLSIdentityRequestObserver, | 50 class WebRtcIdentityRequestObserver : public DtlsIdentityRequestObserver, |
| 50 public sigslot::has_slots<> { | 51 public sigslot::has_slots<> { |
| 51 public: | 52 public: |
| 52 // DTLSIdentityRequestObserver overrides. | 53 // DtlsIdentityRequestObserver overrides. |
| 53 void OnFailure(int error) override; | 54 void OnFailure(int error) override; |
| 54 void OnSuccess(const std::string& der_cert, | 55 void OnSuccess(const std::string& der_cert, |
| 55 const std::string& der_private_key) override; | 56 const std::string& der_private_key) override; |
| 56 void OnSuccessWithIdentityObj( | 57 void OnSuccessWithIdentityObj( |
| 57 rtc::scoped_ptr<rtc::SSLIdentity> identity) override; | 58 rtc::scoped_ptr<rtc::SSLIdentity> identity) override; |
| 58 | 59 |
| 59 sigslot::signal1<int> SignalRequestFailed; | 60 sigslot::signal1<int> SignalRequestFailed; |
| 60 sigslot::signal1<rtc::SSLIdentity*> SignalIdentityReady; | 61 sigslot::signal1<rtc::SSLIdentity*> SignalIdentityReady; |
| 61 }; | 62 }; |
| 62 | 63 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 84 // It queues the create offer/answer request until the DTLS identity | 85 // It queues the create offer/answer request until the DTLS identity |
| 85 // request has completed, i.e. when OnIdentityRequestFailed or OnIdentityReady | 86 // request has completed, i.e. when OnIdentityRequestFailed or OnIdentityReady |
| 86 // is called. | 87 // is called. |
| 87 class WebRtcSessionDescriptionFactory : public rtc::MessageHandler, | 88 class WebRtcSessionDescriptionFactory : public rtc::MessageHandler, |
| 88 public sigslot::has_slots<> { | 89 public sigslot::has_slots<> { |
| 89 public: | 90 public: |
| 90 WebRtcSessionDescriptionFactory( | 91 WebRtcSessionDescriptionFactory( |
| 91 rtc::Thread* signaling_thread, | 92 rtc::Thread* signaling_thread, |
| 92 cricket::ChannelManager* channel_manager, | 93 cricket::ChannelManager* channel_manager, |
| 93 MediaStreamSignaling* mediastream_signaling, | 94 MediaStreamSignaling* mediastream_signaling, |
| 94 DTLSIdentityServiceInterface* dtls_identity_service, | 95 DtlsIdentityStoreInterface* dtls_identity_store, |
| 95 // TODO(jiayl): remove the dependency on session once b/10226852 is fixed. | 96 // TODO(jiayl): remove the dependency on session once b/10226852 is fixed. |
| 96 WebRtcSession* session, | 97 WebRtcSession* session, |
| 97 const std::string& session_id, | 98 const std::string& session_id, |
| 98 cricket::DataChannelType dct, | 99 cricket::DataChannelType dct, |
| 99 bool dtls_enabled); | 100 bool dtls_enabled); |
| 100 virtual ~WebRtcSessionDescriptionFactory(); | 101 virtual ~WebRtcSessionDescriptionFactory(); |
| 101 | 102 |
| 102 static void CopyCandidatesFromSessionDescription( | 103 static void CopyCandidatesFromSessionDescription( |
| 103 const SessionDescriptionInterface* source_desc, | 104 const SessionDescriptionInterface* source_desc, |
| 104 SessionDescriptionInterface* dest_desc); | 105 SessionDescriptionInterface* dest_desc); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 void OnIdentityRequestFailed(int error); | 144 void OnIdentityRequestFailed(int error); |
| 144 void SetIdentity(rtc::SSLIdentity* identity); | 145 void SetIdentity(rtc::SSLIdentity* identity); |
| 145 | 146 |
| 146 std::queue<CreateSessionDescriptionRequest> | 147 std::queue<CreateSessionDescriptionRequest> |
| 147 create_session_description_requests_; | 148 create_session_description_requests_; |
| 148 rtc::Thread* signaling_thread_; | 149 rtc::Thread* signaling_thread_; |
| 149 MediaStreamSignaling* mediastream_signaling_; | 150 MediaStreamSignaling* mediastream_signaling_; |
| 150 cricket::TransportDescriptionFactory transport_desc_factory_; | 151 cricket::TransportDescriptionFactory transport_desc_factory_; |
| 151 cricket::MediaSessionDescriptionFactory session_desc_factory_; | 152 cricket::MediaSessionDescriptionFactory session_desc_factory_; |
| 152 uint64 session_version_; | 153 uint64 session_version_; |
| 153 rtc::scoped_ptr<DTLSIdentityServiceInterface> identity_service_; | 154 DtlsIdentityStoreInterface* dtls_identity_store_; |
| 154 rtc::scoped_refptr<WebRtcIdentityRequestObserver> | 155 rtc::scoped_refptr<WebRtcIdentityRequestObserver> |
| 155 identity_request_observer_; | 156 identity_request_observer_; |
| 156 WebRtcSession* session_; | 157 WebRtcSession* session_; |
| 157 std::string session_id_; | 158 std::string session_id_; |
| 158 cricket::DataChannelType data_channel_type_; | 159 cricket::DataChannelType data_channel_type_; |
| 159 IdentityRequestState identity_request_state_; | 160 IdentityRequestState identity_request_state_; |
| 160 | 161 |
| 161 DISALLOW_COPY_AND_ASSIGN(WebRtcSessionDescriptionFactory); | 162 DISALLOW_COPY_AND_ASSIGN(WebRtcSessionDescriptionFactory); |
| 162 }; | 163 }; |
| 163 } // namespace webrtc | 164 } // namespace webrtc |
| 164 | 165 |
| 165 #endif // TALK_APP_WEBRTC_WEBRTCSESSIONDESCRIPTIONFACTORY_H_ | 166 #endif // TALK_APP_WEBRTC_WEBRTCSESSIONDESCRIPTIONFACTORY_H_ |
| OLD | NEW |