


Introduction to the implementation principles of RPC (remote procedure call) in node.js_node.js
I just came into contact with RPC (remote procedure call), which is a method that can call a program on a remote machine locally. I saw a simple nodejs implementation, which is very good for learning the principles of RPC: nodejs light_rpc
Usage example:
//Server
var light_rpc = require('./index.js');
var port = 5556;
var rpc = new light_rpc({
combine: function(a, b, callback){
callback(a b);
},
multiply: function(t, cb){
cb(t*2);
}
}).listen(port);
Sample client:
//Client
rpc.connect(5556, 'localhost', function(remote, conn){
Remote.combine(1, 2, function(res){
If(res != 3){
console.log('ERROR', res);
}
});
});
Briefly talk about the whole process:
1. The server starts the program, listens to the port, implements the functions called by the client (such as combine and multiply in the above example), and saves them in an object.
2. The client starts the program, connects to the server, and sends the describe command after the connection is completed, asking the server to return the function name it can provide for calling.
connection.on('connect', function(){
connection.write(command(descrCmd));
});
3. The server receives the describe command, wraps its callable function name and sends it out ("combine", "multiply")
4. The client receives the function name sent by the server, registers it in its own object, and wraps a method for each function name, so that when calling these functions locally, it actually sends a request to the server:
for(var p in cmd.data){
remoteObj[p] = getRemoteCallFunction(p, self.callbacks, connection);
//The implementation of getRemoteCallFunction is shown below
}
5. The client calls the server-side function:
1) Generate a unique ID for the incoming callback function, called callbackId, and record it in an object of the client.
2) Package the following data and send it to the server: calling function name, JSON serialized parameter list, callbackId
function getRemoteCallFunction(cmdName, callbacks, connection){
return function(){
var id = uuid.generate();
If(typeof arguments[arguments.length-1] == 'function'){
callbacks[id] = arguments[arguments.length-1];
}
var args = parseArgumentsToArray.call(this, arguments);
var newCmd = command(cmdName, {id: id, args: args});
Connection.write(newCmd);
}
}
6. The server receives the above information, parses the data, deserializes the parameter list, and calls the function according to the function name and parameters.
var args = cmd.data.args;
args.push(getSendCommandBackFunction(c, cmd.data.id));
self.wrapper[cmd.command].apply({}, args);
7. After the function is completed, serialize the result and send it back to the client together with the previously received callbackId
function getSendCommandBackFunction(connection, cmdId){
return function(){
var innerArgs = parseArgumentsToArray.call({}, arguments);
var resultCommand = command(resultCmd, {id: cmdId, args: innerArgs});
Connection.write(resultCommand);
};
}
8. The client receives the function operation result and callbackId, takes out the callback function based on the callbackId, and passes the operation result into the callback function for execution.
9. The entire process is completed, please see the source code for details: https://github.com/romulka/nodejs-light_rpc
A few points to note:
1. The client and server remain connected during the entire process. Unlike the http protocol, the connection is disconnected after sending and receiving. Therefore, the completion of a data transmission cannot be judged by disconnecting the connection. In order to judge the completion of data reception, the data sent by the client and server follows a simple protocol: add the length of the data packet and the delimiter before the data. For example, the delimiter is n: [packet length data], so that after receiving the data, first take out the length of the data packet, and then continuously judge whether the accumulated data packets received are equal to or exceed this length. If so, one data transmission is completed, and you can start parsing and extracting the data.
2. This RPC is simple because it does not consider the function type in the parameters. For example, if the parameter is an object and there are function members under this object, the function will be ignored during JSON serialization, and this function cannot be executed on the server side. of.
To solve this problem, complex processing is required:
1. Deeply traverse each parameter to be sent to the remote end, extract the function members, generate a unique ID for this function, put it into a local object, replace this function member with this id string, and identify it This member is actually a function. In this way, the object can be serialized and sent out.
2. The server receives the call. When it wants to use the function in the parameter object, it determines that this is a function that has been processed by the client and has an id. It sends the id back to the client and uses the same method to set its own callback function. Pass the id to the client and wait for the callback from the client.
3. The client receives the function id, finds the function entity, calls it, and after completion, sends it back to the server according to the callback id given by the server
4. The server receives the result, finds the callback function, continues execution, and completes.
The recording method of functions can be completed in other ways. The general idea is to replace the function with something that can be serialized, and record the function so that the function can be found locally when called by the remote side. You can refer to the implementation of dnode.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

A large number of Windows users have encountered the "Remote Procedure Call Failed" error on their computers. Typically, this error is reported when trying to open documents, photos, and Windows applications. This error is related to Remote Procedure Call (RPC), which is a protocol for requesting services from another program that exists on another system in the network. Therefore, it is important that RPC is always running on your PC. Are you one such user affected by this RPC call failed error on Windows PC? Then you are reading the right article. In this article, we have curated some solutions that can help you resolve this issue on your computer. Fix 1 – Change the default program that is set to open certain

What should I do if the RPC server is unavailable and cannot be accessed on the desktop? In recent years, computers and the Internet have penetrated into every corner of our lives. As a technology for centralized computing and resource sharing, Remote Procedure Call (RPC) plays a vital role in network communication. However, sometimes we may encounter a situation where the RPC server is unavailable, resulting in the inability to enter the desktop. This article will describe some of the possible causes of this problem and provide solutions. First, we need to understand why the RPC server is unavailable. RPC server is a

The Node service built based on non-blocking and event-driven has the advantage of low memory consumption and is very suitable for handling massive network requests. Under the premise of massive requests, issues related to "memory control" need to be considered. 1. V8’s garbage collection mechanism and memory limitations Js is controlled by the garbage collection machine

This article will give you an in-depth understanding of the memory and garbage collector (GC) of the NodeJS V8 engine. I hope it will be helpful to you!

The file module is an encapsulation of underlying file operations, such as file reading/writing/opening/closing/delete adding, etc. The biggest feature of the file module is that all methods provide two versions of **synchronous** and **asynchronous**, with Methods with the sync suffix are all synchronization methods, and those without are all heterogeneous methods.

PHP and SOAP: How to implement Remote Procedure Call (RPC) Introduction: In recent years, with the rise of distributed systems, Remote Procedure Call (RPC) has been widely adopted in Web development. This article will introduce how to implement RPC using PHP and SOAP, and demonstrate its usage through code examples. 1. What is remote procedure call (RPC)? Remote procedure call (RemoteProcedureCall, RPC) is a communication

The event loop is a fundamental part of Node.js and enables asynchronous programming by ensuring that the main thread is not blocked. Understanding the event loop is crucial to building efficient applications. The following article will give you an in-depth understanding of the event loop in Node. I hope it will be helpful to you!

At the beginning, JS only ran on the browser side. It was easy to process Unicode-encoded strings, but it was difficult to process binary and non-Unicode-encoded strings. And binary is the lowest level data format of the computer, video/audio/program/network package
