Move to non-static delegates
[platform/upstream/libgee.git] / gee / functions.vala
1 /* functions.vala
2  *
3  * Copyright (C) 2009  Didier Villevalois, Maciej Piechotka
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
18  *
19  * Author:
20  *      Didier 'Ptitjes' Villevalois <ptitjes@free.fr>
21  *      Maciej Piechotka <uzytkownik2@gmail.com>
22  */
23
24 using GLib;
25
26 namespace Gee {
27
28         /**
29          * Helpers for equal, hash and compare functions.
30          *
31          * With those functions, you can retrieve the equal, hash and compare
32          * functions that best match your element, key or value types. Supported
33          * types are (non-boxed) primitive, string and `Object` types.
34          *
35          * A special care is taken for classes inheriting from the
36          * {@link Comparable} interface. For such types, an appropriate compare
37          * function is returned that calls {@link Comparable.compare_to}.
38          *
39          */
40         namespace Functions {
41
42                 /**
43                  * Get a equality testing function for a given type.
44                  *
45                  * @param t the type which to get an equality testing function for.
46                  *
47                  * @return the equality testing function corresponding to the given type.
48                  */
49                 public static EqualDataFunc get_equal_func_for (Type t) {
50                         if (t == typeof (string)) {
51                                 return (a, b) => {return str_equal ((string) a, (string) b);};
52                         } else {
53                                 return (a, b) => {return direct_equal (a, b);};
54                         }
55                 }
56
57                 /**
58                  * Get a hash function for a given type.
59                  *
60                  * @param t the type which to get the hash function for.
61                  *
62                  * @return the hash function corresponding to the given type.
63                  */
64                 public static HashDataFunc get_hash_func_for (Type t) {
65                         if (t == typeof (string)) {
66                                 return (a) => {return str_hash ((string) a);};
67                         } else {
68                                 return (a) => {return direct_hash (a);};
69                         }
70                 }
71
72                 /**
73                  * Get a comparator function for a given type.
74                  *
75                  * @param t the type which to get a comparator function for.
76                  *
77                  * @return the comparator function corresponding to the given type.
78                  */
79                 public static CompareDataFunc get_compare_func_for (Type t) {
80                         if (t == typeof (string)) {
81                                 return (a, b) => {return strcmp((string) a, (string) b);};
82                         } else if (t.is_a (typeof (Comparable))) {
83                                 return (a, b) => {return ((Comparable<Comparable>) a).compare_to ((Comparable) b);};
84                         } else {
85                                 return (_val1, _val2) => {
86                                         long val1 = (long)_val1, val2 = (long)_val2;
87                                         if (val1 > val2) {
88                                                 return 1;
89                                         } else if (val1 == val2) {
90                                                 return 0;
91                                         } else {
92                                                 return -1;
93                                         }
94                                 };
95                         }
96                 }
97         }
98 }