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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
|
/*
* wmwave.c -- WindowMaker wireless statistics view dock app
* Derived by Carsten Schuermann carsten@schuermann.org
* http://www.schuermann.org/~carsten
* from
* Dan Piponi dan@tanelorn.demon.co.uk
* http://www.tanelorn.demon.co.uk
* who derived it
* from code originally contained in wmsysmon by Dave Clark (clarkd@skynet.ca)
* This software is licensed through the GNU General Public License.
* $Log: wmwave.c,v $
* Revision 1.7 1999/08/20 13:44:21 carsten
* version 0.4 complete
*
* Revision 1.6 1999/08/19 17:58:52 carsten
* Almost final version
*
* Revision 1.5 1999/08/19 13:54:30 carsten
* done
*
* Revision 1.4 1999/08/19 11:14:50 carsten
* hookup to /proc/net/wirless complete
*
* Revision 1.3 1999/08/19 02:39:07 carsten
* improved design and hooked it up
*
* Revision 1.2 1999/08/16 03:45:34 carsten
* Added dots
*
* Revision 1.1 1999/08/15 15:39:18 carsten
* Added wmwave project to repository
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <dirent.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <ctype.h>
#include <math.h>
#include <limits.h>
#include <errno.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <iwlib.h>
#include <X11/Xlib.h>
#include <X11/xpm.h>
#include <X11/extensions/shape.h>
#include "wmgeneral.h"
#include "wmwave-master.xpm"
char wmwave_mask_bits[64*64];
int wmwave_mask_width = 64;
int wmwave_mask_height = 64;
#define WMWAVE_VERSION "0.4"
int update_rate=100000;
char *ProgName;
time_t curtime;
time_t prevtime;
int mode = 0; // default: no card detected
Display *display;
void usage(void);
void printversion(void);
void BlitString(char *name, int x, int y);
void BlitNum(int num, int x, int y);
void wmwave_routine(int, char **);
void DrawBar(float percent, int dx, int dy);
void DrawGreenBar(float percent, int dx, int dy);
int iw_getinf_stats(const char *ifname, struct iw_range *range, struct iw_statistics *stats);
inline void DrawBar(float percent, int dx, int dy) {
int tx;
tx = (int)(54.0 * (percent * 0.01));
copyXPMArea(67, 36, tx, 4, dx, dy);
copyXPMArea(67, 43, 54-tx, 4, dx+tx, dy);
}
inline void DrawGreenBar(float percent, int dx, int dy) {
int tx;
tx = (int)(54.0 * (percent * 0.01));
copyXPMArea(67, 58, tx, 4, dx, dy);
copyXPMArea(67, 43, 54-tx, 4, dx+tx, dy);
}
inline void DrawRedDot() {
copyXPMArea(80, 65, 6, 6, 52, 5);
}
inline void DrawYellowDot() {
copyXPMArea(86, 65, 6, 6, 52, 5);
}
inline void DrawGreenDot() {
copyXPMArea(92, 65, 6, 6, 52, 5);
}
inline void DrawEmptyDot() {
copyXPMArea(98, 65, 6, 6, 52, 5);
}
float min (float x, float y) {
if (x < y) {return x;}
else {return y;}
}
void DisplayWireless(void) {
struct iw_range range;
struct iw_statistics stats;
float link;
float level;
float noise;
FILE *wireless; // File handle for /proc/net/wireless
char line[255];
char iface[6];
char status [3];
int nwid = 0;
int crypt = 0;
int misc = 0;
if ((wireless = fopen ("/proc/net/wireless", "r")) != NULL)
{
fgets(line,sizeof(line),wireless);
fgets(line,sizeof(line),wireless);
if (fgets(line,sizeof(line),wireless) == NULL) {
mode = 0;
} else {
sscanf(line,"%s %s %f %f %f %d %d %d",
iface,status,&link,&level,&noise,&nwid,&crypt,&misc);
iface[strlen(iface)-1] = 0; /* remove ':' */
if( (!iw_getinf_stats(iface, &range, &stats)) || (!range.max_qual.qual) )
range.max_qual.qual = 100;
mode = 1;
}
fclose(wireless);
/* dBm values need a special treatment */
if ((stats.qual.updated & IW_QUAL_DBM) ||
(stats.qual.level > range.max_qual.level))
{
/* some cards (like the atheros) simply don't give a floor */
float noise_floor = range.max_qual.noise ? (float)(range.max_qual.noise - 0x100) : -128.0;
float level_floor = range.max_qual.level ? (float)(range.max_qual.level - 0x100) : -128.0;
level = (float)(stats.qual.level - 0x100);
noise = (float)(stats.qual.noise - 0x100);
level = 100.0 * ( 1.0 - (level / level_floor));
noise = 100.0 * ( 1.0 - (noise / noise_floor));
}
else
{
float max_level = (float)range.max_qual.level;
float max_noise = (float)range.max_qual.noise;
level = (float)stats.qual.level;
noise = (float)stats.qual.noise;
level = 100.0 * level / max_level;
noise = 100.0 * noise / max_noise;
}
if ((stats.qual.updated & IW_QUAL_LEVEL_INVALID)
|| level < 0.0 || level > 100.0 )
level = 0.0;
if ((stats.qual.updated & IW_QUAL_NOISE_INVALID)
|| noise < 0.0 || noise > 100.0 )
noise = 0.0;
if (!(stats.qual.updated & IW_QUAL_QUAL_INVALID)
&& (abs(stats.qual.qual) <= abs(range.max_qual.qual)))
{
link = stats.qual.qual;
link /= (float) range.max_qual.qual;
link *= 100.0;
}
else
link = 0.0;
/* Print channel information, and signal ratio */
switch (mode) {
case 1: BlitString("Quality",4,4);
if (link<=0.1 * range.max_qual.qual) {
DrawRedDot ();
} else if (link<=0.2 * range.max_qual.qual) {
DrawYellowDot ();
} else {
DrawGreenDot();
}
BlitString("Link ", 4,18);
DrawBar(min(link, 100.0), 4, 27);
BlitString("Level ", 4,32);
DrawGreenBar(min(level, 100.0), 4, 41);
BlitString("Noise ", 4,46);
DrawGreenBar(min(noise, 100.0), 4, 55);
break;
case 0: BlitString("NO CARD",4,4);
DrawEmptyDot();
BlitString(" ", 4,18);
DrawBar(0.0, 4, 27);
BlitString(" ", 4,32);
DrawGreenBar(0.0, 4, 41);
BlitString(" ", 4,46);
DrawGreenBar(0.0, 4, 55);
break;
};
}
else {
printf ("Wirless device /proc/net/wireless not found\n"
"Enable radio networking and recompile your kernel\n");
exit (0);
}
}
/* SIGCHLD handler */
void sig_chld(int signo)
{
waitpid((pid_t) -1, NULL, WNOHANG);
signal(SIGCHLD, sig_chld);
}
int main(int argc, char *argv[]) {
int i;
/* Parse Command Line */
signal(SIGCHLD, sig_chld);
ProgName = argv[0];
if (strlen(ProgName) >= 5)
ProgName += (strlen(ProgName) - 5);
for (i=1; i<argc; i++) {
char *arg = argv[i];
if (*arg=='-') {
switch (arg[1]) {
case 'd' :
if (strcmp(arg+1, "display")) {
usage();
exit(1);
}
break;
case 'g' :
if (strcmp(arg+1, "geometry")) {
usage();
exit(1);
}
break;
case 'v' :
printversion();
exit(0);
break;
case 'r':
if (argc > (i+1)) {
update_rate = (atoi(argv[i+1]) * 1000);
i++;
}
break;
default:
usage();
exit(0);
break;
}
}
}
wmwave_routine(argc, argv);
return 0;
}
/*
* Main loop
*/
void wmwave_routine(int argc, char **argv) {
XEvent Event;
struct timeval tv={0,0};
struct timeval last={0,0};
createXBMfromXPM(wmwave_mask_bits, wmwave_master_xpm, wmwave_mask_width, wmwave_mask_height);
openXwindow(argc, argv, wmwave_master_xpm, wmwave_mask_bits, wmwave_mask_width, wmwave_mask_height);
RedrawWindow();
while (1) {
curtime = time(0);
if (1) {
memcpy(&last, &tv, sizeof(tv));
/*
* Update display
*/
DisplayWireless();
RedrawWindow();
}
/*
* X Events
*/
while (XPending(display)) {
XNextEvent(display, &Event);
switch (Event.type) {
case Expose:
RedrawWindow();
break;
case DestroyNotify:
XCloseDisplay(display);
exit(0);
break;
}
}
usleep(update_rate);
}
}
/* get stats & range information */
int iw_getinf_stats(const char *ifname, struct iw_range *range, struct iw_statistics *stats)
{
int skfd;
int has_range;
memset(range, 0, sizeof(struct iw_range));
memset(stats, 0, sizeof(struct iw_statistics));
if ((skfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
return 0;
}
has_range = (iw_get_range_info(skfd, ifname, range) >= 0);
if(iw_get_stats(skfd, ifname, stats, range, has_range) < 0) {
close(skfd);
return 0;
};
close(skfd);
return 1;
}
/*
* Blits a string at given co-ordinates
*/
void BlitString(char *name, int x, int y) {
int i;
int c;
int k;
k = x;
for (i=0; name[i]; i++)
{
c = toupper(name[i]);
if (c >= 'A' && c <= 'Z')
{ // its a letter
c -= 'A';
copyXPMArea(c * 6, 74, 6, 8, k, y);
k += 6;
} else
if (c>='0' && c<='9') { // its a number or symbol
c -= '0';
copyXPMArea(c * 6, 64, 6, 8, k, y);
k += 6;
} else {
copyXPMArea(5, 84, 6, 8, k, y);
k += 6;
}
}
}
void BlitNum(int num, int x, int y) {
char buf[1024];
int newx=x;
sprintf(buf, "%03i", num);
BlitString(buf, newx, y);
}
/*
* Usage
*/
void usage(void) {
fprintf(stderr, "\nWmwave - Carsten Schuermann <carsten@schuermann.org> http://www.schuermann.org/~dockapps\n\n");
fprintf(stderr, "usage:\n");
fprintf(stderr, " -display <display name>\n");
fprintf(stderr, " -r update rate in milliseconds (default:100)\n");
fprintf(stderr, "\n");
}
/*
* printversion
*/
void printversion(void) {
fprintf(stderr, "wmwave v%s\n", WMWAVE_VERSION);
}
|