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