gallium/hud: fix a problem where objects are free'd while in use.
[mesa.git] / src / gallium / auxiliary / hud / hud_private.h
1 /**************************************************************************
2 *
3 * Copyright 2013 Marek Olšák <maraeo@gmail.com>
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL THE AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef HUD_PRIVATE_H
29 #define HUD_PRIVATE_H
30
31 #include "pipe/p_context.h"
32 #include "util/list.h"
33
34 struct hud_graph {
35 /* initialized by common code */
36 struct list_head head;
37 struct hud_pane *pane;
38 float color[3];
39 float *vertices; /* ring buffer of vertices */
40
41 /* name and query */
42 char name[128];
43 void *query_data;
44 void (*query_new_value)(struct hud_graph *gr);
45 void (*free_query_data)(void *ptr); /**< do not use ordinary free() */
46
47 /* mutable variables */
48 unsigned num_vertices;
49 unsigned index; /* vertex index being updated */
50 uint64_t current_value;
51 };
52
53 struct hud_pane {
54 struct list_head head;
55 unsigned x1, y1, x2, y2;
56 unsigned inner_x1;
57 unsigned inner_y1;
58 unsigned inner_x2;
59 unsigned inner_y2;
60 unsigned inner_width;
61 unsigned inner_height;
62 float yscale;
63 unsigned max_num_vertices;
64 unsigned last_line; /* index of the last describing line in the graph */
65 uint64_t max_value;
66 uint64_t initial_max_value;
67 uint64_t ceiling;
68 unsigned dyn_ceil_last_ran;
69 boolean dyn_ceiling;
70 enum pipe_driver_query_type type;
71 uint64_t period; /* in microseconds */
72
73 struct list_head graph_list;
74 unsigned num_graphs;
75 };
76
77
78 /* core */
79 void hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr);
80 void hud_pane_set_max_value(struct hud_pane *pane, uint64_t value);
81 void hud_graph_add_value(struct hud_graph *gr, uint64_t value);
82
83 /* graphs/queries */
84 struct hud_batch_query_context;
85
86 #define ALL_CPUS ~0 /* optionally set as cpu_index */
87
88 int hud_get_num_cpus(void);
89
90 void hud_fps_graph_install(struct hud_pane *pane);
91 void hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index);
92 void hud_pipe_query_install(struct hud_batch_query_context **pbq,
93 struct hud_pane *pane, struct pipe_context *pipe,
94 const char *name, unsigned query_type,
95 unsigned result_index,
96 uint64_t max_value,
97 enum pipe_driver_query_type type,
98 enum pipe_driver_query_result_type result_type,
99 unsigned flags);
100 boolean hud_driver_query_install(struct hud_batch_query_context **pbq,
101 struct hud_pane *pane,
102 struct pipe_context *pipe, const char *name);
103 void hud_batch_query_update(struct hud_batch_query_context *bq);
104 void hud_batch_query_cleanup(struct hud_batch_query_context **pbq);
105
106 #if HAVE_GALLIUM_EXTRA_HUD
107 int hud_get_num_nics(bool displayhelp);
108 #define NIC_DIRECTION_RX 1
109 #define NIC_DIRECTION_TX 2
110 #define NIC_RSSI_DBM 3
111 void hud_nic_graph_install(struct hud_pane *pane, const char *nic_index,
112 unsigned int mode);
113
114 int hud_get_num_disks(bool displayhelp);
115 #define DISKSTAT_RD 1
116 #define DISKSTAT_WR 2
117 void hud_diskstat_graph_install(struct hud_pane *pane, const char *dev_name,
118 unsigned int mode);
119
120 int hud_get_num_cpufreq(bool displayhelp);
121 #define CPUFREQ_MINIMUM 1
122 #define CPUFREQ_CURRENT 2
123 #define CPUFREQ_MAXIMUM 3
124 void hud_cpufreq_graph_install(struct hud_pane *pane, int cpu_index, unsigned int mode);
125 #endif
126
127 #if HAVE_LIBSENSORS
128 int hud_get_num_sensors(bool displayhelp);
129 #define SENSORS_TEMP_CURRENT 1
130 #define SENSORS_TEMP_CRITICAL 2
131 #define SENSORS_VOLTAGE_CURRENT 3
132 #define SENSORS_CURRENT_CURRENT 4
133 #define SENSORS_POWER_CURRENT 5
134 void hud_sensors_temp_graph_install(struct hud_pane *pane, const char *dev_name,
135 unsigned int mode);
136 #endif
137
138 #endif