linux 支持多线程应用程序回调的共享库

linux shared library to support multi threaded application callbacks

我需要创建一个公开了一组 API 的共享库,这些 API 将被多个进程使用,这些进程可能有多个调用 API 的线程。

此共享库又使用另一个第 3 方共享库,我需要向其注册回调。第 3 方库从不同的线程调用已注册的回调。

我想知道如何在调用我的库中定义的 API 时阻止线程,并在我从第 3 方库获得回调时释放它。此锁定不应阻止其他线程调用相同的 API...!

我正在使用 pthread 库来创建我的库。

伪代码:

我的图书馆:

int lib_init()
{
    register_callback(callback);
}

int lib_deinit()
{
    unregister_callback();
}

int callback(void *)
{
    <unblock the functions>
}

int function1(int, int)
{
    perform_action();
    <should block till I get a callback from 3rd party library>
}

int function2(char, char)
{
    perform_action();
    <should block till I get a callback from 3rd party library>
}

第 3 方库:

int register_callback(callback)
{
    ....
    launch_thread();
    ....
}

int unregister_callback()
{
    ....
    terminate_thread();
    ....
}

int perform_action()
{
    /* queue action */
}

void* thread(void*arg)
{
    /* perform the action & invoke callback */
    invoke_callback();
}

申请:

main()
{
    init_lib();
    ....
    create_new_thread();
    ....
    function1(10, 20);
    ....
    function2('c', 'd');
}

another_thread()
{
    function2('a', 'b');
    ....
}

我无法解决的确切问题是我需要设置什么(如何)锁定机制来阻止对我的库中定义的函数的调用并等待来自第 3 方库的回调,前提是我的库应该用于多进程和多线程环境。

根据可用性和标准,您的最佳选择可能是使用 Boost:

Boost.threads用于多线程,Boost::interprocess用于进程间通信;看看 IPC synchronization mechanisms.

对于多线程应用程序,通常有某种消息队列(上面 link 的底部)以线程安全的方式从任何线程获取消息,而另一个线程在无限循环从该队列中获取消息。这些消息通常包括一些命令、一些有效负载和一个指向执行线程应将其结果放置在何处的指针。这也可能是另一种 boost::interprocess 通信结构。

如果你会使用C++11,你可能会对std::condition_variable & 朋友感兴趣。您应该在您的函数 API 中创建一个条件变量,将其传递给您的回调,将您的回调注册到第 3 方库,并让您的 API 函数等待它。然后,您可以在回调结束时取消阻止它。

伪代码:

void your_API_f()
{
    define std::condition_variable;
    pack it with your callback parameters
    register the callback to 3rd party lib
    invoke 3rd party func
    wait on your condition variable
}

void your_callback(Parameters* p)
{
    do whatever...
    notify p->your_cond_variable you have finished
}

使用普通 pthreads 接口,您将使用条件变量:

int lib_init()
{
    pthread_cond_init(&cond, NULL);
    pthread_mutex_init(&mutex, NULL);
    register_callback(callback);
}

int lib_deinit()
{
    unregister_callback();
    pthread_mutex_destroy(&mutex);
    pthread_cond_destroy(&cond);
}

int callback(void *p)
{
    pthread_mutex_lock(&mutex);
    result[??] = p;
    pthread_cond_broadcast(&cond);
    pthread_mutex_unlock(&mutex);
}

int function1(int, int)
{
    result[??] = NULL;
    perform_action();

    pthread_mutex_lock(&mutex);
    while (result[??] == NULL)
        pthread_cond_wait(&cond, &mutex);
    pthread_mutex_unlock(&mutex);
}

int function2(char, char)
{
    result[??] = NULL;
    perform_action();


    pthread_mutex_lock(&mutex);
    while (result[??] == NULL)
        pthread_cond_wait(&cond, &mutex);
    pthread_mutex_unlock(&mutex);
}

pthread_cond_wait() 在等待时解锁互斥锁。

result[??] 是您必须想出的某些方法的替代方法,link 对特定 function1()function2() 与它相关的调用。