annotate src/gaim-socket.h @ 12233:02833a0ae716

[gaim-migrate @ 14535] SF Patch #1367116 from Michael Carlson "In profiling gaim, I noticed that on simply starting CVS gaim, xmlnode_insert_child is using up by far the most CPU time. After some testing, I realized the reason why: xmlnode_insert_child is called some 18,000 times on startup, and it is inserting the child at the end of the list each time, simply by traversing through the entire linked list. Sometimes this list can have as many as 800 elements. This patch adds a variable to the _xmlnode struct, lastchild, which simply keeps track of the last node in the list of children. This is then used by xmlnode_insert_child to insert at the end of the list, instead of traversing through the whole list each time. The two relevant functions in xmlnode.c that need to be updated to keep track of this function appropriately have been updated. Running 3 times with and without the change, the results from oprofile say it all. Here are the measured number of clock cycles / % of total clock cycles / function used to simply start and close gaim before the change: 204 60.7143 xmlnode_insert_child 210 61.4035 xmlnode_insert_child 230 61.8280 xmlnode_insert_child And after (note that one time no clock cycles were caught at all) 3 2.5862 xmlnode_insert_child 3 2.5641 xmlnode_insert_child This affects other areas of the program than just starting up, but this seems to be the most noticeable place." Speed is good. As I was verifying this patch, I added some g_return_val_if_fail() checks. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 27 Nov 2005 03:42:39 +0000
parents db62420a53a2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3478
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
1 /*
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
2 * gaim-remote
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
3 *
8046
fa6395637e2c [gaim-migrate @ 8730]
Sean Egan <seanegan@gmail.com>
parents: 3478
diff changeset
4 * Gaim is the legal property of its developers, whose names are too numerous
fa6395637e2c [gaim-migrate @ 8730]
Sean Egan <seanegan@gmail.com>
parents: 3478
diff changeset
5 * to list here. Please refer to the COPYRIGHT file distributed with this
fa6395637e2c [gaim-migrate @ 8730]
Sean Egan <seanegan@gmail.com>
parents: 3478
diff changeset
6 * source distribution.
3478
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
7 *
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
8 * This program is free software; you can redistribute it and/or modify
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
9 * it under the terms of the GNU General Public License as published by
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
10 * the Free Software Foundation; either version 2 of the License, or
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
11 * (at your option) any later version.
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
12 *
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
13 * This program is distributed in the hope that it will be useful,
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
16 * GNU General Public License for more details.
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
17 *
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
18 * You should have received a copy of the GNU General Public License
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
19 * along with this program; if not, write to the Free Software
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
21 *
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
22 */
9713
db62420a53a2 [gaim-migrate @ 10574]
Mark Doliner <mark@kingant.net>
parents: 8046
diff changeset
23 #ifndef _GAIM_GAIM_SOCKET_H_
db62420a53a2 [gaim-migrate @ 10574]
Mark Doliner <mark@kingant.net>
parents: 8046
diff changeset
24 #define _GAIM_GAIM_SOCKET_H_
3478
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
25
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
26 struct gaim_cui_packet {
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
27 guchar type;
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
28 guchar subtype;
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
29 guint32 length;
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
30 char *data;
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
31 };
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
32
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
33
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
34 void cui_send_packet (int fd, struct gaim_cui_packet *p);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
35 gint gaim_connect_to_session(gint session);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
36 gboolean gaim_session_exists(int sess);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
37
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
38 struct gaim_cui_packet *cui_packet_new(guchar type, guchar subtype);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
39 void cui_packet_free(struct gaim_cui_packet *p);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
40 void cui_packet_append_string(struct gaim_cui_packet *p, char *str);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
41 void cui_packet_append_char(struct gaim_cui_packet *p, char c);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
42 void cui_packet_append_raw(struct gaim_cui_packet *p, char *str, int len);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
43
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
44
9713
db62420a53a2 [gaim-migrate @ 10574]
Mark Doliner <mark@kingant.net>
parents: 8046
diff changeset
45 #endif /* _GAIM_GAIM_SOCKET_H_ */