src/nexus.c
author Tero Marttila <terom@fixme.fi>
Sat, 28 Feb 2009 22:47:39 +0200
changeset 18 dedf137b504f
parent 17 5001564ac5fc
child 21 0911d0b828d4
permissions -rw-r--r--
add initial irc_conn code that can register

#include <stdlib.h>
#include <stdbool.h>
#include <err.h>
#include <stdio.h>
#include <getopt.h>

#include <event2/event.h>

#include "sock.h"
#include "irc_conn.h"

#define DEFAULT_HOST "irc.fixme.fi"
#define DEFAULT_PORT "6667"
#define DEFAULT_PORT_SSL "6697"

static struct option options[] = {
    {"help",            0,  NULL,   'h' },
    {"hostname",        1,  NULL,   'H' },
    {"port",            1,  NULL,   'P' },
    {"ssl",             0,  NULL,   'S' },
    {0,                 0,  0,      0   },
};

void usage (const char *exe) 
{
    printf("Usage: %s [OPTIONS]\n", exe);
    printf("\n");
    printf(" --help / -h            display this message\n");
    printf(" --hostname / -H HOST   set hostname to connect to\n");
    printf(" --port / -P PORT       set service port to connect to\n");
    printf(" --ssl / -S             use SSL\n");
}

int main (int argc, char **argv) 
{
    int opt, option_index;
    struct event_base *ev_base;
    struct sock_stream *sock;
    struct irc_conn *conn;
    struct error_info _err;

    const char *hostname = DEFAULT_HOST, *portname = DEFAULT_PORT;
    bool ssl = 0;
    struct irc_conn_config conn_config = {
        .nickname       = "SpBotDev",
        .username       = "spbot-dev",
        .realname       = "SpBot (development version)",
    };

    bool port_default = true;
    
    // parse options
    while ((opt = getopt_long(argc, argv, "hH:P:S", options, &option_index)) != -1) {
        switch (opt) {
            case 'h':
                usage(argv[0]);
                return EXIT_SUCCESS;

            case 'H':
                hostname = optarg;
                break;
            
            case 'P':
                portname = optarg;
                port_default = false;
                break;

            case 'S':
                ssl = true;

                if (port_default)
                    portname = DEFAULT_PORT_SSL;

                break;

            case '?':
                usage(argv[0]);
                return EXIT_FAILURE;
        }
    }

    // initialize libevent
    if ((ev_base = event_base_new()) == NULL)
        err(1, "event_base_new");

    // initialize sock module
    if (sock_init(ev_base, &_err))
        errx(1, "sock_init: %s", error_msg(&_err));

    // over-simplified connect
    if (ssl) {
        if (sock_ssl_connect(&sock, hostname, portname, &_err))
            errx(1, "sock_ssl_connect: %s", error_msg(&_err));

    } else {
        if (sock_tcp_connect(&sock, hostname, portname, &_err))
            errx(1, "sock_tcp_connect: %s", error_msg(&_err));

    }

    // create the irc connection state
    if (irc_conn_create(&conn, sock, &conn_config, &_err))
        errx(1, "irc_conn_create: %s", error_msg(&_err));

    // run event loop
    if (event_base_dispatch(ev_base))
        errx(1, "event_base_dispatch");
    
    // ok, no cleanup
    return 0;
}