实际上,我确实得到了您(和我)想要的东西,而没有使用wait,Promises或任何(外部)库(我们自己的库除外)的包含。
方法如下:
我们将使一个C ++模块与node.js一起使用,并且该C ++模块函数将发出HTTP请求并以字符串形式返回数据,您可以通过以下方式直接使用它:
var myData = newModule.get(url);
您准备好开始了吗?
第1步:在计算机上的其他位置创建一个新文件夹,我们仅使用此文件夹来构建module.node文件(从C ++编译),以后可以将其移动。
在新文件夹中(我将我的文件夹放在mynewFolder / src中以进行组织):
npm init
然后
npm install node-gyp -g
现在制作2个新文件:1,称为something.cpp,并将其放入其中(或根据需要对其进行修改):
#pragma comment(lib, "urlmon.lib")
#include <sstream>
#include <WTypes.h>
#include <node.h>
#include <urlmon.h>
#include <iostream>
using namespace std;
using namespace v8;
Local<Value> S(const char* inp, Isolate* is) {
return String::NewFromUtf8(
is,
inp,
NewStringType::kNormal
).ToLocalChecked();
}
Local<Value> N(double inp, Isolate* is) {
return Number::New(
is,
inp
);
}
const char* stdStr(Local<Value> str, Isolate* is) {
String::Utf8Value val(is, str);
return *val;
}
double num(Local<Value> inp) {
return inp.As<Number>()->Value();
}
Local<Value> str(Local<Value> inp) {
return inp.As<String>();
}
Local<Value> get(const char* url, Isolate* is) {
IStream* stream;
HRESULT res = URLOpenBlockingStream(0, url, &stream, 0, 0);
char buffer[100];
unsigned long bytesReadSoFar;
stringstream ss;
stream->Read(buffer, 100, &bytesReadSoFar);
while(bytesReadSoFar > 0U) {
ss.write(buffer, (long long) bytesReadSoFar);
stream->Read(buffer, 100, &bytesReadSoFar);
}
stream->Release();
const string tmp = ss.str();
const char* cstr = tmp.c_str();
return S(cstr, is);
}
void Hello(const FunctionCallbackInfo<Value>& arguments) {
cout << "Yo there!!" << endl;
Isolate* is = arguments.GetIsolate();
Local<Context> ctx = is->GetCurrentContext();
const char* url = stdStr(arguments[0], is);
Local<Value> pg = get(url,is);
Local<Object> obj = Object::New(is);
obj->Set(ctx,
S("result",is),
pg
);
arguments.GetReturnValue().Set(
obj
);
}
void Init(Local<Object> exports) {
NODE_SET_METHOD(exports, "get", Hello);
}
NODE_MODULE(cobypp, Init);
现在,在同一个目录中创建一个新文件,something.gyp
并将其放入(类似)它:
{
"targets": [
{
"target_name": "cobypp",
"sources": [ "src/cobypp.cpp" ]
}
]
}
现在在package.json文件中,添加: "gypfile": true,
现在:在控制台中, node-gyp rebuild
如果它遍历整个命令,并在末尾无误地说“ ok”,那么您(几乎)很高兴,如果没有,请发表评论。
但是,如果可行,则转到build / Release / cobypp.node(或任何您需要的名称),将其复制到您的主node.js文件夹中,然后复制到node.js中:
var myCPP = require("./cobypp")
var myData = myCPP.get("http://google.com").result;
console.log(myData);
..
response.end(myData);//or whatever