Changeset 7b23afd for protocols


Ignore:
Timestamp:
2005-11-07T16:16:18Z (19 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
f7f3ada
Parents:
fe51bcf
Message:

Migrate my pluginable branch to use Wilmers' branch as parent

Location:
protocols
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber.c

    rfe51bcf r7b23afd  
    157157#define JCS_CLOSED  3   /* closed */
    158158
    159 
    160 static char *jabber_name()
    161 {
    162         return "Jabber";
    163 }
    164159
    165160#define STATE_EVT(arg) if(gjc->on_state) { (gjc->on_state)(gjc, (arg) ); }
     
    24132408}
    24142409
    2415 static struct prpl *my_protocol = NULL;
    2416 
    2417 void jabber_init(struct prpl *ret)
    2418 {
     2410
     2411void jabber_init()
     2412{
     2413        struct prpl *ret = g_new0(struct prpl, 1);
     2414
    24192415        /* the NULL's aren't required but they're nice to have */
    2420         ret->protocol = PROTO_JABBER;
    2421         ret->name = jabber_name;
     2416        ret->name = "jabber";
    24222417        ret->away_states = jabber_away_states;
    24232418        ret->actions = jabber_actions;
     
    24422437        ret->group_buddy = jabber_group_change;
    24432438
    2444         my_protocol = ret;
    2445 }
     2439        register_protocol (ret);
     2440}
  • protocols/msn/msn.c

    rfe51bcf r7b23afd  
    2626#include "nogaim.h"
    2727#include "msn.h"
    28 
    29 static struct prpl *my_protocol = NULL;
    3028
    3129static void msn_login( struct aim_user *acct )
     
    375373}
    376374
    377 void msn_init(struct prpl *ret)
    378 {
    379         ret->protocol = PROTO_MSN;
     375void msn_init()
     376{
     377        struct prpl *ret = g_new0(struct prpl, 1);
     378        ret->name = "msn";
    380379        ret->login = msn_login;
    381380        ret->close = msn_close;
     
    399398        ret->send_typing = msn_send_typing;
    400399
    401         my_protocol = ret;
    402 }
     400        register_protocol(ret);
     401}
  • protocols/nogaim.c

    rfe51bcf r7b23afd  
    3939#include <iconv.h>
    4040
    41 struct prpl *proto_prpl[PROTO_MAX];
    42 char proto_name[PROTO_MAX][8] = { "TOC", "OSCAR", "YAHOO", "ICQ", "MSN", "", "", "", "JABBER", "", "", "", "", "", "", "" };
    43 
    4441static char *proto_away_alias[7][5] =
    4542{
     
    5855GSList *connections;
    5956
     57gboolean load_plugin(char *path)
     58{
     59        void (*init_function) (void);
     60       
     61        GModule *mod = g_module_open(path, G_MODULE_BIND_LAZY);
     62
     63        if(!mod) {
     64                log_message(LOGLVL_ERROR, "Can't find `%s', not loading", path);
     65                return FALSE;
     66        }
     67
     68        if(!g_module_symbol(mod,"init_plugin",(gpointer *) &init_function)) {
     69                log_message(LOGLVL_WARNING, "Can't find function `init_plugin' in `%s'\n", path);
     70                return FALSE;
     71        }
     72
     73        init_function();
     74
     75        return TRUE;
     76}
    6077
    6178/* nogaim.c */
    6279
     80GList *protocols = NULL;
     81 
     82void register_protocol (struct prpl *p)
     83{
     84        protocols = g_list_append(protocols, p);
     85}
     86
     87 
     88struct prpl *find_protocol(const char *name)
     89{
     90        GList *gl;
     91        for (gl = protocols; gl; gl = gl->next)
     92        {
     93                struct prpl *proto = gl->data;
     94                if(!g_strcasecmp(proto->name, name))
     95                        return proto;
     96        }
     97        return NULL;
     98}
     99
     100/* nogaim.c */
    63101void nogaim_init()
    64102{
    65         proto_prpl[PROTO_MSN] = g_new0 ( struct prpl, 1 );
     103        GDir *dir;
     104        GError *error = NULL;
     105
    66106#ifdef WITH_MSN
    67         msn_init( proto_prpl[PROTO_MSN] );
     107        extern void msn_init();
     108        msn_init();
    68109#endif
    69110
    70         proto_prpl[PROTO_OSCAR] = g_new0( struct prpl, 1 );
    71111#ifdef WITH_OSCAR
    72         oscar_init( proto_prpl[PROTO_OSCAR] );
     112        extern void oscar_init();
     113        oscar_init();
    73114#endif
    74115       
    75         proto_prpl[PROTO_YAHOO] = g_new0( struct prpl, 1 );
    76116#ifdef WITH_YAHOO
    77         byahoo_init( proto_prpl[PROTO_YAHOO] );
     117        extern void byahoo_init();
     118        byahoo_init();
    78119#endif
    79120       
    80         proto_prpl[PROTO_JABBER] = g_new0( struct prpl, 1 );
    81121#ifdef WITH_JABBER
    82         jabber_init( proto_prpl[PROTO_JABBER] );
     122        extern void jabber_init();
     123        jabber_init();
    83124#endif
     125
     126        dir = g_dir_open(PLUGINDIR, 0, &error);
     127
     128        if (dir) {
     129                const gchar *entry;
     130                char *path;
     131
     132                while ((entry = g_dir_read_name(dir))) {
     133                        path = g_build_filename(PLUGINDIR, entry, NULL);
     134                        if(!path) {
     135                                log_message(LOGLVL_WARNING, "Can't build path for %s\n", entry);
     136                                continue;
     137                        }
     138
     139                        load_plugin(path);
     140
     141                        g_free(path);
     142                }
     143
     144                g_dir_close(dir);
     145        }
    84146}
    85147
     
    122184                        gc->prpl->set_away( gc, s, away );
    123185                        if( set_getint( gc->irc, "debug" ) )
    124                                 irc_usermsg( gc->irc, "Setting away state for %s to %s", proto_name[gc->protocol], s );
     186                                irc_usermsg( gc->irc, "Setting away state for %s to %s", gc->prpl->name, s );
    125187                }
    126188                else
     
    168230   way for now because I don't want to touch the Gaim code too much since
    169231   it's not going to be here for too long anymore. */
    170 int handle_cmp( char *a, char *b, int protocol )
    171 {
    172         if( protocol == PROTO_TOC || protocol == PROTO_ICQ )
     232int handle_cmp( char *a, char *b, struct prpl *protocol )
     233{
     234        if( !strcmp(protocol->name, "oscar") )
    173235        {
    174236                /* AIM, being teh evil, thinks it's cool that users can put
     
    210272        gc = g_new0( struct gaim_connection, 1 );
    211273       
    212         gc->protocol = user->protocol;
    213         gc->prpl = proto_prpl[gc->protocol];
     274        gc->prpl = user->prpl;
    214275        g_snprintf( gc->username, sizeof( gc->username ), "%s", user->username );
    215276        g_snprintf( gc->password, sizeof( gc->password ), "%s", user->password );
     
    254315void set_login_progress( struct gaim_connection *gc, int step, char *msg )
    255316{
    256         irc_usermsg( gc->irc, "%s(%s) - Logging in: %s", proto_name[gc->protocol], gc->username, msg );
     317        irc_usermsg( gc->irc, "%s(%s) - Logging in: %s", gc->prpl->name, gc->username, msg );
    257318}
    258319
     
    260321void hide_login_progress( struct gaim_connection *gc, char *msg )
    261322{
    262         irc_usermsg( gc->irc, "%s(%s) - Login error: %s", proto_name[gc->protocol], gc->username, msg );
     323        irc_usermsg( gc->irc, "%s(%s) - Login error: %s", gc->prpl->name, gc->username, msg );
    263324}
    264325
     
    266327void hide_login_progress_error( struct gaim_connection *gc, char *msg )
    267328{
    268         irc_usermsg( gc->irc, "%s(%s) - Logged out: %s", proto_name[gc->protocol], gc->username, msg );
     329        irc_usermsg( gc->irc, "%s(%s) - Logged out: %s", gc->prpl->name, gc->username, msg );
    269330}
    270331
     
    289350                strip_html( msg );
    290351       
    291         irc_usermsg( gc->irc, "%s(%s) - %s", proto_name[gc->protocol], gc->username, msg );
     352        irc_usermsg( gc->irc, "%s(%s) - %s", gc->prpl->name, gc->username, msg );
    292353}
    293354
     
    314375        u = user_find( gc->irc, gc->irc->nick );
    315376       
    316         irc_usermsg( gc->irc, "%s(%s) - Logged in", proto_name[gc->protocol], gc->username );
     377        irc_usermsg( gc->irc, "%s(%s) - Logged in", gc->prpl->name, gc->username );
    317378       
    318379        gc->keepalive = g_timeout_add( 60000, send_keepalive, gc );
     
    321382        if( u && u->away ) proto_away( gc, u->away );
    322383       
    323         if( gc->protocol == PROTO_ICQ )
     384        if( !strcmp(gc->prpl->name, "icq") )
    324385        {
    325386                for( u = gc->irc->users; u; u = u->next )
     
    361422        account_t *a;
    362423       
    363         irc_usermsg( gc->irc, "%s(%s) - Signing off..", proto_name[gc->protocol], gc->username );
     424        irc_usermsg( gc->irc, "%s(%s) - Signing off..", gc->prpl->name, gc->username );
    364425
    365426        gaim_input_remove( gc->keepalive );
     
    393454        {
    394455                int delay = set_getint( irc, "auto_reconnect_delay" );
    395                 irc_usermsg( gc->irc, "%s(%s) - Reconnecting in %d seconds..", proto_name[gc->protocol], gc->username, delay);
     456                irc_usermsg( gc->irc, "%s(%s) - Reconnecting in %d seconds..", gc->prpl->name, gc->username, delay);
    396457               
    397458                a->reconnect = 1;
     
    449510       
    450511        memset( nick, 0, MAX_NICK_LENGTH + 1 );
    451         strcpy( nick, nick_get( gc->irc, handle, gc->protocol, realname ) );
     512        strcpy( nick, nick_get( gc->irc, handle, gc->prpl, realname ) );
    452513       
    453514        u = user_add( gc->irc, nick );
     
    473534        else
    474535        {
    475                 u->host = g_strdup( proto_name[gc->user->protocol] );
     536                u->host = g_strdup( gc->user->prpl->name );
    476537                u->user = g_strdup( handle );
    477538        }
     
    567628                        if( set_getint( gc->irc, "debug" ) || g_strcasecmp( set_getstr( gc->irc, "handle_unknown" ), "ignore" ) != 0 )
    568629                        {
    569                                 irc_usermsg( gc->irc, "serv_got_update() for handle %s on connection %s(%s):", handle, proto_name[gc->protocol], gc->username );
     630                                irc_usermsg( gc->irc, "serv_got_update() for handle %s on connection %s(%s):", handle, gc->prpl->name, gc->username );
    570631                                irc_usermsg( gc->irc, "loggedin = %d, type = %d", loggedin, type );
    571632                        }
     
    602663        }
    603664       
    604         if( ( type & UC_UNAVAILABLE ) && ( gc->protocol == PROTO_OSCAR || gc->protocol == PROTO_TOC ) )
     665        if( ( type & UC_UNAVAILABLE ) && ( !strcmp(gc->prpl->name, "oscar") || !strcmp(gc->prpl->name, "icq")) )
    605666        {
    606667                u->away = g_strdup( "Away" );
    607668        }
    608         else if( ( type & UC_UNAVAILABLE ) && ( gc->protocol == PROTO_JABBER ) )
     669        else if( ( type & UC_UNAVAILABLE ) && ( !strcmp(gc->prpl->name, "jabber") ) )
    609670        {
    610671                if( type & UC_DND )
     
    648709                {
    649710                        if( set_getint( irc, "debug" ) )
    650                                 irc_usermsg( irc, "Ignoring message from unknown handle %s on connection %s(%s)", handle, proto_name[gc->protocol], gc->username );
     711                                irc_usermsg( irc, "Ignoring message from unknown handle %s on connection %s(%s)", handle, gc->prpl->name, gc->username );
    651712                       
    652713                        return;
     
    670731                else
    671732                {
    672                         irc_usermsg( irc, "Message from unknown handle %s on connection %s(%s):", handle, proto_name[gc->protocol], gc->username );
     733                        irc_usermsg( irc, "Message from unknown handle %s on connection %s(%s):", handle, gc->prpl->name, gc->username );
    673734                        u = user_find( irc, irc->mynick );
    674735                }
     
    836897       
    837898        /* It might be yourself! */
    838         if( handle_cmp ( handle, b->gc->user->username, b->gc->protocol ) == 0 )
     899        if( handle_cmp ( handle, b->gc->user->username, b->gc->prpl ) == 0 )
    839900        {
    840901                u = user_find( b->gc->irc, b->gc->irc->nick );
  • protocols/nogaim.h

    rfe51bcf r7b23afd  
    7272        /* we need to do either oscar or TOC */
    7373        /* we make this as an int in case if we want to add more protocols later */
    74         int protocol;
    7574        struct prpl *prpl;
    7675        guint32 flags;
     
    152151        char user_info[2048];
    153152        int options;
    154         int protocol;
     153        struct prpl *prpl;
    155154        /* prpls can use this to save information about the user,
    156155         * like which server to connect to, etc */
     
    161160};
    162161
     162struct ft
     163{
     164        const char *filename;
     165       
     166        /* Total number of bytes in file */
     167        size_t total_bytes;
     168       
     169        /* Current number of bytes received */
     170        size_t cur_bytes;
     171};
     172
     173struct ft_request
     174{
     175        const char *filename;
     176        struct gaim_connection *gc;
     177};
     178
     179typedef void (*ft_recv_handler) (struct ft *, void *data, size_t len);
     180
    163181struct prpl {
    164         int protocol;
    165182        int options;
    166         char *(* name)();
     183        const char *name;
    167184
    168185        /* for ICQ and Yahoo, who have off/on per-conversation options */
     
    217234        void (* group_buddy)    (struct gaim_connection *, char *who, char *old_group, char *new_group);
    218235
     236        /* file transfers */
     237        struct ft_send_req *(* req_send_file) (struct gaim_connection *, const char *file);
     238        void (* send_file_part) (struct gaim_connection *, struct ft*, void *data, size_t length);
     239        void (* accept_recv_file) (struct gaim_connection *, struct ft*, ft_recv_handler);
     240
    219241        void (* buddy_free)     (struct buddy *);
    220242
    221243        char *(* get_status_string) (struct gaim_connection *gc, int stat);
    222244};
    223 
    224 #define PROTO_TOC       0
    225 #define PROTO_OSCAR     1
    226 #define PROTO_YAHOO     2
    227 #define PROTO_ICQ       3
    228 #define PROTO_MSN       4
    229 #define PROTO_IRC       5
    230 #define PROTO_FTP       6
    231 #define PROTO_VGATE     7
    232 #define PROTO_JABBER    8
    233 #define PROTO_NAPSTER   9
    234 #define PROTO_ZEPHYR    10
    235 #define PROTO_GADUGADU  11
    236 #define PROTO_MAX       16
    237 
    238 extern char proto_name[PROTO_MAX][8];
    239245
    240246#define UC_UNAVAILABLE  1
     
    247253
    248254G_MODULE_EXPORT GSList *get_connections();
    249 extern struct prpl *proto_prpl[16];
     255G_MODULE_EXPORT struct prpl *find_protocol(const char *name);
     256G_MODULE_EXPORT void register_protocol(struct prpl *);
    250257
    251258/* nogaim.c */
     
    259266int proto_away( struct gaim_connection *gc, char *away );
    260267char *set_eval_away_devoice( irc_t *irc, set_t *set, char *value );
    261 int handle_cmp( char *a, char *b, int protocol );
     268int handle_cmp( char *a, char *b, struct prpl *protocol );
    262269
    263270gboolean auto_reconnect( gpointer data );
     
    318325G_MODULE_EXPORT void info_string_append(GString *str, char *newline, char *name, char *value);
    319326
    320 #ifdef WITH_MSN
    321 /* msn.c */
    322 G_MODULE_EXPORT void msn_init( struct prpl *ret );
    323 #endif
    324 
    325 #ifdef WITH_OSCAR
    326 /* oscar.c */
    327 G_MODULE_EXPORT void oscar_init( struct prpl *ret );
    328 #endif
    329 
    330 #ifdef WITH_JABBER
    331 /* jabber.c */
    332 G_MODULE_EXPORT void jabber_init( struct prpl *ret );
    333 #endif
    334 
    335 #ifdef WITH_YAHOO
    336 /* yahoo.c */
    337 G_MODULE_EXPORT void byahoo_init( struct prpl *ret );
    338 #endif
     327/* file transfers */
     328G_MODULE_EXPORT void ft_progress( struct ft *, int);
     329G_MODULE_EXPORT void ft_incoming( struct ft_request * );
     330G_MODULE_EXPORT void ft_accepted( struct ft_request *, struct ft *);
     331G_MODULE_EXPORT void ft_denied( struct ft_request *, const char *reason);
    339332
    340333/* prefs.c */
  • protocols/oscar/oscar.c

    rfe51bcf r7b23afd  
    364364                odata->icq = TRUE;
    365365                /* this is odd but it's necessary for a proper do_import and do_export */
    366                 gc->protocol = PROTO_ICQ;
    367366                gc->password[8] = 0;
    368367        } else {
    369                 gc->protocol = PROTO_TOC;
    370368                gc->flags |= OPT_CONN_HTML;
    371369        }
     
    24672465}
    24682466
    2469 static struct prpl *my_protocol = NULL;
    2470 
    2471 void oscar_init(struct prpl *ret) {
    2472         ret->protocol = PROTO_OSCAR;
     2467void oscar_init()
     2468{
     2469        struct prpl *ret = g_new0(struct prpl, 1);
     2470        ret->name = "oscar";
    24732471        ret->away_states = oscar_away_states;
    24742472        ret->login = oscar_login;
     
    24882486        ret->get_status_string = oscar_get_status_string;
    24892487
    2490         my_protocol = ret;
    2491 }
     2488        register_protocol(ret);
     2489}
  • protocols/proxy.c

    rfe51bcf r7b23afd  
    5050#define GAIM_ERR_COND   (G_IO_HUP | G_IO_ERR | G_IO_NVAL)
    5151
    52 /*FIXME*               
    53         #ifndef _WIN32
    54                 if (getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &len) < 0) {
    55                         closesocket(fd);
    56                         g_free(phb);
    57                         return -1;
    58                 }
    59                 fcntl(fd, F_SETFL, 0);
    60 #endif*/
    61 
    6252char proxyhost[128] = "";
    6353int proxyport = 0;
  • protocols/yahoo/yahoo.c

    rfe51bcf r7b23afd  
    6464};
    6565
    66 static char *yahoo_name()
    67 {
    68         return "Yahoo";
    69 }
    70 
    71 static struct prpl *my_protocol = NULL;
    7266static GSList *byahoo_inputs = NULL;
    7367static int byahoo_chat_id = 0;
     
    396390}
    397391
    398 void byahoo_init( struct prpl *ret )
    399 {
    400         ret->protocol = PROTO_YAHOO;
    401         ret->name = yahoo_name;
     392void byahoo_init( )
     393{
     394        struct prpl *ret = g_new0(struct prpl, 1);
     395        ret->name = "yahoo";
    402396       
    403397        ret->login = byahoo_login;
    404398        ret->close = byahoo_close;
    405399        ret->send_im = byahoo_send_im;
    406         ret->send_typing = byahoo_send_typing;
    407400        ret->get_info = byahoo_get_info;
    408401        ret->away_states = byahoo_away_states;
     
    412405        ret->remove_buddy = byahoo_remove_buddy;
    413406        ret->get_status_string = byahoo_get_status_string;
     407        ret->send_typing = byahoo_send_typing;
    414408       
    415409        ret->chat_send = byahoo_chat_send;
     
    418412        ret->chat_open = byahoo_chat_open;
    419413       
    420         my_protocol = ret;
     414        register_protocol(ret);
    421415}
    422416
     
    432426                yd = gc->proto_data;
    433427               
    434                 if( gc->protocol == PROTO_YAHOO && yd->y2_id == id )
     428                if( !strcmp(gc->prpl->name, "yahoo") && yd->y2_id == id )
    435429                        return( gc );
    436430        }
Note: See TracChangeset for help on using the changeset viewer.