The previously disabled warnings that were inherited from talk/build/common.gypi are now replaced by target-specific disabling of only the failing warnings. Additional disabling was needed since the stricter compilation warnings that applies to code in webrtc/. License headers will be updated in a follow-up CL. Other modifications: * Updated the header guards. * Sorted the includes using chromium/src/tools/sort-headers.py except for these files: talk/app/webrtc/peerconnectionendtoend_unittest.cc talk/app/webrtc/java/jni/androidmediadecoder_jni.cc talk/app/webrtc/java/jni/androidmediaencoder_jni.cc webrtc/media/devices/win32devicemanager.cc The HAVE_SCTP define was added for the peerconnection_unittests target in api_tests.gyp. I also checked that none of SRTP_RELATIVE_PATH HAVE_SRTP HAVE_WEBRTC_VIDEO HAVE_WEBRTC_VOICE were used by the talk/app/webrtc code. For Chromium, the following changes will need to be applied to the roll CL that updates the DEPS for WebRTC and libjingle: https://codereview.chromium.org/1615433002 BUG=webrtc:5418 NOPRESUBMIT=True R=deadbeef@webrtc.org, pthatcher@webrtc.org, tommi@webrtc.org Review URL: https://codereview.webrtc.org/1610243002 . Cr-Commit-Position: refs/heads/master@{#11545}
135 lines
3.9 KiB
C++
135 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 WEBRTC_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_
|
|
#define WEBRTC_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_
|
|
#pragma once
|
|
|
|
#include <deque>
|
|
#include <map>
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "webrtc/api/mediastreaminterface.h"
|
|
#include "webrtc/api/peerconnectioninterface.h"
|
|
#include "webrtc/examples/peerconnection/client/main_wnd.h"
|
|
#include "webrtc/examples/peerconnection/client/peer_connection_client.h"
|
|
#include "webrtc/base/scoped_ptr.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();
|
|
cricket::VideoCapturer* OpenVideoCaptureDevice();
|
|
|
|
//
|
|
// PeerConnectionObserver implementation.
|
|
//
|
|
|
|
void OnSignalingChange(
|
|
webrtc::PeerConnectionInterface::SignalingState new_state) override{};
|
|
void OnAddStream(webrtc::MediaStreamInterface* stream) override;
|
|
void OnRemoveStream(webrtc::MediaStreamInterface* stream) override;
|
|
void OnDataChannel(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.
|
|
//
|
|
|
|
virtual void OnSignedIn();
|
|
|
|
virtual void OnDisconnected();
|
|
|
|
virtual void OnPeerConnected(int id, const std::string& name);
|
|
|
|
virtual void OnPeerDisconnected(int id);
|
|
|
|
virtual void OnMessageFromPeer(int peer_id, const std::string& message);
|
|
|
|
virtual void OnMessageSent(int err);
|
|
|
|
virtual void OnServerConnectionFailure();
|
|
|
|
//
|
|
// MainWndCallback implementation.
|
|
//
|
|
|
|
virtual void StartLogin(const std::string& server, int port);
|
|
|
|
virtual void DisconnectFromServer();
|
|
|
|
virtual void ConnectToPeer(int peer_id);
|
|
|
|
virtual void DisconnectFromCurrentPeer();
|
|
|
|
virtual void UIThreadCallback(int msg_id, void* data);
|
|
|
|
// CreateSessionDescriptionObserver implementation.
|
|
virtual void OnSuccess(webrtc::SessionDescriptionInterface* desc);
|
|
virtual void OnFailure(const std::string& error);
|
|
|
|
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 // WEBRTC_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_
|