blob: e352a1944090b40fdb873d8eb75ffebeda774ccb [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* 将num转换为二进制的buff,不够的长度补0
* @param num 要转换的数据
* @param byteLength 生成的字节数量
*/
export function binaryNum(num: number, byteLength: number) {
const str = num.toString(2);
//补齐位数
const paddingStr = padding(str, byteLength * 8);
const buffer = Buffer.alloc(byteLength);
for (let i = 0; i < byteLength; i++) {
const start = i * 8;
const end = start + 8;
buffer[i] = parseInt(paddingStr.substring(start, end), 2);
}
return buffer;
}
/**
* 解析buffer还原为数字
* @param binNum
* @param byteLength
*/
export function convertBinaryNum(binNum: Buffer, byteLength: number) {
let str = '';
for (let i = 0; i < byteLength; i++) {
str += padding(binNum[i].toString(2), 8);
}
return parseInt(str, 2);
}
/**
* 不够位数,补0
* @param str
* @param padding
*/
function padding(str: string, padding: number) {
const offset = padding - str.length;
return '0'.repeat(offset) + str;
}