aboutsummaryrefslogtreecommitdiff
path: root/gdbsupport/task-group.cc
blob: e29ed25e0d3545ff674dcbaf4d012876656a4c73 (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
91
92
93
/* Task group

   Copyright (C) 2023-2024 Free Software Foundation, Inc.

   This file is part of GDB.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

#include "task-group.h"
#include "thread-pool.h"

namespace gdb
{

class task_group::impl : public std::enable_shared_from_this<task_group::impl>
{
public:

  explicit impl (std::function<void ()> &&done)
    : m_done (std::move (done))
  { }
  DISABLE_COPY_AND_ASSIGN (impl);

  ~impl ()
  {
    if (m_started)
      m_done ();
  }

  /* Add a task to the task group.  */
  void add_task (std::function<void ()> &&task)
  {
    m_tasks.push_back (std::move (task));
  };

  /* Start this task group.  */
  void start ();

  /* True if started.  */
  bool m_started = false;
  /* The tasks.  */
  std::vector<std::function<void ()>> m_tasks;
  /* The 'done' function.  */
  std::function<void ()> m_done;
};

void
task_group::impl::start ()
{
  std::shared_ptr<impl> shared_this = shared_from_this ();
  m_started = true;
  for (size_t i = 0; i < m_tasks.size (); ++i)
    {
      gdb::thread_pool::g_thread_pool->post_task ([=] ()
      {
	/* Be sure to capture a shared reference here.  */
	shared_this->m_tasks[i] ();
      });
    }
}

task_group::task_group (std::function<void ()> &&done)
  : m_task (new impl (std::move (done)))
{
}

void
task_group::add_task (std::function<void ()> &&task)
{
  gdb_assert (m_task != nullptr);
  m_task->add_task (std::move (task));
}

void
task_group::start ()
{
  gdb_assert (m_task != nullptr);
  m_task->start ();
  m_task.reset ();
}

} /* namespace gdb */