summaryrefslogtreecommitdiff
path: root/Source/cmMakefileProfilingData.h
blob: 4cf0bfa77cce64a1c16a9d9233b67569b7fcdeda (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
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#pragma once
#include <memory>
#include <string>

#include <cm/optional>

#include <cm3p/json/value.h> // IWYU pragma: keep

#include "cmsys/FStream.hxx"

namespace Json {
class StreamWriter;
}

class cmMakefileProfilingData
{
public:
  cmMakefileProfilingData(const std::string&);
  ~cmMakefileProfilingData() noexcept;
  void StartEntry(const std::string& category, const std::string& name,
                  cm::optional<Json::Value> args = cm::nullopt);
  void StopEntry();

  class RAII
  {
  public:
    RAII() = delete;
    RAII(const RAII&) = delete;
    RAII(RAII&&) noexcept;

    RAII(cmMakefileProfilingData& data, const std::string& category,
         const std::string& name,
         cm::optional<Json::Value> args = cm::nullopt);

    ~RAII();

    RAII& operator=(const RAII&) = delete;
    RAII& operator=(RAII&&) noexcept;

  private:
    cmMakefileProfilingData* Data = nullptr;
  };

private:
  cmsys::ofstream ProfileStream;
  std::unique_ptr<Json::StreamWriter> JsonWriter;
};