]> Pileus Git - ~andy/lamechat/blob - chat.h
Usability fixes.
[~andy/lamechat] / chat.h
1 /*
2  * Copyright (C) 2017 Andy Spencer <andy753421@gmail.com>
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
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /* Message Types */
19 typedef unsigned long long stamp_t;
20
21 typedef struct server_t  server_t;
22 typedef struct channel_t channel_t;
23
24 typedef enum {
25         IRC,
26         XMPP,
27 } protocol_t;
28
29 typedef struct server_t {
30         protocol_t  protocol;
31         char       *name;
32         server_t   *next;
33 } server_t;
34
35 typedef struct channel_t {
36         server_t   *server;
37         char       *name;
38         FILE       *log;
39         int         seen;
40         channel_t  *next;
41 } channel_t;
42
43 typedef struct {
44         channel_t  *channel;
45         stamp_t     when;
46         char       *from;
47         char       *text;
48 } message_t;
49
50 /* Global Data */
51 extern server_t  *servers;
52 extern channel_t *channels;
53 extern message_t *messages;
54 extern int        history;
55
56 /* Chat functions */
57 void chat_init(void);
58 void chat_config(const char *group, const char *name,
59                  const char *key, const char *value);
60 void chat_recv(channel_t *channel, const char *from, const char *text);
61 void chat_send(channel_t *channel, const char *text);
62 void chat_exit(void);
63
64 server_t  *add_server(const char *name, protocol_t protocol);
65 channel_t *add_channel(const char *name, server_t *server);
66 server_t  *find_server(const char *name);
67 channel_t *find_channel(const char *name);
68
69 /* Protocol functions */
70 extern void irc_init(void);
71 extern server_t *irc_server(void);
72 extern channel_t *irc_channel(void);
73 extern void irc_config(server_t *server, channel_t *channel,
74                        const char *group, const char *name,
75                        const char *key, const char *value);
76 extern void irc_send(channel_t *channel, const char *text);
77 extern void irc_exit(void);
78
79 extern void xmpp_init(void);
80 extern server_t *xmpp_server(void);
81 extern channel_t *xmpp_channel(void);
82 extern void xmpp_config(server_t *server, channel_t *channel,
83                         const char *group, const char *name,
84                         const char *key, const char *value);
85 extern void xmpp_send(channel_t *channel, const char *text);
86 extern void xmpp_exit(void);