Fixes leak 7/26
[modest] / src / modest-pair.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include "modest-pair.h"
31 #include <string.h> /* For strcmp() */
32 #include <stdio.h>
33
34 ModestPair*
35 modest_pair_new     (gpointer first, gpointer second, gboolean own)
36 {
37         ModestPair *pair;
38
39         pair = g_slice_new (ModestPair);
40
41         pair->first  = first;
42         pair->second = second;
43         pair->own    = own;
44         
45         return pair;
46 }
47
48
49 void
50 modest_pair_free (ModestPair *pair)
51 {
52         if (!pair)
53                 return;
54
55         if (pair->own) {
56                 g_free (pair->first);
57                 g_free (pair->second);
58         }
59         
60         g_slice_free (ModestPair, pair);
61 }
62
63
64
65 void
66 modest_pair_list_free (ModestPairList *pairs)
67 {
68         ModestPairList *cursor = pairs;
69         while (cursor) {
70                 modest_pair_free ((ModestPair*)cursor->data);
71                 cursor = cursor->next;
72         }
73         g_slist_free (pairs);
74 }
75
76 static gint on_pair_compare_as_string(gconstpointer a, gconstpointer b)
77 {
78         const ModestPair* pair_a = (const ModestPair*)a;
79   const gchar* target = (const gchar*)b;
80   
81         return strcmp ((const gchar*)pair_a->first, target);
82 }
83
84 ModestPair* modest_pair_list_find_by_first_as_string  (ModestPairList *pairs, 
85         const gchar* first)
86 {
87         GSList *matching = g_slist_find_custom (pairs, (gconstpointer)first, 
88                 on_pair_compare_as_string);
89         if (matching)
90                 return (ModestPair*)matching->data;
91         else
92                 return NULL;
93 }