summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/sdp/SdpLog.cpp
blob: a841ac741227202af6386c0bc7ed6ac6e62bec60 (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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=2 et sw=2 tw=80: */
/* 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/. */
#include <type_traits>

#include "sdp/SdpLog.h"
#include "common/browser_logging/CSFLog.h"

namespace mozilla {
LazyLogModule SdpLog("sdp");
}  // namespace mozilla

// For compile time enum comparison
template <typename E, typename F>
constexpr bool compareEnum(E e, F f) {
  return static_cast<typename std::underlying_type<E>::type>(e) ==
         static_cast<typename std::underlying_type<F>::type>(f);
}

CSFLogLevel SDPToCSFLogLevel(const SDPLogLevel priority) {
  static_assert(compareEnum(SDP_LOG_ERROR, CSF_LOG_ERROR));
  static_assert(compareEnum(SDP_LOG_WARNING, CSF_LOG_WARNING));
  static_assert(compareEnum(SDP_LOG_INFO, CSF_LOG_INFO));
  static_assert(compareEnum(SDP_LOG_DEBUG, CSF_LOG_DEBUG));
  static_assert(compareEnum(SDP_LOG_VERBOSE, CSF_LOG_VERBOSE));

  // Check that all SDP_LOG_* cases are covered. It compiles to nothing.
  switch (priority) {
    case SDP_LOG_ERROR:
    case SDP_LOG_WARNING:
    case SDP_LOG_INFO:
    case SDP_LOG_DEBUG:
    case SDP_LOG_VERBOSE:
      break;
  }

  // Ditto for CSF_LOG_*
  switch (static_cast<CSFLogLevel>(priority)) {
    case CSF_LOG_ERROR:
    case CSF_LOG_WARNING:
    case CSF_LOG_INFO:
    case CSF_LOG_DEBUG:
    case CSF_LOG_VERBOSE:
      break;
  }

  return static_cast<CSFLogLevel>(priority);
}

void SDPLog(SDPLogLevel priority, const char* sourceFile, int sourceLine,
            const char* tag, const char* format, ...) {
  va_list ap;
  va_start(ap, format);
  CSFLogV(SDPToCSFLogLevel(priority), sourceFile, sourceLine, tag, format, ap);
  va_end(ap);
}

void SDPLogV(SDPLogLevel priority, const char* sourceFile, int sourceLine,
             const char* tag, const char* format, va_list args) {
  CSFLogV(SDPToCSFLogLevel(priority), sourceFile, sourceLine, tag, format,
          args);
}

int SDPLogTestLevel(SDPLogLevel priority) {
  return CSFLogTestLevel(SDPToCSFLogLevel(priority));
}