ubsan: nds32: left shift cannot be represented in type 'int'
[deliverable/binutils-gdb.git] / gdb / osdata.h
... / ...
CommitLineData
1/* Routines for handling XML generic OS data provided by target.
2
3 Copyright (C) 2008-2019 Free Software Foundation, Inc.
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
20#ifndef OSDATA_H
21#define OSDATA_H
22
23#include <vector>
24
25struct osdata_column
26{
27 osdata_column (std::string &&name_, std::string &&value_)
28 : name (std::move (name_)), value (std::move (value_))
29 {}
30
31 std::string name;
32 std::string value;
33};
34
35struct osdata_item
36{
37 std::vector<osdata_column> columns;
38};
39
40struct osdata
41{
42 osdata (std::string &&type_)
43 : type (std::move (type_))
44 {}
45
46 std::string type;
47 std::vector<osdata_item> items;
48};
49
50std::unique_ptr<osdata> osdata_parse (const char *xml);
51std::unique_ptr<osdata> get_osdata (const char *type);
52const std::string *get_osdata_column (const osdata_item &item,
53 const char *name);
54
55/* Dump TYPE info to the current uiout builder. If TYPE is either
56 NULL or empty, then dump the top level table that lists the
57 available types of OS data. */
58void info_osdata (const char *type);
59
60#endif /* OSDATA_H */
This page took 0.023042 seconds and 4 git commands to generate.