Changeset a0d04d6


Ignore:
Timestamp:
2006-05-07T18:07:43Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
ecf8fa8
Parents:
64d1f45
Message:

Got rid of all GLib GIOChannel-related calls outside proxy.c

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • bitlbee.c

    r64d1f45 ra0d04d6  
    3434#include <errno.h>
    3535
    36 gboolean bitlbee_io_new_client( GIOChannel *source, GIOCondition condition, gpointer data );
     36void bitlbee_io_new_client( gpointer data, gint source, GaimInputCondition condition );
    3737
    3838int bitlbee_daemon_init()
     
    4444#endif
    4545        int i;
    46         GIOChannel *ch;
    4746        FILE *fp;
    4847       
     
    9190        }
    9291       
    93         ch = g_io_channel_unix_new( global.listen_socket );
    94         global.listen_watch_source_id = g_io_add_watch( ch, G_IO_IN, bitlbee_io_new_client, NULL );
     92        global.listen_watch_source_id = gaim_input_add( global.listen_socket, GAIM_INPUT_READ, bitlbee_io_new_client, NULL );
    9593       
    9694#ifndef _WIN32
     
    147145}
    148146
    149 gboolean bitlbee_io_current_client_read( GIOChannel *source, GIOCondition condition, gpointer data )
     147void bitlbee_io_current_client_read( gpointer data, gint source, GaimInputCondition cond )
    150148{
    151149        irc_t *irc = data;
     
    153151        int st;
    154152       
    155         if( condition & G_IO_ERR || condition & G_IO_HUP )
    156         {
    157                 irc_abort( irc, 1, "Read error" );
    158                 return FALSE;
    159         }
    160        
    161153        st = read( irc->fd, line, sizeof( line ) - 1 );
    162154        if( st == 0 )
    163155        {
    164156                irc_abort( irc, 1, "Connection reset by peer" );
    165                 return FALSE;
     157                goto no_more_events;
    166158        }
    167159        else if( st < 0 )
     
    169161                if( sockerr_again() )
    170162                {
    171                         return TRUE;
     163                        return;
    172164                }
    173165                else
    174166                {
    175167                        irc_abort( irc, 1, "Read error: %s", strerror( errno ) );
    176                         return FALSE;
     168                        goto no_more_events;
    177169                }
    178170        }
     
    195187        {
    196188                log_message( LOGLVL_WARNING, "Abnormal termination of connection with fd %d.", irc->fd );
    197                 return FALSE;
     189                goto no_more_events;
    198190        }
    199191       
     
    202194        {
    203195                irc_abort( irc, 0, "Maximum line length exceeded" );
    204                 return FALSE;
    205         }
    206        
    207         return TRUE;
    208 }
    209 
    210 gboolean bitlbee_io_current_client_write( GIOChannel *source, GIOCondition condition, gpointer data )
     196                goto no_more_events;
     197        }
     198       
     199        return;
     200       
     201no_more_events:
     202        gaim_input_remove( irc->r_watch_source_id );
     203        irc->r_watch_source_id = 0;
     204}
     205
     206void bitlbee_io_current_client_write( gpointer data, gint source, GaimInputCondition cond )
    211207{
    212208        irc_t *irc = data;
     
    215211
    216212        if( irc->sendbuffer == NULL )
    217                 return( FALSE );
     213                goto no_more_events;
    218214       
    219215        size = strlen( irc->sendbuffer );
     
    223219        {
    224220                irc_abort( irc, 1, "Write error: %s", strerror( errno ) );
    225                 return FALSE;
     221                goto no_more_events;
    226222        }
    227223        else if( st < 0 ) /* && sockerr_again() */
    228224        {
    229                 return TRUE;
     225                return;
    230226        }
    231227       
     
    234230                g_free( irc->sendbuffer );
    235231                irc->sendbuffer = NULL;
    236                 irc->w_watch_source_id = 0;
    237232               
    238233                if( irc->status == USTATUS_SHUTDOWN )
    239234                        irc_free( irc );
    240235               
    241                 return( FALSE );
     236                goto no_more_events;
    242237        }
    243238        else
     
    247242                irc->sendbuffer = temp;
    248243               
    249                 return( TRUE );
    250         }
    251 }
    252 
    253 gboolean bitlbee_io_new_client( GIOChannel *source, GIOCondition condition, gpointer data )
    254 {
    255         size_t size = sizeof( struct sockaddr_in );
     244                return;
     245        }
     246       
     247no_more_events:
     248        gaim_input_remove( irc->w_watch_source_id );
     249        irc->w_watch_source_id = 0;
     250}
     251
     252void bitlbee_io_new_client( gpointer data, gint source, GaimInputCondition condition )
     253{
     254        socklen_t size = sizeof( struct sockaddr_in );
    256255        struct sockaddr_in conn_info;
    257256        int new_socket = accept( global.listen_socket, (struct sockaddr *) &conn_info, &size );
     
    261260        {
    262261                log_message( LOGLVL_WARNING, "Could not accept new connection: %s", strerror( errno ) );
    263                 return TRUE;
     262                return;
    264263        }
    265264       
     
    320319                irc_new( new_socket );
    321320        }
    322        
    323         return TRUE;
    324321}
    325322
  • bitlbee.h

    r64d1f45 ra0d04d6  
    112112#include "sock.h"
    113113#include "util.h"
     114#include "proxy.h"
    114115
    115116typedef struct global {
     
    128129int bitlbee_inetd_init( void );
    129130
    130 gboolean bitlbee_io_current_client_read( GIOChannel *source, GIOCondition condition, gpointer data );
    131 gboolean bitlbee_io_current_client_write( GIOChannel *source, GIOCondition condition, gpointer data );
     131void bitlbee_io_current_client_read( gpointer data, gint source, GaimInputCondition cond );
     132void bitlbee_io_current_client_write( gpointer data, gint source, GaimInputCondition cond );
    132133
    133134void root_command_string( irc_t *irc, user_t *u, char *command, int flags );
  • ipc.c

    r64d1f45 ra0d04d6  
    463463
    464464
    465 static gboolean new_ipc_client (GIOChannel *gio, GIOCondition cond, gpointer data)
     465static void new_ipc_client( gpointer data, gint serversock, GaimInputCondition cond )
    466466{
    467467        struct bitlbee_child *child = g_new0( struct bitlbee_child, 1 );
    468         int serversock;
    469 
    470         serversock = g_io_channel_unix_get_fd(gio);
    471 
    472         child->ipc_fd = accept(serversock, NULL, 0);
    473 
    474         if (child->ipc_fd == -1) {
     468       
     469        child->ipc_fd = accept( serversock, NULL, 0 );
     470       
     471        if( child->ipc_fd == -1 )
     472        {
    475473                log_message( LOGLVL_WARNING, "Unable to accept connection on UNIX domain socket: %s", strerror(errno) );
    476                 return TRUE;
     474                return;
    477475        }
    478476               
    479477        child->ipc_inpa = gaim_input_add( child->ipc_fd, GAIM_INPUT_READ, ipc_master_read, child );
    480                
     478       
    481479        child_list = g_slist_append( child_list, child );
    482 
    483         return TRUE;
    484480}
    485481
     
    489485        struct sockaddr_un un_addr;
    490486        int serversock;
    491         GIOChannel *gio;
    492487
    493488        /* Clean up old socket files that were hanging around.. */
     
    517512        }
    518513       
    519         gio = g_io_channel_unix_new(serversock);
    520        
    521         if (gio == NULL) {
    522                 log_message( LOGLVL_WARNING, "Unable to create IO channel for unix socket" );
    523                 return 0;
    524         }
    525 
    526         g_io_add_watch(gio, G_IO_IN, new_ipc_client, NULL);
     514        gaim_input_add( serversock, GAIM_INPUT_READ, new_ipc_client, NULL );
     515       
    527516        return 1;
    528517}
  • irc.c

    r64d1f45 ra0d04d6  
    5454       
    5555        irc->fd = fd;
    56         irc->io_channel = g_io_channel_unix_new( fd );
    57 #ifdef GLIB2
    58         g_io_channel_set_encoding (irc->io_channel, NULL, NULL);
    59         g_io_channel_set_buffered (irc->io_channel, FALSE);
    60         g_io_channel_set_flags( irc->io_channel, G_IO_FLAG_NONBLOCK, NULL );
    61 #else
    62         fcntl( irc->fd, F_SETFL, O_NONBLOCK);
    63 #endif
    64         irc->r_watch_source_id = g_io_add_watch( irc->io_channel, G_IO_IN | G_IO_ERR | G_IO_HUP, bitlbee_io_current_client_read, irc );
     56        sock_make_nonblocking( irc->fd );
     57       
     58        irc->r_watch_source_id = gaim_input_add( irc->fd, GAIM_INPUT_READ, bitlbee_io_current_client_read, irc );
    6559       
    6660        irc->status = USTATUS_OFFLINE;
     
    229223                g_source_remove( irc->w_watch_source_id );
    230224       
    231         g_io_channel_unref( irc->io_channel );
    232225        irc_connection_list = g_slist_remove( irc_connection_list, irc );
    233226       
     
    600593        strcat( line, "\r\n" );
    601594       
    602         if( irc->sendbuffer != NULL ) {
     595        if( irc->sendbuffer != NULL )
     596        {
    603597                size = strlen( irc->sendbuffer ) + strlen( line );
    604598                irc->sendbuffer = g_renew ( char, irc->sendbuffer, size + 1 );
    605599                strcpy( ( irc->sendbuffer + strlen( irc->sendbuffer ) ), line );
    606600        }
    607         else
    608                 irc->sendbuffer = g_strdup(line);       
     601        else
     602        {
     603                irc->sendbuffer = g_strdup(line);
     604        }
    609605       
    610606        if( irc->w_watch_source_id == 0 )
    611         {
    612                 irc->w_watch_source_id = g_io_add_watch( irc->io_channel, G_IO_OUT, bitlbee_io_current_client_write, irc );
    613         }
     607                irc->w_watch_source_id = gaim_input_add( irc->fd, GAIM_INPUT_WRITE, bitlbee_io_current_client_write, irc );
    614608       
    615609        return;
     
    636630                if( now )
    637631                {
    638                         bitlbee_io_current_client_write( irc->io_channel, G_IO_OUT, irc );
     632                        bitlbee_io_current_client_write( irc, irc->fd, GAIM_INPUT_WRITE );
    639633                }
    640634                temp = temp->next;
  • irc.h

    r64d1f45 ra0d04d6  
    9393        struct set *set;
    9494
    95         GIOChannel *io_channel;
    9695        gint r_watch_source_id;
    9796        gint w_watch_source_id;
Note: See TracChangeset for help on using the changeset viewer.