0.1.0 • Published 6 years ago

basetm v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

base™

Base™ encodes arbitrary binary data as a string of repeated "™" characters. With analogy to the unary numeral system, the binary data is encoded in the length of the string. This JavaScript module, base™, is the first implementation of the Base™ encoding.

An empty input becomes the empty string. The single byte 0x00 becomes "™". 0x01 becomes "™™". 0x02 becomes "™™™". 0xFF becomes

™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™

(256 ™s). 0x00 0x00 becomes

™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™™

(257 ™s), and so on.

Base™ is not the most inefficient possible binary encoding, but it is a step in that direction: 1MB of input yields approximately 28,388,580MB of output. (Twice that, if using UTF-16.)

How it works

The Base™ encoding is not as simple as taking the binary as a place-value base 256 number. This would give no way to distinguish buffers with leading null bytes from one another. We have to encode the length of the source buffer as well. We do this by sorting all possible buffers by length and then lexicographically, then simply returning the index of the buffer in the list.

Buffer lengthBuffers of this lengthMinimum length of Base™Maximum length of Base™
0 bytes100
1 byte2561256
2 bytes65,53625765,792
3 bytes16,777,21665,79316,843,008
4 bytes4,294,967,29616,843,0094,311,810,304
............
N bytes256N(256N - 1) / (256 - 1)(256N + 1 - 1) / (256 - 1) - 1

Installation

npm install basetm

Usage

var basetm = require("basetm");

var buf = new Buffer([0x03, 0xC0]); 

var l   = basetm.encodeL(buf); // 1217
var str = basetm.encode(buf);  // "™™™™™™™™™™™™...™™", string is 1,217 characters long

var buf2 = basetm.decode(str); // <Buffer 03 c0>
var buf3 = basetm.decodeL(l);  // <Buffer 03 c0>

API

basetm.encodeL(buf)

Input a Buffer. Returns a Base™ string length (i.e. a non-negative integer). If this number cannot be represented as a JavaScript number, which is increasingly likely as buffer length increases, returns a string containing its decimal digits.

  • The first buffer for which a string is returned is the 7-byte sequence 0x1E 0xFE 0xFE 0xFE 0xFE 0xFF 0x00, which returns the string "9007199254740993".
  • The last buffer for which a number is returned is the 128-byte sequence 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xF6 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFE 0xFF 0x00, which returns Number.MAX_VALUE = 21024 - 2971 = 179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858369.

basetm.encode(buf)

Encodes a Buffer as a Base™ string. This method calls basetm.encodeL to get a length l and then returns a string which is l repetitions of "™" in a row.

JavaScript specifies no maximum length for a string, although MDN's polyfill for String.prototype.repeat gives an upper limit of 228 - 1 = 268,435,455 characters. This is equivalent to the 4-byte sequence 0x0E 0xFE 0xFE 0xFE. Buffers which are longer or lexicographically greater than this may cause errors in your JavaScript engine.

basetm.decodeL(l)

Take a Base™ string length in the form of a non-negative integer, a non-negative integer expressed as a decimal string or a big-integer object and return the Buffer it represents.

basetm.decode(str)

Decode a Base™ string and return the Buffer it represents.