3 Copyright (C) 2023-2024 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "common-defs.h"
21 #include "task-group.h"
22 #include "thread-pool.h"
27 class task_group::impl
: public std::enable_shared_from_this
<task_group::impl
>
31 explicit impl (std::function
<void ()> &&done
)
32 : m_done (std::move (done
))
34 DISABLE_COPY_AND_ASSIGN (impl
);
42 /* Add a task to the task group. */
43 void add_task (std::function
<void ()> &&task
)
45 m_tasks
.push_back (std::move (task
));
48 /* Start this task group. */
51 /* True if started. */
52 bool m_started
= false;
54 std::vector
<std::function
<void ()>> m_tasks
;
55 /* The 'done' function. */
56 std::function
<void ()> m_done
;
60 task_group::impl::start ()
62 std::shared_ptr
<impl
> shared_this
= shared_from_this ();
64 for (size_t i
= 0; i
< m_tasks
.size (); ++i
)
66 gdb::thread_pool::g_thread_pool
->post_task ([=] ()
68 /* Be sure to capture a shared reference here. */
69 shared_this
->m_tasks
[i
] ();
74 task_group::task_group (std::function
<void ()> &&done
)
75 : m_task (new impl (std::move (done
)))
80 task_group::add_task (std::function
<void ()> &&task
)
82 gdb_assert (m_task
!= nullptr);
83 m_task
->add_task (std::move (task
));
89 gdb_assert (m_task
!= nullptr);