Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
272 views
in Technique[技术] by (71.8m points)

node.js - NodeJS/C++ addons - Passing an array from node to C++

I'd like to pass an array from javascript to C++, however I don't know how to convert the v8 array to a C++ array. Any help is appreciated. Thanks.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The simplest way is to convert it to JSON which is a platform and language-agnostic string format and pass that to your C++ where it can then parse the JSON string into its own data format.

If your C++ code is running it its now process, you will then have to find a way to deliver the string to the other process. If the C++ code is in a child process, you can send it over stdio. If not, then you will need some other interprocess communication mechanism for sending the string to app running the C++ code.

There is a mechanism for creating a nodejs add-on in C++ where you can exchange data between the two and the C++ code runs in the nodejs process, but it is not for the faint of heart as its fairly involved and difficult to learn. The doc for addons is here. It will, in general, be a lot, lot simpler to send a JSON string between two processes.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...