c++ - C++ 中的 NAPI native 模块正在部分执行(包括 std::thread)

标签 c++ node.js node-modules node-addon-api cmake-js

我用 NAPI 编写的 Node-js native 模块正在部分执行。
我在其中使用了多个线程。
在运行模块时,有时会打印线程已启动,但有时不会。< br/>无论哪种方式,模块永远不会到达 C++ 代码的末尾。
我已经将我的 C++ 代码作为一个独立的应用程序进行了尝试,并且工作正常,没有任何警告或错误。
我在“CMakeList.txt”中打开了异常处理
C++ 17 支持开启,因为我使用的是 std::filesystem,它工作正常。
我在“CMakeList”中使用 find_package(Threads REQUIRED)。

file CMakeList.txt=>

cmake_minimum_required(VERSION 3.15)
# Name of the project (will be the name of the plugin)
project (addon)

set(CMAKE_CXX_STANDARD 17)
# Don't add this line if you will try_compile with boost.
set(CMAKE_CXX_STANDARD_REQUIRED ON)
option(USE_CXX_EXCEPTIONS "Enable C++ exception support" ON)
set(THREADS_PREFER_PTHREAD_FLAG ON)

find_package(Threads REQUIRED)
# Essential include files to build a node addon,
# you should add this line in every CMake.js based project.
include_directories(${CMAKE_JS_INC})

# Declare the location of the source files
file(GLOB SOURCE_FILES "cppsrc/*.cpp" "cppsrc/*.h")

# This line will tell CMake that we're building a shared library
# from the above source files
# named after the project's name
add_library(${PROJECT_NAME} SHARED ${SOURCE_FILES} ${CMAKE_JS_SRC})

# This line will give our library file a .node extension without any "lib" prefix
set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "" SUFFIX ".node")

# Essential library files to link to a node addon,
# you should add this line in every CMake.js based project.
target_link_libraries(${PROJECT_NAME} ${CMAKE_JS_LIB} ${CMAKE_THREAD_LIBS_INIT})


# Include N-API wrappers
execute_process(COMMAND node -p "require('node-addon-api').include"
    WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
    OUTPUT_VARIABLE NODE_ADDON_API_DIR
    )
string(REPLACE "\n" "" NODE_ADDON_API_DIR ${NODE_ADDON_API_DIR})
string(REPLACE "\"" "" NODE_ADDON_API_DIR ${NODE_ADDON_API_DIR})
target_include_directories(${PROJECT_NAME} PRIVATE ${NODE_ADDON_API_DIR})

file package.json=>

{
"name": "test-addon",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"scripts": {
"install": "cmake-js compile"
},
"cmake-js": {
  "runtime": "electron",
"runtimeVersion": "5.0.5",
"arch": "x64"
},
"devDependencies": {},
"dependencies": {
  "cmake-js": "^5.3.0",
  "node-addon-api": "^1.6.3"
}
}

the c++ code which is executing partially =>

while (file != filePaths.end()) {
start = timeStamp();
cout << "\n" << "File: " << *file << " \n";

//process Data
pres.readRawDataList(*file);
for (int i = 0; i < hwGuess; i++) {
    begint = (i * pres.rawDataList.size()) / hwGuess;
    endt = (i + (size_t)1) * pres.rawDataList.size() / hwGuess;
    CthreadObj[i].rawData.reserve(pres.rawDataList.size() / hwGuess);
    CthreadObj[i].rawData.insert(CthreadObj[i].Pcomparison::rawData.begin(), pres.rawDataList.begin() + begint, pres.rawDataList.begin() + endt);
threads.push_back(thread([&]() { ExpSub(CthreadObj[i], PthreadObj[i]); }));
}

for (int j = 0; j < hwGuess; j++) {
  cout<<"join total 4 threads\n";
  threads.at(j).join();
}
cout<<hwGuess<<" \n";

cout<<"thread Ends \n";
pfile.writeFile(pres.results, "cppsrc/Output/0.txt");
pres.rawDataList.clear(); pres.rawDataList.shrink_to_fit();
pres.results.clear(); pres.results.shrink_to_fit();
//Processed
cout<<"While ends \n";
file++;

funtion ExpSub=>

ExpSub(Pcomparison& ThreadObjC, Ppattern& ThreadObjP) {

vector<string>::iterator rawIt;

ThreadObjC.lowerCaseRawData();
cout<<"Inside Thread\n";
ThreadObjC.extractEmailAndPassword(":");
ThreadObjC.extractEmailNamesAndWebsites();

hwGuess value is 4

结果应该像上面的代码一样打印消息“While ends” 这应该每次都不会随机发生(检查随机执行“线内线程”的图像)。 [在此处输入图片描述][1]

/image/55TGy.png

最佳答案

C++ 中的 Lambda 函数在 node.js N-API 中无法完美运行。所以最好在你的 C++ 代码中忽略 lambdas。 或者你可以做这样的事情

threads.push_back(thread(&class_namespace::ExpSub, ref(CthreadObj[i]), ref(PthreadObj[i])));

并注意您需要使用 ref() 来传递引用的参数。

关于c++ - C++ 中的 NAPI native 模块正在部分执行(包括 std::thread),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57131724/

相关文章:

c++ - 如何有效地选择符合特定条件的 QTableView 行的子集?

node.js - 我在使用 npm i 和 node_modules 时遇到错误

C++ 初学者 - 从命令行读取 3 个连续值的最佳方法?

c++ - 大型阵列的幂集

node.js - 将更新部署到生产 node.js 代码

javascript - 有哪些选项可用于定义具有 node.js 依赖项的 Python 包?

javascript - TCP NODE JS 多线程问题

javascript - 使用 Joi,如何将 .or 用于递归对象

node.js - 错误 "Your cache folder contains root-owned files, due to a bug in npm ERR! previous versions of npm which has since been addressed"

c++ - 单链表 C++