学习笔记9(nodejs之rpc封装)

本文档介绍了如何在Node.js中实现RPC(远程过程调用)的封装,包括客户端和服务器端的创建。详细讲解了公共模块的构建,如编码、解码方法,以及客户端和服务端的具体实现。提供了参考链接和实际代码示例,帮助读者理解和运用。
摘要由CSDN通过智能技术生成

0. 链接

1. 公共模块

  • 封装公共方法的父类
    • constructor: 初始化编码/解码的protobufSchema
    • encode:编码成二进制数据
    • decode:二进制数据解码
    • isCompleteRequest:判断buffer,并返回下一条完整数据的长度
    • onDataEventFn:socket接收数据事件封装,分割处理流数据,处理每条数据后调用回调函数
module.exports = class {
   
    constructor(protobufEncodeSchema, protobufDecodeSchema){
   
        this.protobufEncodeSchema = protobufEncodeSchema
        this.protobufDecodeSchema = protobufDecodeSchema
    }
    // 解码
    decode(buffer) {
   
        const seq = buffer.readUInt32BE();

        return {
   
            seq: seq,
            result: this.protobufDecodeSchema.decode(buffer.slice(8))
        }
    }
    // 判断请求包是不是接收完成
    isCompleteRequest(buffer) {
   
        if (buffer.length < 8) {
   
            return 0
        }
        const bodyLength = buffer.readInt32BE(4);
        if (buffer.length >= bodyLength + 8) {
   
            return bodyLength + 8
            
        } else {
   
            return 0
        }
    }
    // 编码
    encode(data, seq) {
   
        const body = this.protobufEncodeSchema.encode(data);

        const head = Buffer.alloc(8);
        head.writeUInt32BE(seq);
        head.writeUInt32BE
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值