1 /* Thread iterators and ranges for GDB, the GNU debugger.
2 Copyright (C) 2018-2019 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "gdbsupport/filtered-iterator.h"
23 #include "gdbsupport/next-iterator.h"
24 #include "gdbsupport/safe-iterator.h"
26 /* A forward iterator that iterates over a given inferior's
29 using inf_threads_iterator = next_iterator<thread_info>;
31 /* A forward iterator that iterates over all threads of all
34 class all_threads_iterator
37 typedef all_threads_iterator self_type;
38 typedef struct thread_info *value_type;
39 typedef struct thread_info *&reference;
40 typedef struct thread_info **pointer;
41 typedef std::forward_iterator_tag iterator_category;
42 typedef int difference_type;
47 /* Create an iterator that points to the first thread of the first
49 explicit all_threads_iterator (begin_t);
51 /* Create a one-past-end iterator. */
52 all_threads_iterator ()
56 thread_info *operator* () const { return m_thr; }
58 all_threads_iterator &operator++ ()
64 bool operator== (const all_threads_iterator &other) const
65 { return m_thr == other.m_thr; }
67 bool operator!= (const all_threads_iterator &other) const
68 { return m_thr != other.m_thr; }
71 /* Advance to the next thread. */
75 /* The current inferior and thread. M_THR is NULL if we reached the
76 end of the threads list of the last inferior. */
81 /* Iterate over all threads that match a given PTID. */
83 class all_matching_threads_iterator
86 typedef all_matching_threads_iterator self_type;
87 typedef struct thread_info *value_type;
88 typedef struct thread_info *&reference;
89 typedef struct thread_info **pointer;
90 typedef std::forward_iterator_tag iterator_category;
91 typedef int difference_type;
93 /* Creates an iterator that iterates over all threads that match
95 explicit all_matching_threads_iterator (ptid_t filter_ptid);
97 /* Create a one-past-end iterator. */
98 all_matching_threads_iterator ()
101 m_filter_ptid (minus_one_ptid)
104 thread_info *operator* () const { return m_thr; }
106 all_matching_threads_iterator &operator++ ()
112 bool operator== (const all_matching_threads_iterator &other) const
113 { return m_thr == other.m_thr; }
115 bool operator!= (const all_matching_threads_iterator &other) const
116 { return m_thr != other.m_thr; }
119 /* Advance to next thread, skipping filtered threads. */
122 /* True if M_INF matches the process identified by
124 bool m_inf_matches ();
127 /* The current inferior. */
130 /* The current thread. */
134 ptid_t m_filter_ptid;
137 /* Filter for filtered_iterator. Filters out exited threads. */
139 struct non_exited_thread_filter
141 bool operator() (struct thread_info *thr) const
143 return thr->state != THREAD_EXITED;
147 /* Iterate over all non-exited threads that match a given PTID. */
149 using all_non_exited_threads_iterator
150 = filtered_iterator<all_matching_threads_iterator, non_exited_thread_filter>;
152 /* Iterate over all non-exited threads of an inferior. */
154 using inf_non_exited_threads_iterator
155 = filtered_iterator<inf_threads_iterator, non_exited_thread_filter>;
157 /* Iterate over all threads of all inferiors, safely. */
159 using all_threads_safe_iterator
160 = basic_safe_iterator<all_threads_iterator>;
162 /* Iterate over all threads of an inferior, safely. */
164 using safe_inf_threads_iterator
165 = basic_safe_iterator<inf_threads_iterator>;
167 /* A range adapter that makes it possible to iterate over all threads
168 of an inferior with range-for. */
170 using inf_threads_range
171 = next_adapter<thread_info, inf_threads_iterator>;
173 /* A range adapter that makes it possible to iterate over all
174 non-exited threads of an inferior with range-for. */
176 using inf_non_exited_threads_range
177 = next_adapter<thread_info, inf_non_exited_threads_iterator>;
179 /* A range adapter that makes it possible to iterate over all threads
180 of an inferior with range-for, safely. */
182 using safe_inf_threads_range
183 = next_adapter<thread_info, safe_inf_threads_iterator>;
185 /* A range adapter that makes it possible to iterate over all threads
186 of all inferiors with range-for. */
188 struct all_threads_range
190 all_threads_iterator begin () const
191 { return all_threads_iterator (all_threads_iterator::begin_t {}); }
192 all_threads_iterator end () const
193 { return all_threads_iterator (); }
196 /* A range adapter that makes it possible to iterate over all threads
197 with range-for "safely". I.e., it is safe to delete the
198 currently-iterated thread. */
200 struct all_threads_safe_range
202 all_threads_safe_iterator begin () const
203 { return all_threads_safe_iterator (all_threads_iterator::begin_t {}); }
204 all_threads_safe_iterator end () const
205 { return all_threads_safe_iterator (); }
208 /* A range adapter that makes it possible to iterate over all threads
209 that match a PTID filter with range-for. */
211 struct all_matching_threads_range
214 explicit all_matching_threads_range (ptid_t filter_ptid)
215 : m_filter_ptid (filter_ptid)
217 all_matching_threads_range ()
218 : m_filter_ptid (minus_one_ptid)
221 all_matching_threads_iterator begin () const
222 { return all_matching_threads_iterator (m_filter_ptid); }
223 all_matching_threads_iterator end () const
224 { return all_matching_threads_iterator (); }
228 ptid_t m_filter_ptid;
231 /* A range adapter that makes it possible to iterate over all
232 non-exited threads of all inferiors, with range-for.
233 Threads/inferiors that do not match FILTER_PTID are filtered
236 class all_non_exited_threads_range
239 explicit all_non_exited_threads_range (ptid_t filter_ptid)
240 : m_filter_ptid (filter_ptid)
243 all_non_exited_threads_range ()
244 : m_filter_ptid (minus_one_ptid)
247 all_non_exited_threads_iterator begin () const
248 { return all_non_exited_threads_iterator (m_filter_ptid); }
249 all_non_exited_threads_iterator end () const
250 { return all_non_exited_threads_iterator (); }
253 ptid_t m_filter_ptid;
256 #endif /* THREAD_ITER_H */