Move ownership of PeerConnectionObserver from Java to C++.
New OwnedPeerConnection takes ownership of the observer. This is done to allow NativePeerConnectionFactory to return a capsulated object. Bug: webrtc:8662 Change-Id: Ie876f7b9a1a17ebcfbe51537f712a32ab1a7cbfb Reviewed-on: https://webrtc-review.googlesource.com/35300 Commit-Queue: Sami Kalliomäki <sakal@webrtc.org> Reviewed-by: Magnus Jedvert <magjed@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21610}
This commit is contained in:
committed by
Commit Bot
parent
a3dab8440e
commit
ce5c19add1
@ -58,8 +58,9 @@ namespace {
|
||||
|
||||
PeerConnectionInterface* ExtractNativePC(JNIEnv* jni,
|
||||
const JavaRef<jobject>& j_pc) {
|
||||
return reinterpret_cast<PeerConnectionInterface*>(
|
||||
Java_PeerConnection_getNativePeerConnection(jni, j_pc));
|
||||
return reinterpret_cast<OwnedPeerConnection*>(
|
||||
Java_PeerConnection_getNativeOwnedPeerConnection(jni, j_pc))
|
||||
->pc();
|
||||
}
|
||||
|
||||
PeerConnectionInterface::IceServers JavaToNativeIceServers(
|
||||
@ -284,12 +285,6 @@ void PeerConnectionObserverJni::OnAddTrack(
|
||||
NativeToJavaMediaStreamArray(env, streams));
|
||||
}
|
||||
|
||||
void PeerConnectionObserverJni::SetConstraints(
|
||||
std::unique_ptr<MediaConstraintsInterface> constraints) {
|
||||
RTC_CHECK(!constraints_.get()) << "constraints already set!";
|
||||
constraints_ = std::move(constraints);
|
||||
}
|
||||
|
||||
// If the NativeToJavaStreamsMap contains the stream, return it.
|
||||
// Otherwise, create a new Java MediaStream.
|
||||
JavaMediaStream& PeerConnectionObserverJni::GetOrCreateJavaStream(
|
||||
@ -318,6 +313,19 @@ PeerConnectionObserverJni::NativeToJavaMediaStreamArray(
|
||||
});
|
||||
}
|
||||
|
||||
OwnedPeerConnection::OwnedPeerConnection(
|
||||
rtc::scoped_refptr<PeerConnectionInterface> peer_connection,
|
||||
std::unique_ptr<PeerConnectionObserver> observer,
|
||||
std::unique_ptr<MediaConstraintsInterface> constraints)
|
||||
: peer_connection_(peer_connection),
|
||||
observer_(std::move(observer)),
|
||||
constraints_(std::move(constraints)) {}
|
||||
|
||||
OwnedPeerConnection::~OwnedPeerConnection() {
|
||||
// Ensure that PeerConnection is destroyed before the observer.
|
||||
peer_connection_ = nullptr;
|
||||
}
|
||||
|
||||
static jlong JNI_PeerConnection_CreatePeerConnectionObserver(
|
||||
JNIEnv* jni,
|
||||
const JavaParamRef<jclass>&,
|
||||
@ -325,12 +333,17 @@ static jlong JNI_PeerConnection_CreatePeerConnectionObserver(
|
||||
return jlongFromPointer(new PeerConnectionObserverJni(jni, j_observer));
|
||||
}
|
||||
|
||||
static void JNI_PeerConnection_FreePeerConnectionObserver(
|
||||
static void JNI_PeerConnection_FreeOwnedPeerConnection(
|
||||
JNIEnv*,
|
||||
const JavaParamRef<jclass>&,
|
||||
jlong j_p) {
|
||||
PeerConnectionObserver* p = reinterpret_cast<PeerConnectionObserver*>(j_p);
|
||||
delete p;
|
||||
delete reinterpret_cast<OwnedPeerConnection*>(j_p);
|
||||
}
|
||||
|
||||
static jlong JNI_PeerConnection_GetNativePeerConnection(
|
||||
JNIEnv* jni,
|
||||
const JavaParamRef<jobject>& j_pc) {
|
||||
return jlongFromPointer(ExtractNativePC(jni, j_pc));
|
||||
}
|
||||
|
||||
static ScopedJavaLocalRef<jobject> JNI_PeerConnection_GetLocalDescription(
|
||||
@ -426,19 +439,18 @@ static void JNI_PeerConnection_SetAudioRecording(
|
||||
static jboolean JNI_PeerConnection_SetConfiguration(
|
||||
JNIEnv* jni,
|
||||
const JavaParamRef<jobject>& j_pc,
|
||||
const JavaParamRef<jobject>& j_rtc_config,
|
||||
jlong native_observer) {
|
||||
const JavaParamRef<jobject>& j_rtc_config) {
|
||||
// Need to merge constraints into RTCConfiguration again, which are stored
|
||||
// in the observer object.
|
||||
PeerConnectionObserverJni* observer =
|
||||
reinterpret_cast<PeerConnectionObserverJni*>(native_observer);
|
||||
// in the OwnedPeerConnection object.
|
||||
OwnedPeerConnection* owned_pc = reinterpret_cast<OwnedPeerConnection*>(
|
||||
Java_PeerConnection_getNativeOwnedPeerConnection(jni, j_pc));
|
||||
PeerConnectionInterface::RTCConfiguration rtc_config(
|
||||
PeerConnectionInterface::RTCConfigurationType::kAggressive);
|
||||
JavaToNativeRTCConfiguration(jni, j_rtc_config, &rtc_config);
|
||||
if (observer && observer->constraints()) {
|
||||
CopyConstraintsIntoRtcConfiguration(observer->constraints(), &rtc_config);
|
||||
if (owned_pc->constraints()) {
|
||||
CopyConstraintsIntoRtcConfiguration(owned_pc->constraints(), &rtc_config);
|
||||
}
|
||||
return ExtractNativePC(jni, j_pc)->SetConfiguration(rtc_config);
|
||||
return owned_pc->pc()->SetConfiguration(rtc_config);
|
||||
}
|
||||
|
||||
static jboolean JNI_PeerConnection_AddIceCandidate(
|
||||
|
||||
@ -61,9 +61,6 @@ class PeerConnectionObserverJni : public PeerConnectionObserver {
|
||||
const std::vector<rtc::scoped_refptr<MediaStreamInterface>>&
|
||||
streams) override;
|
||||
|
||||
void SetConstraints(std::unique_ptr<MediaConstraintsInterface> constraints);
|
||||
const MediaConstraintsInterface* constraints() { return constraints_.get(); }
|
||||
|
||||
private:
|
||||
typedef std::map<MediaStreamInterface*, JavaMediaStream>
|
||||
NativeToJavaStreamsMap;
|
||||
@ -86,6 +83,36 @@ class PeerConnectionObserverJni : public PeerConnectionObserver {
|
||||
// C++ -> Java remote streams.
|
||||
NativeToJavaStreamsMap remote_streams_;
|
||||
std::vector<JavaRtpReceiverGlobalOwner> rtp_receivers_;
|
||||
};
|
||||
|
||||
// PeerConnection doesn't take ownership of the observer. In Java API, we don't
|
||||
// want the client to have to manually dispose the observer. To solve this, this
|
||||
// wrapper class is used for object ownership.
|
||||
//
|
||||
// Also stores reference to the deprecated PeerConnection constraints for now.
|
||||
class OwnedPeerConnection {
|
||||
public:
|
||||
OwnedPeerConnection(
|
||||
rtc::scoped_refptr<PeerConnectionInterface> peer_connection,
|
||||
std::unique_ptr<PeerConnectionObserver> observer)
|
||||
: OwnedPeerConnection(peer_connection,
|
||||
std::move(observer),
|
||||
nullptr /* constraints */) {}
|
||||
// Deprecated. PC constraints are deprecated.
|
||||
OwnedPeerConnection(
|
||||
rtc::scoped_refptr<PeerConnectionInterface> peer_connection,
|
||||
std::unique_ptr<PeerConnectionObserver> observer,
|
||||
std::unique_ptr<MediaConstraintsInterface> constraints);
|
||||
~OwnedPeerConnection();
|
||||
|
||||
PeerConnectionInterface* pc() const { return peer_connection_.get(); }
|
||||
const MediaConstraintsInterface* constraints() const {
|
||||
return constraints_.get();
|
||||
}
|
||||
|
||||
private:
|
||||
rtc::scoped_refptr<PeerConnectionInterface> peer_connection_;
|
||||
std::unique_ptr<PeerConnectionObserver> observer_;
|
||||
std::unique_ptr<MediaConstraintsInterface> constraints_;
|
||||
};
|
||||
|
||||
|
||||
@ -417,6 +417,8 @@ static jlong JNI_PeerConnectionFactory_CreatePeerConnection(
|
||||
rtc::scoped_refptr<PeerConnectionFactoryInterface> f(
|
||||
reinterpret_cast<PeerConnectionFactoryInterface*>(
|
||||
factoryFromJava(factory)));
|
||||
std::unique_ptr<PeerConnectionObserver> observer(
|
||||
reinterpret_cast<PeerConnectionObserver*>(observer_p));
|
||||
|
||||
PeerConnectionInterface::RTCConfiguration rtc_config(
|
||||
PeerConnectionInterface::RTCConfigurationType::kAggressive);
|
||||
@ -436,15 +438,15 @@ static jlong JNI_PeerConnectionFactory_CreatePeerConnection(
|
||||
rtc_config.certificates.push_back(certificate);
|
||||
}
|
||||
|
||||
PeerConnectionObserverJni* observer =
|
||||
reinterpret_cast<PeerConnectionObserverJni*>(observer_p);
|
||||
std::unique_ptr<MediaConstraintsInterface> constraints;
|
||||
if (!j_constraints.is_null()) {
|
||||
observer->SetConstraints(JavaToNativeMediaConstraints(jni, j_constraints));
|
||||
CopyConstraintsIntoRtcConfiguration(observer->constraints(), &rtc_config);
|
||||
constraints = JavaToNativeMediaConstraints(jni, j_constraints);
|
||||
CopyConstraintsIntoRtcConfiguration(constraints.get(), &rtc_config);
|
||||
}
|
||||
rtc::scoped_refptr<PeerConnectionInterface> pc(
|
||||
f->CreatePeerConnection(rtc_config, nullptr, nullptr, observer));
|
||||
return jlongFromPointer(pc.release());
|
||||
f->CreatePeerConnection(rtc_config, nullptr, nullptr, observer.get()));
|
||||
return jlongFromPointer(
|
||||
new OwnedPeerConnection(pc, std::move(observer), std::move(constraints)));
|
||||
}
|
||||
|
||||
static jlong JNI_PeerConnectionFactory_CreateVideoSource(
|
||||
|
||||
Reference in New Issue
Block a user