The very start of a small framework for social.
[cascardo/sgp.git] / src / group.c
1 /*
2  *  Copyright (C) 2013  Thadeu Lima de Souza Cascardo <cascardo@cascardo.info>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <sgp/group.h>
20 #include <sgp/friend.h>
21 #include <stdlib.h>
22
23 struct sgp_group {
24         struct sgp_friend **friends;
25         int nr_friends;
26 };
27
28 struct sgp_group * sgp_group_new()
29 {
30         struct sgp_group *group;
31         group = malloc(sizeof(*group));
32         group->nr_friends = 0;
33         group->friends = NULL;
34         return group;
35 }
36
37 int sgp_group_add_friend(struct sgp_group *group, struct sgp_friend *friend)
38 {
39         return 0;
40 }
41
42 /*
43  * Get the channel used for communication with a friend.
44  */
45 struct sgp_friend ** sgp_group_first(struct sgp_group *group)
46 {
47         if (group->nr_friends > 0)
48                 return &group->friends[0];
49         return NULL;
50 }
51
52 struct sgp_friend ** sgp_group_next(struct sgp_group *group,
53                                         struct sgp_friend **friend)
54 {
55         int n;
56         n = (friend - group->friends) / sizeof(*friend);
57         if (group->nr_friends > n + 1)
58                 return &group->friends[n+1];
59         return NULL;
60 }