Calling Python API functions in multi-threaded C + +

Source: Internet
Author: User

Error Scenario:

  

Workaround:

First, the definition of a package class, mainly to ensure pygilstate_ensure, pygilstate_release pairing use, and this class can be nested use.

#include <python.h>

Class Pythreadstatelock
{
Public
Pythreadstatelock (void)
{
State = Pygilstate_ensure ();
}

~pythreadstatelock (void)
{
Pygilstate_release (state);
}
Private
Pygilstate_state State;
};


Second, in the main thread, this processing

Initialization
Py_initialize ();
Initializing thread support
Pyeval_initthreads ();
Before the child thread is started, the child thread may not be able to obtain a global lock in order to release the global lock acquired by Pyeval_initthreads.
Pyeval_releasethread (Pythreadstate_get ());

Other processing, such as starting a child thread, etc.
......

After the child thread call is guaranteed to end
Pygilstate_ensure ();
Py_finalize ();
No more Python APIs can be invoked after that

Third, in the main thread, or sub-thread, the call Python itself functions are treated as follows

{
Class Pythreadstatelock Pythreadlock; //Get global lock
Call Python's API function to handle
......
}
Scoped end,Pythreadlock destructor, releasing global lock

Calling Python API functions in multi-threaded C + +

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.