Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.h

    ra067771 r39f93f0  
    55  \********************************************************************/
    66
    7 /* The IRC-based UI (for now the only one)                              */
     7/* The big hairy IRCd part of the project                               */
    88
    99/*
     
    3333#define IRC_PING_STRING "PinglBee"
    3434
    35 #define UMODES "abisw"     /* Allowed umodes (although they mostly do nothing) */
    36 #define UMODES_PRIV "Ro"   /* Allowed, but not by user directly */
    37 #define UMODES_KEEP "R"    /* Don't allow unsetting using /MODE */
    38 #define CMODES "nt"        /* Allowed modes */
    39 #define CMODE "t"          /* Default mode */
    40 #define UMODE "s"          /* Default mode */
    41 
    42 #define CTYPES "&#"        /* Valid channel name prefixes */
     35#define UMODES "abisw"
     36#define UMODES_PRIV "Ro"
     37#define CMODES "nt"
     38#define CMODE "t"
     39#define UMODE "s"
     40#define CTYPES "&#"
    4341
    4442typedef enum
     
    5048        USTATUS_SHUTDOWN = 8
    5149} irc_status_t;
    52 
    53 struct irc_user;
    5450
    5551typedef struct irc
     
    6359        GIConv iconv, oconv;
    6460
    65         struct irc_user *root;
    66         struct irc_user *user;
    67        
    68         char *last_root_cmd;
     61        int sentbytes;
     62        time_t oldtime;
    6963
     64        char *nick;
     65        char *user;
     66        char *host;
     67        char *realname;
    7068        char *password; /* HACK: Used to save the user's password, but before
    7169                           logging in, this may contain a password we should
     
    7472        char umode[8];
    7573       
     74        char *myhost;
     75        char *mynick;
     76
     77        char *channel;
     78        int c_id;
     79
     80        char is_private;                /* Not too nice... */
     81        char *last_target;
     82       
    7683        struct query *queries;
    77         GSList *file_transfers;
     84        struct account *accounts;
     85        struct chat *chatrooms;
    7886       
    79         GSList *users, *channels;
    80         struct irc_channel *default_channel;
    81         GHashTable *nick_user_hash;
     87        struct __USER *users;
     88        GHashTable *userhash;
    8289        GHashTable *watches;
     90        struct __NICK *nicks;
     91        struct set *set;
    8392
    8493        gint r_watch_source_id;
    8594        gint w_watch_source_id;
    8695        gint ping_source_id;
    87        
    88         struct bee *b;
    8996} irc_t;
    9097
    91 typedef enum
    92 {
    93         IRC_USER_PRIVATE = 1,
    94         IRC_USER_AWAY = 2,
    95 } irc_user_flags_t;
     98#include "user.h"
    9699
    97 typedef struct irc_user
    98 {
    99         irc_t *irc;
    100        
    101         char *nick;
    102         char *user;
    103         char *host;
    104         char *fullname;
    105        
    106         /* Nickname in lowercase for case sensitive searches */
    107         char *key;
    108        
    109         irc_user_flags_t flags;
    110        
    111         char *sendbuf;
    112         int sendbuf_len;
    113         guint sendbuf_timer;
    114         //int sendbuf_flags;
    115        
    116         struct bee_user *bu;
    117        
    118         const struct irc_user_funcs *f;
    119 } irc_user_t;
    120 
    121 struct irc_user_funcs
    122 {
    123         gboolean (*privmsg)( irc_user_t *iu, const char *msg );
    124         gboolean (*ctcp)( irc_user_t *iu, char * const* ctcp );
    125 };
    126 
    127 extern const struct irc_user_funcs irc_user_root_funcs;
    128 extern const struct irc_user_funcs irc_user_self_funcs;
    129 
    130 typedef enum
    131 {
    132         IRC_CHANNEL_JOINED = 1,
    133        
    134         /* Hack: Set this flag right before jumping into IM when we expect
    135            a call to imcb_chat_new(). */
    136         IRC_CHANNEL_CHAT_PICKME = 0x10000,
    137 } irc_channel_flags_t;
    138 
    139 typedef struct irc_channel
    140 {
    141         irc_t *irc;
    142         char *name;
    143         char mode[8];
    144         int flags;
    145        
    146         char *topic;
    147         char *topic_who;
    148         time_t topic_time;
    149        
    150         GSList *users;
    151         struct set *set;
    152        
    153         const struct irc_channel_funcs *f;
    154         void *data;
    155 } irc_channel_t;
    156 
    157 struct irc_channel_funcs
    158 {
    159         gboolean (*privmsg)( irc_channel_t *ic, const char *msg );
    160         gboolean (*join)( irc_channel_t *ic );
    161         gboolean (*part)( irc_channel_t *ic, const char *msg );
    162         gboolean (*topic)( irc_channel_t *ic, const char *new );
    163         gboolean (*invite)( irc_channel_t *ic, irc_user_t *iu );
    164        
    165         gboolean (*_init)( irc_channel_t *ic );
    166         gboolean (*_free)( irc_channel_t *ic );
    167 };
    168 
    169 typedef enum
    170 {
    171         IRC_CHANNEL_USER_OP = 1,
    172         IRC_CHANNEL_USER_HALFOP = 2,
    173         IRC_CHANNEL_USER_VOICE = 4,
    174 } irc_channel_user_flags_t;
    175 
    176 typedef struct irc_channel_user
    177 {
    178         irc_user_t *iu;
    179         int flags;
    180 } irc_channel_user_t;
    181 
    182 typedef enum
    183 {
    184         IRC_CC_TYPE_DEFAULT,
    185         IRC_CC_TYPE_REST,
    186         IRC_CC_TYPE_GROUP,
    187         IRC_CC_TYPE_ACCOUNT,
    188 } irc_control_channel_type_t;
    189 
    190 struct irc_control_channel
    191 {
    192         irc_control_channel_type_t type;
    193         struct bee_group *group;
    194         struct account *account;
    195 };
    196 
    197 extern const struct bee_ui_funcs irc_ui_funcs;
    198 
    199 /* irc.c */
    200100extern GSList *irc_connection_list;
    201101
     
    203103void irc_abort( irc_t *irc, int immed, char *format, ... ) G_GNUC_PRINTF( 3, 4 );
    204104void irc_free( irc_t *irc );
    205 void irc_setpass (irc_t *irc, const char *pass);
    206105
     106void irc_exec( irc_t *irc, char **cmd );
    207107void irc_process( irc_t *irc );
    208108char **irc_parse_line( char *line );
    209109char *irc_build_line( char **cmd );
    210110
     111void irc_vawrite( irc_t *irc, char *format, va_list params );
    211112void irc_write( irc_t *irc, char *format, ... ) G_GNUC_PRINTF( 2, 3 );
    212113void irc_write_all( int now, char *format, ... ) G_GNUC_PRINTF( 2, 3 );
    213 void irc_vawrite( irc_t *irc, char *format, va_list params );
     114void irc_reply( irc_t *irc, int code, char *format, ... ) G_GNUC_PRINTF( 3, 4 );
     115G_MODULE_EXPORT int irc_usermsg( irc_t *irc, char *format, ... ) G_GNUC_PRINTF( 2, 3 );
     116char **irc_tokenize( char *buffer );
    214117
     118void irc_login( irc_t *irc );
    215119int irc_check_login( irc_t *irc );
     120void irc_motd( irc_t *irc );
     121void irc_names( irc_t *irc, char *channel );
     122void irc_topic( irc_t *irc, char *channel );
     123void irc_umode_set( irc_t *irc, char *s, int allow_priv );
     124void irc_who( irc_t *irc, char *channel );
     125void irc_spawn( irc_t *irc, user_t *u );
     126void irc_join( irc_t *irc, user_t *u, char *channel );
     127void irc_part( irc_t *irc, user_t *u, char *channel );
     128void irc_kick( irc_t *irc, user_t *u, char *channel, user_t *kicker );
     129void irc_kill( irc_t *irc, user_t *u );
     130void irc_invite( irc_t *irc, char *nick, char *channel );
     131void irc_whois( irc_t *irc, char *nick );
     132void irc_setpass( irc_t *irc, const char *pass ); /* USE WITH CAUTION! */
    216133
    217 void irc_umode_set( irc_t *irc, const char *s, gboolean allow_priv );
     134int irc_send( irc_t *irc, char *nick, char *s, int flags );
     135int irc_privmsg( irc_t *irc, user_t *u, char *type, char *to, char *prefix, char *msg );
     136int irc_msgfrom( irc_t *irc, char *nick, char *msg );
     137int irc_noticefrom( irc_t *irc, char *nick, char *msg );
    218138
    219 /* irc_channel.c */
    220 irc_channel_t *irc_channel_new( irc_t *irc, const char *name );
    221 irc_channel_t *irc_channel_by_name( irc_t *irc, const char *name );
    222 int irc_channel_free( irc_channel_t *ic );
    223 int irc_channel_add_user( irc_channel_t *ic, irc_user_t *iu );
    224 int irc_channel_del_user( irc_channel_t *ic, irc_user_t *iu );
    225 irc_channel_user_t *irc_channel_has_user( irc_channel_t *ic, irc_user_t *iu );
    226 int irc_channel_set_topic( irc_channel_t *ic, const char *topic, const irc_user_t *who );
    227 void irc_channel_user_set_mode( irc_channel_t *ic, irc_user_t *iu, irc_channel_user_flags_t flags );
    228 void irc_channel_printf( irc_channel_t *ic, char *format, ... );
    229 gboolean irc_channel_name_ok( const char *name );
    230 
    231 /* irc_commands.c */
    232 void irc_exec( irc_t *irc, char **cmd );
    233 
    234 /* irc_send.c */
    235 void irc_send_num( irc_t *irc, int code, char *format, ... ) G_GNUC_PRINTF( 3, 4 );
    236 void irc_send_login( irc_t *irc );
    237 void irc_send_motd( irc_t *irc );
    238 void irc_usermsg( irc_t *irc, char *format, ... );
    239 void irc_send_join( irc_channel_t *ic, irc_user_t *iu );
    240 void irc_send_part( irc_channel_t *ic, irc_user_t *iu, const char *reason );
    241 void irc_send_names( irc_channel_t *ic );
    242 void irc_send_topic( irc_channel_t *ic, gboolean topic_change );
    243 void irc_send_whois( irc_user_t *iu );
    244 void irc_send_who( irc_t *irc, GSList *l, const char *channel );
    245 void irc_send_msg( irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *prefix );
    246 void irc_send_msg_raw( irc_user_t *iu, const char *type, const char *dst, const char *msg );
    247 void irc_send_msg_f( irc_user_t *iu, const char *type, const char *dst, const char *format, ... ) G_GNUC_PRINTF( 4, 5 );
    248 void irc_send_nick( irc_user_t *iu, const char *new );
    249 void irc_send_channel_user_mode_diff( irc_channel_t *ic, irc_user_t *iu,
    250                                       irc_channel_user_flags_t old, irc_channel_user_flags_t new );
    251 
    252 /* irc_user.c */
    253 irc_user_t *irc_user_new( irc_t *irc, const char *nick );
    254 int irc_user_free( irc_t *irc, irc_user_t *iu );
    255 irc_user_t *irc_user_by_name( irc_t *irc, const char *nick );
    256 int irc_user_set_nick( irc_user_t *iu, const char *new );
    257 gint irc_user_cmp( gconstpointer a_, gconstpointer b_ );
    258 const char *irc_user_get_away( irc_user_t *iu );
    259 
    260 /* irc_util.c */
    261 char *set_eval_timezone( struct set *set, char *value );
    262 char *irc_format_timestamp( irc_t *irc, time_t msg_ts );
    263 
    264 /* irc_im.c */
    265 void bee_irc_channel_update( irc_t *irc, irc_channel_t *ic, irc_user_t *iu );
     139void buddy_send_handler( irc_t *irc, user_t *u, char *msg, int flags );
     140struct groupchat *irc_chat_by_channel( irc_t *irc, char *channel );
    266141
    267142#endif
Note: See TracChangeset for help on using the changeset viewer.