summaryrefslogtreecommitdiffstats
path: root/tools/profiler/core/ThreadInfo.h
blob: e698bad7656b36126e72275c670ab927e6fb2d5f (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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=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/. */

#ifndef ThreadInfo_h
#define ThreadInfo_h

#include "mozilla/TimeStamp.h"
#include "nsISupportsImpl.h"
#include "nsString.h"

// This class contains information about a thread which needs to be stored
// across restarts of the profiler and which can be useful even after the
// thread has stopped running.
// It uses threadsafe refcounting and only contains immutable data.
class ThreadInfo final {
 public:
  NS_INLINE_DECL_THREADSAFE_REFCOUNTING(ThreadInfo)

  ThreadInfo(const char* aName, int aThreadId, bool aIsMainThread,
             const mozilla::TimeStamp& aRegisterTime =
                 mozilla::TimeStamp::NowUnfuzzed())
      : mName(aName),
        mRegisterTime(aRegisterTime),
        mThreadId(aThreadId),
        mIsMainThread(aIsMainThread) {
    // I don't know if we can assert this. But we should warn.
    MOZ_ASSERT(aThreadId >= 0, "native thread ID is < 0");
    MOZ_ASSERT(aThreadId <= INT32_MAX, "native thread ID is > INT32_MAX");
  }

  const char* Name() const { return mName.get(); }
  mozilla::TimeStamp RegisterTime() const { return mRegisterTime; }
  int ThreadId() const { return mThreadId; }
  bool IsMainThread() const { return mIsMainThread; }

 private:
  ~ThreadInfo() {}

  const nsCString mName;
  const mozilla::TimeStamp mRegisterTime;
  const int mThreadId;
  const bool mIsMainThread;
};

#endif  // ThreadInfo_h