mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
e2e642f12e
MozReview-Commit-ID: AMEi7SZebBG MozReview-Commit-ID: GS2EkamNGc7 --HG-- extra : rebase_source : f715bc837331028f6b5e22820c530e34ca5bedb8
132 lines
3.0 KiB
C++
132 lines
3.0 KiB
C++
#include <sstream>
|
|
|
|
#include "logging.h"
|
|
|
|
// nICEr includes
|
|
extern "C" {
|
|
#include "nr_api.h"
|
|
#include "ice_ctx.h"
|
|
}
|
|
|
|
// Local includes
|
|
#include "nricectxhandler.h"
|
|
#include "nricemediastream.h"
|
|
|
|
namespace mozilla {
|
|
|
|
MOZ_MTLOG_MODULE("mtransport")
|
|
|
|
NrIceCtxHandler::NrIceCtxHandler(const std::string& name,
|
|
bool offerer,
|
|
NrIceCtx::Policy policy)
|
|
: current_ctx(new NrIceCtx(name, offerer, policy)),
|
|
old_ctx(nullptr),
|
|
restart_count(0)
|
|
{
|
|
}
|
|
|
|
RefPtr<NrIceCtxHandler>
|
|
NrIceCtxHandler::Create(const std::string& name,
|
|
bool offerer,
|
|
bool allow_loopback,
|
|
bool tcp_enabled,
|
|
bool allow_link_local,
|
|
bool hide_non_default,
|
|
NrIceCtx::Policy policy)
|
|
{
|
|
// InitializeGlobals only executes once
|
|
NrIceCtx::InitializeGlobals(allow_loopback, tcp_enabled, allow_link_local);
|
|
|
|
RefPtr<NrIceCtxHandler> ctx = new NrIceCtxHandler(name, offerer, policy);
|
|
|
|
if (ctx == nullptr ||
|
|
ctx->current_ctx == nullptr ||
|
|
!ctx->current_ctx->Initialize(hide_non_default)) {
|
|
return nullptr;
|
|
}
|
|
|
|
return ctx;
|
|
}
|
|
|
|
|
|
RefPtr<NrIceMediaStream>
|
|
NrIceCtxHandler::CreateStream(const std::string& name, int components)
|
|
{
|
|
// To make tracking NrIceMediaStreams easier during ICE restart
|
|
// prepend an int to the name that increments with each ICE restart
|
|
std::ostringstream os;
|
|
os << restart_count << "-" << name;
|
|
return NrIceMediaStream::Create(this->current_ctx, os.str(), components);
|
|
}
|
|
|
|
|
|
RefPtr<NrIceCtx>
|
|
NrIceCtxHandler::CreateCtx(bool hide_non_default) const
|
|
{
|
|
return CreateCtx(NrIceCtx::GetNewUfrag(),
|
|
NrIceCtx::GetNewPwd(),
|
|
hide_non_default);
|
|
}
|
|
|
|
|
|
RefPtr<NrIceCtx>
|
|
NrIceCtxHandler::CreateCtx(const std::string& ufrag,
|
|
const std::string& pwd,
|
|
bool hide_non_default) const
|
|
{
|
|
RefPtr<NrIceCtx> new_ctx = new NrIceCtx(this->current_ctx->name(),
|
|
true, // offerer (hardcoded per bwc)
|
|
this->current_ctx->policy());
|
|
if (new_ctx == nullptr) {
|
|
return nullptr;
|
|
}
|
|
|
|
if (!new_ctx->Initialize(hide_non_default, ufrag, pwd)) {
|
|
return nullptr;
|
|
}
|
|
|
|
return new_ctx;
|
|
}
|
|
|
|
|
|
bool
|
|
NrIceCtxHandler::BeginIceRestart(RefPtr<NrIceCtx> new_ctx)
|
|
{
|
|
MOZ_ASSERT(!old_ctx, "existing ice restart in progress");
|
|
if (old_ctx) {
|
|
MOZ_MTLOG(ML_ERROR, "Existing ice restart in progress");
|
|
return false; // ice restart already in progress
|
|
}
|
|
|
|
if (new_ctx == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
++restart_count;
|
|
old_ctx = current_ctx;
|
|
current_ctx = new_ctx;
|
|
return true;
|
|
}
|
|
|
|
|
|
void
|
|
NrIceCtxHandler::FinalizeIceRestart()
|
|
{
|
|
// no harm calling this even if we're not in the middle of restarting
|
|
old_ctx = nullptr;
|
|
}
|
|
|
|
|
|
void
|
|
NrIceCtxHandler::RollbackIceRestart()
|
|
{
|
|
if (old_ctx == nullptr) {
|
|
return;
|
|
}
|
|
current_ctx = old_ctx;
|
|
old_ctx = nullptr;
|
|
}
|
|
|
|
|
|
} // close namespace
|