btrace: Remove VEC cleanups
[deliverable/binutils-gdb.git] / gdb / common / gdb_vecs.h
CommitLineData
fa864999
TT
1/* Some commonly-used VEC types.
2
e2882c85 3 Copyright (C) 2012-2018 Free Software Foundation, Inc.
fa864999
TT
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
fa864999
TT
20#ifndef GDB_VECS_H
21#define GDB_VECS_H
22
23#include "vec.h"
24
48faced0
DE
25typedef char *char_ptr;
26typedef const char *const_char_ptr;
55aa24fb 27
fa864999
TT
28DEF_VEC_P (char_ptr);
29
111dfaae
SDJ
30DEF_VEC_P (const_char_ptr);
31
e80aaf61 32/* Split STR, a list of DELIMITER-separated fields, into a char pointer vector.
e4ab2fad 33
e80aaf61 34 You may modify the returned strings. */
749234e5 35
e80aaf61
SM
36extern std::vector<gdb::unique_xmalloc_ptr<char>>
37 delim_string_to_char_ptr_vec (const char *str, char delimiter);
e4ab2fad 38
e80aaf61
SM
39/* Like dirnames_to_char_ptr_vec, but append the directories to *VECP. */
40
41extern void dirnames_to_char_ptr_vec_append
42 (std::vector<gdb::unique_xmalloc_ptr<char>> *vecp, const char *dirnames);
43
44/* Split DIRNAMES by DIRNAME_SEPARATOR delimiter and return a list of all the
45 elements in their original order. For empty string ("") DIRNAMES return
46 list of one empty string ("") element.
47
48 You may modify the returned strings. */
49
50extern std::vector<gdb::unique_xmalloc_ptr<char>>
51 dirnames_to_char_ptr_vec (const char *dirnames);
e4ab2fad 52
53127008
SM
53/* Remove the element at position IX from VEC, not preserving the order of the
54 remaining elements. Return the removed element. */
55
56template <typename T>
57T
58unordered_remove (std::vector<T> &vec, typename std::vector<T>::size_type ix)
59{
60 gdb_assert (ix < vec.size ());
61
62 T removed = std::move (vec[ix]);
63 vec[ix] = std::move (vec.back ());
64 vec.pop_back ();
65
66 return removed;
67}
68
69/* Remove the element at position IX from VEC, preserving the order the
70 remaining elements. Return the removed element. */
71
72template <typename T>
73T
74ordered_remove (std::vector<T> &vec, typename std::vector<T>::size_type ix)
75{
76 gdb_assert (ix < vec.size ());
77
78 T removed = std::move (vec[ix]);
79 vec.erase (vec.begin () + ix);
80
81 return removed;
82}
83
fa864999 84#endif /* GDB_VECS_H */
This page took 0.555582 seconds and 4 git commands to generate.