Use the printf channel in our main example.
[cascardo/sgp.git] / src / main.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/share.h>
20 #include <sgp/channels/printf.h>
21
22 int main(int argc, char **argv)
23 {
24         struct sgp_group *group;
25         struct sgp_msg *msg;
26         struct sgp_friend *friend;
27         int r;
28         /* TODO: access a database here? */
29         friend = sgp_friend_new("Thadeu Cascardo");
30         if (!friend)
31                 return 1;
32         sgp_friend_set_channel(friend, sgp_printf_channel());
33         group = sgp_group_new("Myself");
34         if (!group)
35                 goto out_group;
36         msg = sgp_msg_new("New message for you");
37         if (!msg)
38                 goto out_msg;
39         r = sgp_group_add_friend(group, friend);
40         if (r)
41                 goto out_add;
42         r = sgp_share(group, msg);
43         sgp_msg_destroy(msg);
44         sgp_group_destroy(group);
45         /* we must only destroy the friend after all group references
46          * are gone */
47         sgp_friend_destroy(friend);
48         return r;
49 out_add:
50         sgp_msg_destroy(msg);
51 out_msg:
52         sgp_group_destroy(group);
53 out_group:
54         sgp_friend_destroy(friend);
55         return 1;
56 }