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
|
/*
mtr -- a network diagnostic tool
Copyright (C) 1997,1998 Matt Kimball
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; either version 2 of the License, or
(at your option) any later version.
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, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <config.h>
#ifndef NO_CURSES
#include <ctype.h>
#include <stdlib.h>
#if defined(HAVE_NCURSES_H)
# include <ncurses.h>
#elif defined(HAVE_NCURSES_CURSES_H)
# include <ncurses/curses.h>
#elif defined(HAVE_CURSES_H)
# include <curses.h>
#else
# error No curses header file available
#endif
#ifndef getmaxyx
# define getmaxyx(win,y,x) (y = (win)->_maxy + 1, x = (win)->_maxx + 1)
#endif
#include "mtr-curses.h"
#include "display.h"
#include "net.h"
#include "dns.h"
#endif
void pwcenter(char *str) {
int maxx, maxy;
int cx;
getmaxyx(stdscr, maxy, maxx);
cx = (signed)(maxx - strlen(str)) / 2;
while(cx-- > 0)
printw(" ");
printw(str);
}
int mtr_curses_keyaction() {
char c = getch();
if(tolower(c) == 'q')
return ActionQuit;
if(c==3)
return ActionQuit;
if(tolower(c) == 'r')
return ActionReset;
return 0;
}
void mtr_curses_hosts(int startstat) {
int max;
int at;
int addr;
int y, x;
char *name;
max = net_max();
for(at = 0; at < max; at++) {
printw("%2d. ", at + 1);
addr = net_addr(at);
if(addr != 0) {
name = dns_lookup(addr);
if(name != NULL) {
printw("%s", name);
} else {
printw("%d.%d.%d.%d", (addr >> 24) & 0xff, (addr >> 16) & 0xff,
(addr >> 8) & 0xff, addr & 0xff);
}
getyx(stdscr, y, x);
move(y, startstat);
printw(" %3d%% %4d%4d %5d%5d%7d",
net_percent(at),
net_returned(at), net_xmit(at),
net_best(at), net_avg(at), net_worst(at));
} else {
printw("???");
}
printw("\n");
}
}
void mtr_curses_redraw() {
int maxx, maxy;
int startstat;
int rowstat;
erase();
getmaxyx(stdscr, maxy, maxx);
/* Modified by Brian Casey December 1997 bcasey@imagiware.com */
startstat = maxx - 40;
rowstat = 5;
attron(A_BOLD);
move(0, 0);
pwcenter("Matt's traceroute [v" VERSION "]");
printw("\n\n");
attroff(A_BOLD);
printw("Keys: ");
attron(A_BOLD); printw("R"); attroff(A_BOLD);
printw(" - Restart statistics ");
attron(A_BOLD); printw("Q"); attroff(A_BOLD);
printw(" - Quit\n");
attron(A_BOLD);
mvprintw(rowstat - 1, 0, "Hostname");
/* Modified by Brian Casey December 1997 bcasey@imagiware.com */
mvprintw(rowstat - 2, startstat, " Packets Pings");
mvprintw(rowstat - 1, startstat, " %%Loss Rcv Snt Best Avg Worst");
attroff(A_BOLD);
move(rowstat, 0);
mtr_curses_hosts(startstat);
refresh();
}
void mtr_curses_open() {
initscr();
raw();
noecho();
mtr_curses_redraw();
}
void mtr_curses_close() {
printw("\n");
endwin();
}
|