Fri, 02 Jun 2000 21:33:01 +0000
[gaim-migrate @ 334]
whoops
| 193 | 1 | /* KNOWN BUGS: |
| 2 | * if you are also using notify.so, it will open a new window to yourself. | |
| 3 | * it will not, however, write anything in that window. this is a problem | |
| 4 | * with notify.c. maybe one day i'll modify notify.c so that these two | |
| 5 | * plugins are more compatible. we'll see. | |
| 6 | * | |
| 7 | * This lagometer has a tendency to not at all show the same lag that the | |
| 8 | * built-in lagometer shows. My guess as to why this is (because they use the | |
| 9 | * exact same code) is because it sends the string more often. That's why I | |
| 10 | * included the configuration option to set the delay between updates. | |
| 11 | * | |
| 12 | * You can load this plugin even when you're not signed on, even though it | |
| 13 | * modifies the buddy list. This is because it checks to see that the buddy | |
| 14 | * list is actually there. In every case that I've been able to think of so | |
| 15 | * far, it does the right thing (tm). | |
| 16 | */ | |
| 17 | ||
| 18 | #define GAIM_PLUGINS | |
| 19 | #include "gaim.h" | |
| 20 | ||
| 21 | #include <time.h> | |
| 22 | #include <sys/types.h> | |
| 23 | #include <sys/time.h> | |
| 24 | #include <unistd.h> | |
| 25 | #include <math.h> | |
| 26 | ||
| 27 | #define MY_LAG_STRING "ZYXCHECKLAGXYZ" | |
| 28 | ||
| 29 | void *handle; | |
| 30 | GtkWidget *lagbox; | |
| 31 | GtkWidget *my_lagometer; | |
| 32 | struct timeval my_lag_tv; | |
| 33 | int check_timeout; | |
| 34 | guint delay = 10; | |
| 35 | static GtkWidget *confdlg; | |
| 36 | ||
| 37 | void update_lag(int us) { | |
| 38 | double pct; | |
| 39 | ||
| 40 | if (lagbox == NULL) { | |
| 41 | /* guess we better build it then :P */ | |
| 42 | GtkWidget *label = gtk_label_new("Lag-O-Meter: "); | |
| 43 | GList *tmp = gtk_container_children(GTK_CONTAINER(blist)); | |
| 44 | GtkWidget *vbox2 = (GtkWidget *)tmp->data; | |
| 45 | lagbox = gtk_hbox_new(FALSE, 0); | |
| 46 | my_lagometer = gtk_progress_bar_new(); | |
| 47 | ||
| 48 | gtk_box_pack_start(GTK_BOX(lagbox), label, FALSE, FALSE, 5); | |
| 49 | gtk_box_pack_start(GTK_BOX(lagbox), my_lagometer, TRUE, TRUE, 5); | |
| 50 | gtk_widget_set_usize(my_lagometer, 5, 5); | |
| 51 | ||
| 52 | gtk_widget_show(label); | |
| 53 | gtk_widget_show(my_lagometer); | |
| 54 | ||
| 55 | gtk_box_pack_start(GTK_BOX(vbox2), lagbox, FALSE, TRUE, 0); | |
| 56 | gtk_box_reorder_child(GTK_BOX(vbox2), lagbox, 1); | |
| 57 | gtk_widget_show(lagbox); | |
| 58 | } | |
| 59 | ||
| 60 | pct = us/100000; | |
| 61 | if (pct > 0) | |
| 62 | pct = 25 * log(pct); | |
| 63 | if (pct < 0) | |
| 64 | pct = 0; | |
| 65 | if (pct > 100) | |
| 66 | pct = 100; | |
| 67 | pct /= 100; | |
| 68 | ||
| 69 | gtk_progress_bar_update(GTK_PROGRESS_BAR(my_lagometer), pct); | |
| 70 | } | |
| 71 | ||
| 72 | void check_lag(char **who, char **message, void *m) { | |
| 73 | char *name = g_strdup(normalize(*who)); | |
| 74 | if (!strcasecmp(current_user->username, name) && | |
| 75 | !strcmp(*message, MY_LAG_STRING)) { | |
| 76 | struct timeval tv; | |
| 77 | int ms; | |
| 78 | ||
| 79 | gettimeofday(&tv, NULL); | |
| 80 | ||
| 81 | ms = 1000000 * (tv.tv_sec - my_lag_tv.tv_sec); | |
| 82 | ||
| 83 | ms += tv.tv_usec - my_lag_tv.tv_usec; | |
| 84 | ||
| 85 | update_lag(ms); | |
| 86 | *message = NULL; | |
| 87 | } | |
| 88 | g_free(name); | |
| 89 | } | |
| 90 | ||
| 91 | void send_lag() { | |
| 92 | gettimeofday(&my_lag_tv, NULL); | |
| 93 | serv_send_im(current_user->username, MY_LAG_STRING, 1); | |
| 94 | } | |
| 95 | ||
| 96 | void gaim_plugin_remove() { | |
| 97 | gtk_timeout_remove(check_timeout); | |
| 98 | if (confdlg) | |
| 99 | gtk_widget_destroy(confdlg); | |
| 100 | confdlg = NULL; | |
| 101 | gtk_widget_destroy(lagbox); | |
| 102 | } | |
| 103 | ||
| 104 | void avail_now(void *m) { | |
| 105 | update_lag(0); | |
| 106 | gaim_signal_connect(handle, event_im_recv, check_lag, NULL); | |
| 107 | gaim_signal_connect(handle, event_signoff, gaim_plugin_remove, NULL); | |
| 108 | check_timeout = gtk_timeout_add(1000 * delay, (GtkFunction)send_lag, NULL); | |
| 109 | } | |
| 110 | ||
| 111 | void gaim_plugin_init(void *h) { | |
| 112 | handle = h; | |
| 113 | ||
| 114 | if (!blist) | |
| 115 | gaim_signal_connect(handle, event_signon, avail_now, NULL); | |
| 116 | else | |
| 117 | avail_now(NULL); | |
| 118 | } | |
| 119 | ||
| 120 | void adjust_timeout(GtkWidget *button, GtkWidget *spinner) { | |
| 121 | delay = CLAMP(gtk_spin_button_get_value_as_int( | |
| 122 | GTK_SPIN_BUTTON(spinner)), 0, 3600); | |
| 123 | sprintf(debug_buff, "new updates: %d\n", delay); | |
| 124 | debug_print(debug_buff); | |
| 125 | gtk_timeout_remove(check_timeout); | |
| 126 | check_timeout = gtk_timeout_add(1000 * delay, (GtkFunction)send_lag, NULL); | |
| 127 | gtk_widget_destroy(confdlg); | |
| 128 | confdlg = NULL; | |
| 129 | } | |
| 130 | ||
| 131 | void gaim_plugin_config() { | |
| 132 | GtkWidget *label; | |
| 133 | GtkAdjustment *adj; | |
| 134 | GtkWidget *spinner; | |
| 135 | GtkWidget *button; | |
| 136 | GtkWidget *box; | |
| 137 | ||
| 138 | if (confdlg) { | |
| 139 | gtk_widget_show(confdlg); | |
| 140 | return; | |
| 141 | } | |
| 142 | ||
| 143 | confdlg = gtk_window_new(GTK_WINDOW_DIALOG); | |
| 144 | gtk_window_set_title(GTK_WINDOW(confdlg), "Gaim Lag Delay"); | |
| 145 | ||
| 146 | box = gtk_hbox_new(FALSE, 0); | |
| 147 | gtk_container_set_border_width(GTK_CONTAINER(box), 5); | |
| 148 | gtk_container_add(GTK_CONTAINER(confdlg), box); | |
| 149 | gtk_widget_show(box); | |
| 150 | ||
| 151 | label = gtk_label_new("Delay between updates: "); | |
| 152 | gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
| 153 | gtk_box_pack_start(GTK_BOX(box), label, FALSE, TRUE, 0); | |
| 154 | gtk_widget_show(label); | |
| 155 | ||
| 156 | adj = (GtkAdjustment *)gtk_adjustment_new(delay, 0, 3600, 1, 0, 0); | |
| 157 | spinner = gtk_spin_button_new(GTK_ADJUSTMENT(adj), 0, 0); | |
| 158 | gtk_box_pack_start(GTK_BOX(box), spinner, TRUE, TRUE, 0); | |
| 159 | gtk_widget_show(spinner); | |
| 160 | ||
| 161 | button = gtk_button_new_with_label("OK"); | |
| 162 | gtk_signal_connect(GTK_OBJECT(button), "clicked", | |
| 163 | (GtkSignalFunc)adjust_timeout, spinner); | |
| 164 | gtk_box_pack_start(GTK_BOX(box), button, FALSE, TRUE, 0); | |
| 165 | gtk_widget_show(button); | |
| 166 | ||
| 167 | gtk_widget_show(confdlg); | |
| 168 | } | |
| 169 | ||
| 170 | char *name() { | |
| 171 | return "Lag-O-Meter, Pluggified"; | |
| 172 | } | |
| 173 | ||
| 174 | char *description() { | |
| 175 | return "Your old familiar Lag-O-Meter, in a brand new form."; | |
| 176 | } |