src/*.[ch]: Added GPLv2 license information.
[sort-networks.git] / src / sn_comparator.c
1 /**
2  * collectd - src/sn_comparator.c
3  * Copyright (C) 2008  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #include <stdlib.h>
23 #include <string.h>
24
25 #include "sn_comparator.h"
26
27 sn_comparator_t *sn_comparator_create (int min, int max)
28 {
29   sn_comparator_t *c;
30
31   c = (sn_comparator_t *) malloc (sizeof (sn_comparator_t));
32   if (c == NULL)
33     return (NULL);
34   memset (c, '\0', sizeof (sn_comparator_t));
35
36   c->min = min;
37   c->max = max;
38
39   return (c);
40 } /* sn_comparator_t *sn_comparator_create */
41
42 void sn_comparator_destroy (sn_comparator_t *c)
43 {
44   if (c != NULL)
45     free (c);
46 } /* void sn_comparator_destroy */
47
48 void sn_comparator_invert (sn_comparator_t *c)
49 {
50   int max = c->min;
51   int min = c->max;
52
53   c->min = min;
54   c->max = max;
55 } /* void sn_comparator_invert */
56
57 void sn_comparator_swap (sn_comparator_t *c, int con0, int con1)
58 {
59   if (c->min == con0)
60   {
61     c->min = con1;
62   }
63   else if (c->min == con1)
64   {
65     c->min = con0;
66   }
67
68   if (c->max == con0)
69   {
70     c->max = con1;
71   }
72   else if (c->max == con1)
73   {
74     c->max = con0;
75   }
76 } /* void sn_comparator_swap */
77
78 int sn_comparator_compare (const void *v0, const void *v1)
79 {
80   sn_comparator_t *c0 = (sn_comparator_t *) v0;
81   sn_comparator_t *c1 = (sn_comparator_t *) v1;
82
83   if (SN_COMP_LEFT (c0) < SN_COMP_LEFT (c1))
84     return (-1);
85   else if (SN_COMP_LEFT (c0) > SN_COMP_LEFT (c1))
86     return (1);
87   else if (SN_COMP_RIGHT (c0) < SN_COMP_RIGHT (c1))
88     return (-1);
89   else if (SN_COMP_RIGHT (c0) > SN_COMP_RIGHT (c1))
90     return (1);
91   else
92     return (0);
93 } /* int sn_comparator_compare */
94
95 /* vim: set shiftwidth=2 softtabstop=2 : */