* widgets/modest-window.c: Add a method to get action from its private
[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
33 ModestPair*
34 modest_pair_new     (gpointer first, gpointer second, gboolean own)
35 {
36         ModestPair *pair;
37
38         pair = g_slice_new (ModestPair);
39
40         pair->first  = first;
41         pair->second = second;
42         pair->own    = own;
43         
44         return pair;
45 }
46
47
48 void
49 modest_pair_free (ModestPair *pair)
50 {
51         if (!pair)
52                 return;
53
54         if (pair->own) {
55                 g_free (pair->first);
56                 g_free (pair->second);
57         }
58         
59         g_slice_free (ModestPair, pair);
60 }
61
62
63
64 void
65 modest_pair_list_free (ModestPairList *pairs)
66 {
67         ModestPairList *cursor = pairs;
68         while (cursor) {
69                 modest_pair_free ((ModestPair*)cursor->data);
70                 cursor = cursor->next;
71         }
72         g_slist_free (pairs);
73 }
74
75 static gint on_pair_compare_as_string(gconstpointer a, gconstpointer b)
76 {
77         const ModestPair* pair_a = (const ModestPair*)a;
78         const ModestPair* pair_b = (const ModestPair*)b;
79         
80         return strcmp ((const gchar*)pair_a->first, (const gchar*)pair_b->first);
81 }
82
83 ModestPair* modest_pair_list_find_by_first_as_string  (ModestPairList *pairs, 
84         const gchar* first)
85 {
86         GSList *matching = g_slist_find_custom (pairs, (gconstpointer)first, 
87                 on_pair_compare_as_string);
88         if (matching)
89                 return (ModestPair*)matching->data;
90         else
91                 return NULL;
92 }