6

TCP接続の処理に複数のスレッドでlibevを使用したいと思います。私がしたいのは:

  1. メインスレッドは着信接続をリッスンし、接続を受け入れて、接続をワーカースレッドに転送します。

  2. ワーカースレッドのプールがあります。スレッドの数は、CPUの数によって異なります。各ワーカースレッドにはイベントループがあります。ワーカースレッドは、tcpソケットに書き込むことができるかどうか、または何かを読み取ることができるかどうかをリッスンします。

libevのドキュメントを調べたところ、これはlibevで実行できることがわかりましたが、どのように実行する必要があるかについての例は見つかりません。
誰かが例を持っていますか?ev_loop_new()apiを使用する必要があると思います。ワーカースレッドとメインスレッドにはev_default_loop()を使用する必要がありますか?

よろしく

4

2 に答える 2

8

次のコードは、複数のスレッドに拡張できます

//This program is demo for using pthreads with libev.
//Try using Timeout values as large as 1.0 and as small as 0.000001
//and notice the difference in the output

//(c) 2009 debuguo
//(c) 2013 enthusiasticgeek for stack overflow
//Free to distribute and improve the code. Leave credits intact

#include <ev.h>
#include <stdio.h> // for puts
#include <stdlib.h>
#include <pthread.h>

pthread_mutex_t lock;
double timeout = 0.00001;
ev_timer timeout_watcher;
int timeout_count = 0;

ev_async async_watcher;
int async_count = 0;

struct ev_loop* loop2;

void* loop2thread(void* args)
{
    printf("Inside loop 2"); // Here one could initiate another timeout watcher
    ev_loop(loop2, 0);       // similar to the main loop - call it say timeout_cb1
    return NULL;
}

static void async_cb (EV_P_ ev_async *w, int revents)
{
    //puts ("async ready");
    pthread_mutex_lock(&lock);     //Don't forget locking
    ++async_count;
    printf("async = %d, timeout = %d \n", async_count, timeout_count);
    pthread_mutex_unlock(&lock);   //Don't forget unlocking
}

static void timeout_cb (EV_P_ ev_timer *w, int revents) // Timer callback function
{
    //puts ("timeout");
    if (ev_async_pending(&async_watcher)==false) { //the event has not yet been processed (or even noted) by the event loop? (i.e. Is it serviced? If yes then proceed to)
        ev_async_send(loop2, &async_watcher); //Sends/signals/activates the given ev_async watcher, that is, feeds an EV_ASYNC event on the watcher into the event loop.
    }

    pthread_mutex_lock(&lock);     //Don't forget locking
    ++timeout_count;
    pthread_mutex_unlock(&lock);   //Don't forget unlocking
    w->repeat = timeout;
    ev_timer_again(loop, &timeout_watcher); //Start the timer again.
}

int main (int argc, char** argv)
{
    if (argc < 2) {
        puts("Timeout value missing.\n./demo <timeout>");
        return -1;
    }
    timeout = atof(argv[1]);

    struct ev_loop *loop = EV_DEFAULT;  //or ev_default_loop (0);

    //Initialize pthread
    pthread_mutex_init(&lock, NULL);
    pthread_t thread;

    // This loop sits in the pthread
    loop2 = ev_loop_new(0);

    //This block is specifically used pre-empting thread (i.e. temporary interruption and suspension of a task, without asking for its cooperation, with the intention to resume that task later.)
    //This takes into account thread safety
    ev_async_init(&async_watcher, async_cb);
    ev_async_start(loop2, &async_watcher);
    pthread_create(&thread, NULL, loop2thread, NULL);

    ev_timer_init (&timeout_watcher, timeout_cb, timeout, 0.); // Non repeating timer. The timer starts repeating in the timeout callback function
    ev_timer_start (loop, &timeout_watcher);

    // now wait for events to arrive
    ev_loop(loop, 0);
    //Wait on threads for execution
    pthread_join(thread, NULL);

    pthread_mutex_destroy(&lock);
    return 0;
}
于 2013-02-08T19:27:09.847 に答える
3

libev を異なるスレッド内で同時に使用しても、それぞれが独自のループを実行する限り問題ありません[1]。libev (ev++.h) の c++ ラッパーは、使用するループを指定する代わりに、常に既定のループを使用します。代わりに C ヘッダー (ev.h) を使用する必要があります。これにより、使用するループを指定できます (たとえば、ev_io_start は ev_loop へのポインターを受け取りますが、ev::io::start は受け取りません)。

ev_async を使用して、別のスレッドの ev_loop に安全にシグナルを送ることができます。

[1] http://doc.dvgu.ru/devel/ev.html#threads_and_coroutines

于 2013-01-31T09:00:42.807 に答える