summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/jsapi/RTCStatsIdGenerator.cpp
blob: 8b0462e2231812f49a5af3cfca57255d9e7d64b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */

#include "RTCStatsIdGenerator.h"

#include <iostream>

#include "mozilla/RandomNum.h"
#include "RTCStatsReport.h"
#include "WebrtcGlobal.h"

namespace mozilla {

RTCStatsIdGenerator::RTCStatsIdGenerator()
    : mSalt(RandomUint64().valueOr(0xa5a5a5a5)), mCounter(0) {}

void RTCStatsIdGenerator::RewriteIds(
    nsTArray<UniquePtr<dom::RTCStatsCollection>> aFromStats,
    dom::RTCStatsCollection* aIntoReport) {
  // Rewrite an Optional id
  auto rewriteId = [&](dom::Optional<nsString>& id) {
    if (id.WasPassed()) {
      id.Value() = Id(id.Value());
    }
  };

  auto rewriteIds = [&](auto& aList, auto... aParam) {
    for (auto& stat : aList) {
      (rewriteId(stat.*aParam), ...);
    }
  };

  // Involves a lot of copying, since webidl dictionaries don't have
  // move semantics. Oh well.

  // Create a temporary to avoid double-rewriting any stats already in
  // aIntoReport.
  auto stats = MakeUnique<dom::RTCStatsCollection>();
  dom::FlattenStats(std::move(aFromStats), stats.get());

  using S = dom::RTCStats;
  using ICPS = dom::RTCIceCandidatePairStats;
  using RSS = dom::RTCRtpStreamStats;
  using IRSS = dom::RTCInboundRtpStreamStats;
  using ORSS = dom::RTCOutboundRtpStreamStats;
  using RIRSS = dom::RTCRemoteInboundRtpStreamStats;
  using RORSS = dom::RTCRemoteOutboundRtpStreamStats;

  rewriteIds(stats->mIceCandidatePairStats, &S::mId, &ICPS::mLocalCandidateId,
             &ICPS::mRemoteCandidateId);
  rewriteIds(stats->mIceCandidateStats, &S::mId);
  rewriteIds(stats->mInboundRtpStreamStats, &S::mId, &IRSS::mRemoteId,
             &RSS::mCodecId);
  rewriteIds(stats->mOutboundRtpStreamStats, &S::mId, &ORSS::mRemoteId,
             &RSS::mCodecId);
  rewriteIds(stats->mRemoteInboundRtpStreamStats, &S::mId, &RIRSS::mLocalId,
             &RSS::mCodecId);
  rewriteIds(stats->mRemoteOutboundRtpStreamStats, &S::mId, &RORSS::mLocalId,
             &RSS::mCodecId);
  rewriteIds(stats->mCodecStats, &S::mId);
  rewriteIds(stats->mRtpContributingSourceStats, &S::mId);
  rewriteIds(stats->mTrickledIceCandidateStats, &S::mId);
  rewriteIds(stats->mDataChannelStats, &S::mId);

  dom::MergeStats(std::move(stats), aIntoReport);
}

nsString RTCStatsIdGenerator::Id(const nsString& aKey) {
  if (!aKey.Length()) {
    MOZ_ASSERT(aKey.Length(), "Stats IDs should never be empty.");
    return aKey;
  }
  if (mAllocated.find(aKey) == mAllocated.end()) {
    mAllocated[aKey] = Generate();
  }
  return mAllocated[aKey];
}

nsString RTCStatsIdGenerator::Generate() {
  auto random = RandomUint64().valueOr(0x1a22);
  auto idNum = static_cast<uint32_t>(mSalt ^ ((mCounter++ << 16) | random));
  nsString id;
  id.AppendInt(idNum, 16);  // Append as hex
  return id;
}

}  // namespace mozilla