search
HomeWeb Front-endJS TutorialUse C/C to implement Node.js modules (1)_node.js

A pitfall that occurred a long time ago - using Node.js to reconstruct NBUT's Online Judge, including the evaluation side, also had to be reconstructed. (As for when it will be completed, don’t worry about it, (/‵Д′)/~ ╧╧

In short, what we have to do now is actually to use C/C to implement the Node.js module.

Preparation

If a worker wants to do his job well, he must first~~play a rogue~~ and sharpen his tools.

node-gyp

First you need a node-gyp module.

At any corner, execute:

Copy code The code is as follows:

$ npm install node-gyp -g

After a series of blahblahs, you are installed.

Python

 Then you need a python environment.

Go to the official website to get one yourself.


Note: According to node-gyp's GitHub, please make sure your python version is between 2.5.0 and 3.0.0.

Compilation environment

Well, I’m just too lazy to write it down in detail. Please go to node-gyp to see the compiler requirements. And pour it well.

Getting Started

Let me just talk about the introductory Hello World on the official website.

Hello World

Please prepare a C file, for example, call it ~~sb.cc~~ hello.cc.

Then let’s go step by step, first create the header file and define the namespace:

Copy code The code is as follows:

#include
#include
using namespace v8;

Main function

Next we write a function whose return value is Handle.

Copy code The code is as follows:

Handle Hello(const Arguments& args)
{
//... Waiting to be written
}

Then let me briefly analyze these things:

Handle

You must have integrity as a human being. I would like to state in advance that I refer to it from here (@fool).


V8 uses the Handle type to host JavaScript objects. Similar to C's std::sharedpointer, assignments between Handle types directly pass object references, but the difference is that V8 uses its own GC to manage the object life cycle, rather than intelligent Commonly used reference counting for pointers.

JavaScript types have corresponding custom types in C, such as String, Integer, Object, Date, Array, etc., which strictly abide by the inheritance relationship in JavaScript. When using these types in C, you must use Handle management to use the GC to manage their life cycle instead of using the native stack and heap.

This so-called Value can be seen from the various inheritance relationships in the header file v8.h of the V8 engine. It is actually the base class of various objects in JavaScript.

After understanding this matter, we can roughly understand the meaning of the above function declaration, which is that we write a Hello function that returns an indefinite type value.


Note: We can only return specific types, namely String, Integer, etc. under the management of Handle.

Arguments

This is the parameter passed into this function. We all know that in Node.js, the number of parameters is random. When these parameters are passed into C, they are converted into objects of this Arguments type.

We will talk about the specific usage later. Here you just need to understand what this is. (Why are you so careful? Because the examples in the official Node.js documentation are discussed separately. I am just talking about the first Hello World example now (´థ౪థ)σ

Contribution

Then we started to add bricks and tiles. Just two simple sentences:

Copy code The code is as follows:

Handle Hello(const Arguments& args)
{
HandleScope scope;
Return scope.Close(String::New("world"));
}

What do these two sentences mean? The rough meaning is to return a string "world" in Node.js.

HandleScope

The same reference comes from here.


The life cycle of Handle is different from that of C smart pointers. It does not exist within the scope of C semantics (that is, the part surrounded by {}), but needs to be manually specified through HandleScope. HandleScope can only be allocated on the stack. After the HandleScope object is declared, the life cycle of the Handle created subsequently is managed by HandleScope. After the HandleScope object is destructed, the Handle managed by it will be judged by the GC whether to be recycled.

So, we have to declare this Scope when we need to manage its life cycle. Okay, so why doesn't our code look like this?

Copy code The code is as follows:

Handle Hello(const Arguments& args)
{
HandleScope scope;
Return String::New("world");
}

Because when the function returns, the scope will be destructed and the Handles it manages will also be recycled, so this String will become meaningless.

So V8 came up with a magical idea - the HandleScope::Close(Handle Value) function! The purpose of this function is to close this Scope and transfer the parameters inside to the previous Scope for management, that is, the Scope before entering this function.

So there is our previous code scope.Close(String::New("world"));.

String::New

 This String class corresponds to the native string class in Node.js. Inherited from Value class. Similar to this, there is also:

•Array
•Integer
•Boolean
•Object
•Date
•Number
•Function
•...

Some of these things are inherited from Value, and some are inherited twice. We won’t do much research here. You can look at the V8 code (at least the header files) or read this manual.

And what about this New? You can see it here. Just create a new String object.

At this point, we have completed the analysis of this main function.

Export object

Let’s review it. If we write it in Node.js, how do we export functions or objects?

Copy code The code is as follows:

exports.hello = function() {}

So, how do we do this in C?

Initialization function

First, we write an initialization function:

Copy code The code is as follows:

void init(Handle exports)
{
//...I am waiting to write about your sister! #゚Å゚)⊂彡☆))゚Д゚)・∵
}

This is a turtle butt! It doesn’t matter what the function name is, but the parameter passed in must be a Handle, which means we are going to export something on this product next.

Then, we write the exported stuff here:

Copy code The code is as follows:

void init(Handle exports)
{
exports->Set(String::NewSymbol("hello"),
FunctionTemplate::New(Hello)->GetFunction());
}

The general meaning is that, add a field called hello to this exports object, and the corresponding thing is a function, and this function is our dear Hello function.

To put it plainly in pseudo code:

Copy code The code is as follows:

void init(Handle exports)
{
exports.Set("hello", function hello);
}

Done!

 (It’s done, sister! Shut up (‘д‘⊂彡☆))Д´)

True·Export

This is the last step. We finally have to declare that this is the entrance to the export, so we add this line at the end of the code:
NODE_MODULE(hello, init)

Did you pay a nenny? ! What is this?

Don’t worry, this NODE_MODULE is a macro, which means that we use the init initialization function to export the things to be exported to hello. So where does this hello come from?

It comes from the file name! Yes, that's right, it comes from the file name. You don't need to declare it in advance, and you don't have to worry about not being able to use it. In short, whatever the name of your final compiled binary file is, fill in the hello here, except for the suffix of course.

See the official documentation for details.


Note that all Node addons must export an initialization function:

Copy code The code is as follows:

void Initialize (Handle exports);
NODE_MODULE(module_name, Initialize)

There is no semi-colon after NODE_MODULE as it's not a function (see node.h).

The module_name needs to match the filename of the final binary (minus the .node suffix).

Compile (๑•́ ₃ •̀๑)

Come on, let’s compile it together!

Let’s create a new archive file similar to Makefile - binding.gyp.

 And add this code inside:

Copy code The code is as follows:

{
"targets": [
{
"target_name": "hello",
"sources": [ "hello.cc" ]
}
]
}

Why do you write it like this? You can refer to the official documentation of node-gyp.

configure

After the file is ready, we need to execute this command in this directory:

Copy code The code is as follows:

$ node-gyp configure

If everything is normal, a build directory should be generated, and there will be related files in it, maybe M$ Visual Studio's vcxproj file, etc., maybe Makefile, depending on the platform.

build

After the Makefile is generated, we start constructing and compiling:
$ node-gyp build

When everything is compiled, it is truly done! If you don’t believe me, take a look at the build/Release directory. Is there a hello.node file below? Yes, this is the soap that C will pick up for Node.js later!

Get gay! Node ヽ(✿゚▽゚)ノ C

We create a new file jianfeizao.js in the directory just now:

Copy code The code is as follows:

var addon = require("./build/Release/hello");
console.log(addon.hello());

Did you see it? Did you see it? It's out! It's out! The result of Node.js and C being radical! This addon.hello() is the Handle Hello(const Arguments& args) we wrote in the C code before, and we have now output the value it returns.

Go to sleep, the next section will be more in-depth

It’s getting late, so I’ll finish writing here today. By now, everyone can create the most basic C extension of Hello world. The next time I write it should be more in-depth. As for when the next time will be, I actually don’t know.
(Hey, hey, hey, how can a masturbator be so irresponsible! (o゚ロ゚)┌┛Σ(ノ´ω`)ノ

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
C语言中的常量是什么,可以举一个例子吗?C语言中的常量是什么,可以举一个例子吗?Aug 28, 2023 pm 10:45 PM

常量也称为变量,一旦定义,其值在程序执行期间就不会改变。因此,我们可以将变量声明为引用固定值的常量。它也被称为文字。必须使用Const关键字来定义常量。语法C编程语言中使用的常量语法如下-consttypeVariableName;(or)consttype*VariableName;不同类型的常量在C编程语言中使用的不同类型的常量如下所示:整数常量-例如:1,0,34,4567浮点数常量-例如:0.0,156.89,23.456八进制和十六进制常量-例如:十六进制:0x2a,0xaa..八进制

VSCode和VS C++IntelliSense无法工作或拾取库VSCode和VS C++IntelliSense无法工作或拾取库Feb 29, 2024 pm 01:28 PM

VS代码和VisualStudioC++IntelliSense可能无法拾取库,尤其是在处理大型项目时。当我们将鼠标悬停在#Include<;wx/wx.h>;上时,我们看到了错误消息“CannotOpen源文件‘string.h’”(依赖于“wx/wx.h”),有时,自动完成功能无法响应。在这篇文章中,我们将看到如果VSCode和VSC++IntelliSense不能工作或不能提取库,你可以做些什么。为什么我的智能感知不能在C++中工作?处理大文件时,IntelliSense有时

修复Xbox错误代码8C230002修复Xbox错误代码8C230002Feb 27, 2024 pm 03:55 PM

您是否由于错误代码8C230002而无法在Xbox上购买或观看内容?一些用户在尝试购买或在其控制台上观看内容时不断收到此错误。抱歉,Xbox服务出现问题。稍后再试.有关此问题的帮助,请访问www.xbox.com/errorhelp。状态代码:8C230002这种错误代码通常是由于暂时的服务器或网络问题引起的。但是,还有可能是由于帐户的隐私设置或家长控制等其他原因,这些可能会阻止您购买或观看特定内容。修复Xbox错误代码8C230002如果您尝试在Xbox控制台上观看或购买内容时收到错误代码8C

递归程序在C++中找到数组的最小和最大元素递归程序在C++中找到数组的最小和最大元素Aug 31, 2023 pm 07:37 PM

我们以整数数组Arr[]作为输入。目标是使用递归方法在数组中找到最大和最小的元素。由于我们使用递归,我们将遍历整个数组,直到达到长度=1,然后返回A[0],这形成了基本情况。否则,将当前元素与当前最小或最大值进行比较,并通过递归更新其值以供后续元素使用。让我们看看这个的各种输入输出场景&minus;输入&nbsp;&minus;Arr={12,67,99,76,32};输出&nbsp;&minus;数组中的最大值:99解释&nbsp;&mi

中国东方航空宣布C919客机即将投入实际运营中国东方航空宣布C919客机即将投入实际运营May 28, 2023 pm 11:43 PM

5月25日消息,中国东方航空在业绩说明会上披露了关于C919客机的最新进展。据公司表示,与中国商飞签署的C919采购协议已于2021年3月正式生效,其中首架C919飞机已在2022年底交付。预计不久之后,该飞机将正式投入实际运营。东方航空将以上海为主要基地进行C919的商业运营,并计划在2022年和2023年引进总共5架C919客机。公司表示,未来的引进计划将根据实际运营情况和航线网络规划来确定。据小编了解,C919是中国具有完全自主知识产权的全球新一代单通道干线客机,符合国际通行的适航标准。该

C++程序打印数字的螺旋图案C++程序打印数字的螺旋图案Sep 05, 2023 pm 06:25 PM

以不同格式显示数字是学习基本编码问题之一。不同的编码概念,如条件语句和循环语句。有不同的程序中,我们使用特殊字符(如星号)来打印三角形或正方形。在本文中,我们将以螺旋形式打印数字,就像C++中的正方形一样。我们将行数n作为输入,然后从左上角开始移向右侧,然后向下,然后向左,然后向上,然后再次向右,以此类推等等。螺旋图案与数字123456724252627282982340414243309223948494431102138474645321120373635343312191817161514

C语言中的void关键字的作用C语言中的void关键字的作用Feb 19, 2024 pm 11:33 PM

C中的void是一个特殊的关键字,用来表示空类型,也就是指没有具体类型的数据。在C语言中,void通常用于以下三个方面。函数返回类型为void在C语言中,函数可以有不同的返回类型,例如int、float、char等。然而,如果函数不返回任何值,则可以将返回类型设为void。这意味着函数执行完毕后,并不返回具体的数值。例如:voidhelloWorld()

23 年来首次,C# 获得了 TIOBE 2023 年度编程语言奖23 年来首次,C# 获得了 TIOBE 2023 年度编程语言奖Jan 11, 2024 pm 04:45 PM

根据TIOBE编程社区指数,该指数是衡量编程语言受欢迎程度的标准之一,通过收集来自全球工程师、课程、供应商和搜索引擎的数据进行评估。2024年1月TIOBE指数于近日发布,同时官方公布了2023年编程语言排名,C#荣获TIOBE2023年度编程语言,这是23年来C#首次拿下这一荣誉。TIOBE官方新闻稿称,C#已经稳居前10名长达20多年,如今它正在追赶四大语言,成为一年内涨幅最大的编程语言(+1.43%),当之无愧地获得了该奖项。排名第二的是Scratch(+0.83%)和Fortran(+0

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function