a8c1fc68f7294ab82c06d07d1034b6760b9ea0cd
[cascardo/sgp.git] / src / friend.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/friend.h>
20 #include <sgp/channel.h>
21 #include <stdlib.h>
22
23 struct sgp_friend {
24         char *alias;
25         struct sgp_channel *channel;
26 };
27
28 struct sgp_friend * sgp_friend_new(char *alias)
29 {
30         struct sgp_friend *friend;
31         friend = malloc(sizeof(*friend));
32         if (!friend)
33                 return NULL;
34         friend->alias = strdup(alias);
35         if (!friend->alias)
36                 goto out;
37         friend->channel = NULL;
38         return friend;
39 out:
40         free(friend);
41         return NULL;
42 }
43
44 void sgp_friend_destroy(struct sgp_friend *friend)
45 {
46         free(friend->alias);
47         free(friend);
48 }
49
50 char * sgp_friend_get_alias(struct sgp_friend *friend)
51 {
52         return friend->alias;
53 }
54
55 /*
56  * Get the channel used for communication with a friend.
57  */
58 struct sgp_channel * sgp_friend_get_channel(struct sgp_friend *friend)
59 {
60         /*
61          * TODO: A friend may have multiple channels for contact. We
62          * should either implement this at the core (at sgp_send, for
63          * example), or create a channel that encapsulates that.
64          */
65         return friend->channel;
66 }