Changeset 8358691


Ignore:
Timestamp:
2010-08-31T20:05:36Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
f5c0d8e
Parents:
ad2d8bc
Message:

Added root_command_add() and use it to create the "otr" command.

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • bitlbee.h

    rad2d8bc r8358691  
    165165void root_command_string( irc_t *irc, char *command );
    166166void root_command( irc_t *irc, char *command[] );
     167gboolean root_command_add( const char *command, int params, void (*func)(irc_t *, char **args), int flags );
    167168gboolean cmd_identify_finish( gpointer data, gint fd, b_input_condition cond );
    168169gboolean bitlbee_shutdown( gpointer data, gint fd, b_input_condition cond );
  • commands.h

    rad2d8bc r8358691  
    3737} command_t;
    3838
    39 extern const command_t commands[];
     39extern command_t root_commands[];
    4040
    4141#define IRC_CMD_PRE_LOGIN       1
  • irc_commands.c

    rad2d8bc r8358691  
    626626        irc_send_msg_raw( irc->root, "NOTICE", irc->user->nick, "COMPLETIONS OK" );
    627627       
    628         for( i = 0; commands[i].command; i ++ )
    629                 irc_send_msg_f( irc->root, "NOTICE", irc->user->nick, "COMPLETIONS %s", commands[i].command );
     628        for( i = 0; root_commands[i].command; i ++ )
     629                irc_send_msg_f( irc->root, "NOTICE", irc->user->nick, "COMPLETIONS %s", root_commands[i].command );
    630630       
    631631        for( h = global.help; h; h = h->next )
  • otr.c

    rad2d8bc r8358691  
    8484/** otr sub-command handlers: **/
    8585
     86static void cmd_otr(irc_t *irc, char **args);
    8687void cmd_otr_connect(irc_t *irc, char **args);
    8788void cmd_otr_disconnect(irc_t *irc, char **args);
     
    199200        global.otr_ops.account_name = &op_account_name;
    200201        global.otr_ops.account_name_free = NULL;
     202       
     203        root_command_add( "otr", 1, cmd_otr, 0 );
    201204}
    202205
     
    418421}
    419422
    420 void cmd_otr(irc_t *irc, char **args)
     423static void cmd_otr(irc_t *irc, char **args)
    421424{
    422425        const command_t *cmd;
  • otr.h

    rad2d8bc r8358691  
    3939struct im_connection;
    4040struct account;
    41 
    42 // 'otr' root command, hooked up in root_commands.c
    43 void cmd_otr(struct irc *, char **args);
    4441
    4542
  • root_commands.c

    rad2d8bc r8358691  
    2929#include "help.h"
    3030#include "ipc.h"
    31 #include "otr.h"
    3231
    3332void root_command_string( irc_t *irc, char *command )
     
    5655       
    5756        len = strlen( cmd[0] );
    58         for( i = 0; commands[i].command; i++ )
    59                 if( g_strncasecmp( commands[i].command, cmd[0], len ) == 0 )
    60                 {
    61                         if( commands[i+1].command &&
    62                             g_strncasecmp( commands[i+1].command, cmd[0], len ) == 0 )
     57        for( i = 0; root_commands[i].command; i++ )
     58                if( g_strncasecmp( root_commands[i].command, cmd[0], len ) == 0 )
     59                {
     60                        if( root_commands[i+1].command &&
     61                            g_strncasecmp( root_commands[i+1].command, cmd[0], len ) == 0 )
    6362                                /* Only match on the first letters if the match is unique. */
    6463                                break;
    6564                       
    66                         MIN_ARGS( commands[i].required_parameters );
     65                        MIN_ARGS( root_commands[i].required_parameters );
    6766                       
    68                         commands[i].execute( irc, cmd );
     67                        root_commands[i].execute( irc, cmd );
    6968                        return;
    7069                }
     
    13251324
    13261325/* IMPORTANT: Keep this list sorted! The short command logic needs that. */
    1327 const command_t commands[] = {
     1326command_t root_commands[] = {
    13281327        { "account",        1, cmd_account,        0 },
    13291328        { "add",            2, cmd_add,            0 },
     
    13401339        { "info",           1, cmd_info,           0 },
    13411340        { "no",             0, cmd_yesno,          0 },
    1342         { "otr",            1, cmd_otr,            0 },
    13431341        { "qlist",          0, cmd_qlist,          0 },
    13441342        { "register",       1, cmd_register,       0 },
     
    13491347        { "transfer",       0, cmd_transfer,       0 },
    13501348        { "yes",            0, cmd_yesno,          0 },
    1351         { NULL }
     1349        /* Not expecting too many plugins adding root commands so just make a
     1350           dumb array with some empty entried at the end. */
     1351        { NULL },
     1352        { NULL },
     1353        { NULL },
     1354        { NULL },
     1355        { NULL },
     1356        { NULL },
     1357        { NULL },
     1358        { NULL },
     1359        { NULL },
    13521360};
     1361static const int num_root_commands = sizeof( root_commands ) / sizeof( command_t );
     1362
     1363gboolean root_command_add( const char *command, int params, void (*func)(irc_t *, char **args), int flags )
     1364{
     1365        int i;
     1366       
     1367        if( root_commands[num_root_commands-2].command )
     1368                /* Planning fail! List is full. */
     1369                return FALSE;
     1370       
     1371        for( i = 0; root_commands[i].command; i++ )
     1372        {
     1373                if( g_strcasecmp( root_commands[i].command, command ) == 0 )
     1374                        return FALSE;
     1375                else if( g_strcasecmp( root_commands[i].command, command ) > 0 )
     1376                        break;
     1377        }
     1378        memmove( root_commands + i + 1, root_commands + i,
     1379                 sizeof( command_t ) * ( num_root_commands - i - 1 ) );
     1380       
     1381        root_commands[i].command = g_strdup( command );
     1382        root_commands[i].required_parameters = params;
     1383        root_commands[i].execute = func;
     1384        root_commands[i].flags = flags;
     1385       
     1386        return TRUE;
     1387}
Note: See TracChangeset for help on using the changeset viewer.