In https://webrtc-review.googlesource.com/c/src/+/1560 we moved WebRTC from src/webrtc to src/ (in order to preserve an healthy git history). This CL takes care of fixing header guards, #include paths, etc... NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iea91618212bee0af16aa3f05071eab8f93706578 Reviewed-on: https://webrtc-review.googlesource.com/1561 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19846}
137 lines
3.9 KiB
C++
137 lines
3.9 KiB
C++
/*
|
|
* Copyright 2012 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_
|
|
#define EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_
|
|
|
|
#include <deque>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "api/mediastreaminterface.h"
|
|
#include "api/peerconnectioninterface.h"
|
|
#include "examples/peerconnection/client/main_wnd.h"
|
|
#include "examples/peerconnection/client/peer_connection_client.h"
|
|
|
|
namespace webrtc {
|
|
class VideoCaptureModule;
|
|
} // namespace webrtc
|
|
|
|
namespace cricket {
|
|
class VideoRenderer;
|
|
} // namespace cricket
|
|
|
|
class Conductor
|
|
: public webrtc::PeerConnectionObserver,
|
|
public webrtc::CreateSessionDescriptionObserver,
|
|
public PeerConnectionClientObserver,
|
|
public MainWndCallback {
|
|
public:
|
|
enum CallbackID {
|
|
MEDIA_CHANNELS_INITIALIZED = 1,
|
|
PEER_CONNECTION_CLOSED,
|
|
SEND_MESSAGE_TO_PEER,
|
|
NEW_STREAM_ADDED,
|
|
STREAM_REMOVED,
|
|
};
|
|
|
|
Conductor(PeerConnectionClient* client, MainWindow* main_wnd);
|
|
|
|
bool connection_active() const;
|
|
|
|
virtual void Close();
|
|
|
|
protected:
|
|
~Conductor();
|
|
bool InitializePeerConnection();
|
|
bool ReinitializePeerConnectionForLoopback();
|
|
bool CreatePeerConnection(bool dtls);
|
|
void DeletePeerConnection();
|
|
void EnsureStreamingUI();
|
|
void AddStreams();
|
|
std::unique_ptr<cricket::VideoCapturer> OpenVideoCaptureDevice();
|
|
|
|
//
|
|
// PeerConnectionObserver implementation.
|
|
//
|
|
|
|
void OnSignalingChange(
|
|
webrtc::PeerConnectionInterface::SignalingState new_state) override{};
|
|
void OnAddStream(
|
|
rtc::scoped_refptr<webrtc::MediaStreamInterface> stream) override;
|
|
void OnRemoveStream(
|
|
rtc::scoped_refptr<webrtc::MediaStreamInterface> stream) override;
|
|
void OnDataChannel(
|
|
rtc::scoped_refptr<webrtc::DataChannelInterface> channel) override {}
|
|
void OnRenegotiationNeeded() override {}
|
|
void OnIceConnectionChange(
|
|
webrtc::PeerConnectionInterface::IceConnectionState new_state) override{};
|
|
void OnIceGatheringChange(
|
|
webrtc::PeerConnectionInterface::IceGatheringState new_state) override{};
|
|
void OnIceCandidate(const webrtc::IceCandidateInterface* candidate) override;
|
|
void OnIceConnectionReceivingChange(bool receiving) override {}
|
|
|
|
//
|
|
// PeerConnectionClientObserver implementation.
|
|
//
|
|
|
|
void OnSignedIn() override;
|
|
|
|
void OnDisconnected() override;
|
|
|
|
void OnPeerConnected(int id, const std::string& name) override;
|
|
|
|
void OnPeerDisconnected(int id) override;
|
|
|
|
void OnMessageFromPeer(int peer_id, const std::string& message) override;
|
|
|
|
void OnMessageSent(int err) override;
|
|
|
|
void OnServerConnectionFailure() override;
|
|
|
|
//
|
|
// MainWndCallback implementation.
|
|
//
|
|
|
|
void StartLogin(const std::string& server, int port) override;
|
|
|
|
void DisconnectFromServer() override;
|
|
|
|
void ConnectToPeer(int peer_id) override;
|
|
|
|
void DisconnectFromCurrentPeer() override;
|
|
|
|
void UIThreadCallback(int msg_id, void* data) override;
|
|
|
|
// CreateSessionDescriptionObserver implementation.
|
|
void OnSuccess(webrtc::SessionDescriptionInterface* desc) override;
|
|
void OnFailure(const std::string& error) override;
|
|
|
|
protected:
|
|
// Send a message to the remote peer.
|
|
void SendMessage(const std::string& json_object);
|
|
|
|
int peer_id_;
|
|
bool loopback_;
|
|
rtc::scoped_refptr<webrtc::PeerConnectionInterface> peer_connection_;
|
|
rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface>
|
|
peer_connection_factory_;
|
|
PeerConnectionClient* client_;
|
|
MainWindow* main_wnd_;
|
|
std::deque<std::string*> pending_messages_;
|
|
std::map<std::string, rtc::scoped_refptr<webrtc::MediaStreamInterface> >
|
|
active_streams_;
|
|
std::string server_;
|
|
};
|
|
|
|
#endif // EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_
|