forked from clbr/radeontop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.c
240 lines (182 loc) · 5.99 KB
/
ui.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/*
Copyright (C) 2012 Lauri Kasanen
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "radeontop.h"
#include <ncurses.h>
#include <stdarg.h>
static void printcenter(const unsigned int y, const unsigned int width,
const char * const fmt, ...) {
char *ptr;
va_list ap;
va_start(ap, fmt);
#ifdef ENABLE_NLS
vasprintf(&ptr, fmt, ap);
const unsigned int len = mbstowcs(NULL, ptr, 0);
#else
const unsigned int len = vasprintf(&ptr, fmt, ap);
#endif
unsigned x = (width - len)/2;
if (len > width) x = 0;
mvprintw(y, x, "%s", ptr);
va_end(ap);
free(ptr);
}
static void printright(const unsigned int y, const unsigned int width,
const char * const fmt, ...) {
char *ptr;
va_list ap;
va_start(ap, fmt);
#ifdef ENABLE_NLS
vasprintf(&ptr, fmt, ap);
const unsigned int len = mbstowcs(NULL, ptr, 0);
#else
const unsigned int len = vasprintf(&ptr, fmt, ap);
#endif
unsigned x = (width - len);
if (len > width) x = 0;
mvprintw(y, x, "%s", ptr);
va_end(ap);
free(ptr);
}
static void percentage(const unsigned int y, const unsigned int w, const float p) {
const unsigned int x = (w/2) + 2;
unsigned int len = w - x - 1;
len = len * (p / 100.0);
attron(A_REVERSE);
mvhline(y, x, ' ', len);
attroff(A_REVERSE);
}
void present(const unsigned int ticks, const char card[], const unsigned int color) {
printf(_("Collecting data, please wait....\n"));
// This does not need to be atomic. A delay here is acceptable.
while(!results)
usleep(16000);
initscr();
noecho();
halfdelay(10);
curs_set(0);
clear();
if(color) {
start_color();
init_pair(1, COLOR_GREEN, COLOR_BLACK);
init_pair(2, COLOR_RED, COLOR_BLACK);
init_pair(3, COLOR_CYAN, COLOR_BLACK);
init_pair(4, COLOR_MAGENTA, COLOR_BLACK);
init_pair(5, COLOR_YELLOW, COLOR_BLACK);
}
const unsigned int bigh = 23;
unsigned int w, h;
getmaxyx(stdscr, h, w);
const unsigned int hw = w/2;
attron(A_REVERSE);
mvhline(0, 0, ' ', w);
printcenter(0, w, _("radeontop %s, running on %s, %u samples/sec"),
VERSION, card, ticks);
attroff(A_REVERSE);
while(1) {
move(2, 0);
clrtobot();
// Again, no need to protect these. Worst that happens is a slightly
// wrong number.
float ee = 100.0 * (float) results->ee / ticks;
float vgt = 100.0 * (float) results->vgt / ticks;
float gui = 100.0 * (float) results->gui / ticks;
float ta = 100.0 * (float) results->ta / ticks;
float tc = 100.0 * (float) results->tc / ticks;
float sx = 100.0 * (float) results->sx / ticks;
float sh = 100.0 * (float) results->sh / ticks;
float spi = 100.0 * (float) results->spi / ticks;
float smx = 100.0 * (float) results->smx / ticks;
float sc = 100.0 * (float) results->sc / ticks;
float pa = 100.0 * (float) results->pa / ticks;
float db = 100.0 * (float) results->db / ticks;
float cr = 100.0 * (float) results->cr / ticks;
float cb = 100.0 * (float) results->cb / ticks;
float vram = 100.0 * (float) results->vram / vramsize;
float vrammb = results->vram / 1024.0f / 1024.0f;
float vramsizemb = vramsize / 1024.0f / 1024.0f;
mvhline(3, 0, ACS_HLINE, w);
mvvline(1, (w/2) + 1, ACS_VLINE, h);
mvaddch(3, (w/2) + 1, ACS_PLUS);
if (color) attron(COLOR_PAIR(1));
percentage(2, w, gui);
printright(2, hw, _("Graphics pipe %6.2f%%"), gui);
if (color) attroff(COLOR_PAIR(1));
unsigned int start = 4;
percentage(start, w, ee);
printright(start++, hw, _("Event Engine %6.2f%%"), ee);
// Enough height?
if (h > bigh) start++;
if (color) attron(COLOR_PAIR(2));
percentage(start, w, vgt);
printright(start++, hw, _("Vertex Grouper + Tesselator %6.2f%%"), vgt);
if (color) attroff(COLOR_PAIR(2));
// Enough height?
if (h > bigh) start++;
if (color) attron(COLOR_PAIR(3));
percentage(start, w, ta);
printright(start++, hw, _("Texture Addresser %6.2f%%"), ta);
// This is only present on R600
if (bits.tc) {
percentage(start, w, tc);
printright(start++, hw, _("Texture Cache %6.2f%%"), tc);
}
if (color) attroff(COLOR_PAIR(3));
// Enough height?
if (h > bigh) start++;
if (color) attron(COLOR_PAIR(4));
percentage(start, w, sx);
printright(start++, hw, _("Shader Export %6.2f%%"), sx);
percentage(start, w, sh);
printright(start++, hw, _("Sequencer Instruction Cache %6.2f%%"), sh);
percentage(start, w, spi);
printright(start++, hw, _("Shader Interpolator %6.2f%%"), spi);
// only on R600
if (bits.smx) {
percentage(start, w, smx);
printright(start++, hw, _("Shader Memory Exchange %6.2f%%"), smx);
}
if (color) attroff(COLOR_PAIR(4));
// Enough height?
if (h > bigh) start++;
percentage(start, w, sc);
printright(start++, hw, _("Scan Converter %6.2f%%"), sc);
percentage(start, w, pa);
printright(start++, hw, _("Primitive Assembly %6.2f%%"), pa);
// Enough height?
if (h > bigh) start++;
if (color) attron(COLOR_PAIR(5));
percentage(start, w, db);
printright(start++, hw, _("Depth Block %6.2f%%"), db);
percentage(start, w, cb);
printright(start++, hw, _("Color Block %6.2f%%"), cb);
// Only present on R600
if (bits.cr) {
percentage(start, w, cr);
printright(start++, hw, _("Clip Rectangle %6.2f%%"), cr);
}
if (color) attroff(COLOR_PAIR(5));
// Enough height?
if (h > bigh) start++;
if (bits.vram) {
if (color) attron(COLOR_PAIR(2));
percentage(start, w, vram);
printright(start++, hw, _("%.0fM / %.0fM VRAM %6.2f%%"),
vrammb, vramsizemb, vram);
if (color) attroff(COLOR_PAIR(2));
}
refresh();
int c = getch();
if (c == 'q') break;
}
endwin();
}