Tue, 22 Jun 2010 22:44:28 +0000
Destroy Parts when the SlpMessage is destroyed.
| 8810 | 1 | /** |
| 2 | * @file history.c MSN history functions | |
| 3 | * | |
| 15884 | 4 | * purple |
| 8810 | 5 | * |
| 15884 | 6 | * Purple is the legal property of its developers, whose names are too numerous |
|
9198
e8eb6d5eb9eb
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
8810
diff
changeset
|
7 | * to list here. Please refer to the COPYRIGHT file distributed with this |
|
e8eb6d5eb9eb
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
8810
diff
changeset
|
8 | * source distribution. |
| 8810 | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify | |
| 11 | * it under the terms of the GNU General Public License as published by | |
| 12 | * the Free Software Foundation; either version 2 of the License, or | |
| 13 | * (at your option) any later version. | |
| 14 | * | |
| 15 | * This program is distributed in the hope that it will be useful, | |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 18 | * GNU General Public License for more details. | |
| 19 | * | |
| 20 | * You should have received a copy of the GNU General Public License | |
| 21 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
15884
diff
changeset
|
22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 8810 | 23 | */ |
| 24 | #include "msn.h" | |
| 25 | #include "history.h" | |
| 26 | ||
| 27 | MsnHistory * | |
| 28 | msn_history_new(void) | |
| 29 | { | |
| 30 | MsnHistory *history = g_new0(MsnHistory, 1); | |
|
9198
e8eb6d5eb9eb
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
8810
diff
changeset
|
31 | |
| 8810 | 32 | history->trId = 1; |
|
9198
e8eb6d5eb9eb
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
8810
diff
changeset
|
33 | |
| 8810 | 34 | history->queue = g_queue_new(); |
| 35 | ||
| 36 | return history; | |
| 37 | } | |
| 38 | ||
| 39 | void | |
| 40 | msn_history_destroy(MsnHistory *history) | |
| 41 | { | |
| 42 | MsnTransaction *trans; | |
| 43 | ||
| 44 | while ((trans = g_queue_pop_head(history->queue)) != NULL) | |
| 45 | msn_transaction_destroy(trans); | |
| 46 | ||
| 47 | g_queue_free(history->queue); | |
| 48 | g_free(history); | |
| 49 | } | |
| 50 | ||
| 51 | MsnTransaction * | |
| 52 | msn_history_find(MsnHistory *history, unsigned int trId) | |
| 53 | { | |
| 54 | MsnTransaction *trans; | |
| 55 | GList *list; | |
| 56 | ||
| 57 | for (list = history->queue->head; list != NULL; list = list->next) | |
| 58 | { | |
| 59 | trans = list->data; | |
| 60 | if (trans->trId == trId) | |
| 61 | return trans; | |
| 62 | } | |
| 63 | ||
| 64 | return NULL; | |
| 65 | } | |
| 66 | ||
| 67 | void | |
| 68 | msn_history_add(MsnHistory *history, MsnTransaction *trans) | |
| 69 | { | |
|
10296
9badf1cedc6e
[gaim-migrate @ 11476]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
9198
diff
changeset
|
70 | GQueue *queue; |
|
25785
8e643bab5386
*** Plucked rev 03e380d307e9063ff3938a7ccab18085899c6140 (qulogic@pidgin.im):
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20597
diff
changeset
|
71 | int max_elems; |
|
10296
9badf1cedc6e
[gaim-migrate @ 11476]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
9198
diff
changeset
|
72 | |
|
9badf1cedc6e
[gaim-migrate @ 11476]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
9198
diff
changeset
|
73 | g_return_if_fail(history != NULL); |
|
9badf1cedc6e
[gaim-migrate @ 11476]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
9198
diff
changeset
|
74 | g_return_if_fail(trans != NULL); |
|
9badf1cedc6e
[gaim-migrate @ 11476]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
9198
diff
changeset
|
75 | |
|
9badf1cedc6e
[gaim-migrate @ 11476]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
9198
diff
changeset
|
76 | queue = history->queue; |
| 8810 | 77 | |
| 78 | trans->trId = history->trId++; | |
|
9198
e8eb6d5eb9eb
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
8810
diff
changeset
|
79 | |
| 8810 | 80 | g_queue_push_tail(queue, trans); |
|
9198
e8eb6d5eb9eb
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
8810
diff
changeset
|
81 | |
|
25785
8e643bab5386
*** Plucked rev 03e380d307e9063ff3938a7ccab18085899c6140 (qulogic@pidgin.im):
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20597
diff
changeset
|
82 | if (trans->cmdproc->servconn->type == MSN_SERVCONN_NS) |
|
8e643bab5386
*** Plucked rev 03e380d307e9063ff3938a7ccab18085899c6140 (qulogic@pidgin.im):
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20597
diff
changeset
|
83 | max_elems = MSN_NS_HIST_ELEMS; |
|
8e643bab5386
*** Plucked rev 03e380d307e9063ff3938a7ccab18085899c6140 (qulogic@pidgin.im):
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20597
diff
changeset
|
84 | else |
|
8e643bab5386
*** Plucked rev 03e380d307e9063ff3938a7ccab18085899c6140 (qulogic@pidgin.im):
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20597
diff
changeset
|
85 | max_elems = MSN_SB_HIST_ELEMS; |
|
8e643bab5386
*** Plucked rev 03e380d307e9063ff3938a7ccab18085899c6140 (qulogic@pidgin.im):
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20597
diff
changeset
|
86 | |
|
8e643bab5386
*** Plucked rev 03e380d307e9063ff3938a7ccab18085899c6140 (qulogic@pidgin.im):
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
20597
diff
changeset
|
87 | if (queue->length > max_elems) |
| 8810 | 88 | { |
| 89 | trans = g_queue_pop_head(queue); | |
| 90 | msn_transaction_destroy(trans); | |
| 91 | } | |
| 92 | } | |
| 13863 | 93 |