Mercurial > pidgin
annotate plugins/lagmeter.c @ 973:2e905413b17f
[gaim-migrate @ 983]
oscar invitations work better :-P
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Wed, 11 Oct 2000 03:04:35 +0000 |
parents | 5f19ec4a91f7 |
children | a05ad732b613 |
rev | line source |
---|---|
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; | |
848
5f19ec4a91f7
[gaim-migrate @ 858]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
193
diff
changeset
|
33 int check_timeout = -1; |
193 | 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)); | |
848
5f19ec4a91f7
[gaim-migrate @ 858]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
193
diff
changeset
|
74 if (!strcasecmp(normalize(current_user->username), name) && |
193 | 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() { | |
848
5f19ec4a91f7
[gaim-migrate @ 858]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
193
diff
changeset
|
97 if (check_timeout != -1) |
5f19ec4a91f7
[gaim-migrate @ 858]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
193
diff
changeset
|
98 gtk_timeout_remove(check_timeout); |
193 | 99 if (confdlg) |
100 gtk_widget_destroy(confdlg); | |
101 confdlg = NULL; | |
102 gtk_widget_destroy(lagbox); | |
103 } | |
104 | |
105 void avail_now(void *m) { | |
106 update_lag(0); | |
107 gaim_signal_connect(handle, event_im_recv, check_lag, NULL); | |
108 gaim_signal_connect(handle, event_signoff, gaim_plugin_remove, NULL); | |
109 check_timeout = gtk_timeout_add(1000 * delay, (GtkFunction)send_lag, NULL); | |
110 } | |
111 | |
112 void gaim_plugin_init(void *h) { | |
113 handle = h; | |
114 | |
115 if (!blist) | |
116 gaim_signal_connect(handle, event_signon, avail_now, NULL); | |
117 else | |
118 avail_now(NULL); | |
119 } | |
120 | |
121 void adjust_timeout(GtkWidget *button, GtkWidget *spinner) { | |
122 delay = CLAMP(gtk_spin_button_get_value_as_int( | |
123 GTK_SPIN_BUTTON(spinner)), 0, 3600); | |
124 sprintf(debug_buff, "new updates: %d\n", delay); | |
125 debug_print(debug_buff); | |
848
5f19ec4a91f7
[gaim-migrate @ 858]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
193
diff
changeset
|
126 if (check_timeout >= 0) |
5f19ec4a91f7
[gaim-migrate @ 858]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
193
diff
changeset
|
127 gtk_timeout_remove(check_timeout); |
193 | 128 check_timeout = gtk_timeout_add(1000 * delay, (GtkFunction)send_lag, NULL); |
129 gtk_widget_destroy(confdlg); | |
130 confdlg = NULL; | |
131 } | |
132 | |
133 void gaim_plugin_config() { | |
134 GtkWidget *label; | |
135 GtkAdjustment *adj; | |
136 GtkWidget *spinner; | |
137 GtkWidget *button; | |
138 GtkWidget *box; | |
139 | |
140 if (confdlg) { | |
141 gtk_widget_show(confdlg); | |
142 return; | |
143 } | |
144 | |
145 confdlg = gtk_window_new(GTK_WINDOW_DIALOG); | |
146 gtk_window_set_title(GTK_WINDOW(confdlg), "Gaim Lag Delay"); | |
147 | |
148 box = gtk_hbox_new(FALSE, 0); | |
149 gtk_container_set_border_width(GTK_CONTAINER(box), 5); | |
150 gtk_container_add(GTK_CONTAINER(confdlg), box); | |
151 gtk_widget_show(box); | |
152 | |
153 label = gtk_label_new("Delay between updates: "); | |
154 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | |
155 gtk_box_pack_start(GTK_BOX(box), label, FALSE, TRUE, 0); | |
156 gtk_widget_show(label); | |
157 | |
158 adj = (GtkAdjustment *)gtk_adjustment_new(delay, 0, 3600, 1, 0, 0); | |
159 spinner = gtk_spin_button_new(GTK_ADJUSTMENT(adj), 0, 0); | |
160 gtk_box_pack_start(GTK_BOX(box), spinner, TRUE, TRUE, 0); | |
161 gtk_widget_show(spinner); | |
162 | |
163 button = gtk_button_new_with_label("OK"); | |
164 gtk_signal_connect(GTK_OBJECT(button), "clicked", | |
165 (GtkSignalFunc)adjust_timeout, spinner); | |
166 gtk_box_pack_start(GTK_BOX(box), button, FALSE, TRUE, 0); | |
167 gtk_widget_show(button); | |
168 | |
169 gtk_widget_show(confdlg); | |
170 } | |
171 | |
172 char *name() { | |
173 return "Lag-O-Meter, Pluggified"; | |
174 } | |
175 | |
176 char *description() { | |
177 return "Your old familiar Lag-O-Meter, in a brand new form."; | |
178 } |