Skip to content

Instantly share code, notes, and snippets.

@AnalyzePlatypus
Created April 16, 2021 20:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnalyzePlatypus/7725abc23cf941091a957fd24c26cdd8 to your computer and use it in GitHub Desktop.
Save AnalyzePlatypus/7725abc23cf941091a957fd24c26cdd8 to your computer and use it in GitHub Desktop.

Compression Test

A quick script for testing how well a JSON file compresses

// Imports

const fs = require('fs');
const { promisify } = require('util');
const { deflate } = require('zlib');
const gzip = promisify(deflate);


// Helpers

function readFile(path) {
  return fs.readFileSync(path).toString();
}

async function jsonToCompressedBase64(json) {
  return (await gzip(JSON.stringify(json))).toString('base64')
}

function byteLength(str) {
  // From https://gist.github.com/lovasoa/11357947
  var s = str.length;
  for (var i=str.length-1; i>=0; i--) {
    var code = str.charCodeAt(i);
    if (code > 0x7f && code <= 0x7ff) s++;
    else if (code > 0x7ff && code <= 0xffff) s+=2;
    if (code >= 0xDC00 && code <= 0xDFFF) i--;
  }
  return s;
}

function bytesToHumanReadableString(bytes, si=true, dp=1) {
  // From https://stackoverflow.com/a/14919494/6068782
  const thresh = si ? 1000 : 1024;

  if (Math.abs(bytes) < thresh) {
    return bytes + ' B';
  }

  const units = si 
    ? ['kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'] 
    : ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'];
  let u = -1;
  const r = 10**dp;

  do {
    bytes /= thresh;
    ++u;
  } while (Math.round(Math.abs(bytes) * r) / r >= thresh && u < units.length - 1);

  return bytes.toFixed(dp) + ' ' + units[u];
}

// Constants

const COMPRESSION_TEST_JSON_FILE_PATH = "./testObject.json";

// Runtime

(async function main() {
  const noCompression = readFile(COMPRESSION_TEST_JSON_FILE_PATH);
  const withCompression = await jsonToCompressedBase64(noCompression);

  const noCompressionBytes = byteLength(noCompression);
  const withCompressionBytes = byteLength(withCompression);
  const differenceBytes = noCompressionBytes - withCompressionBytes;
  const onePercent = noCompressionBytes / 100;
  const savedPercentage = (differenceBytes / onePercent).toFixed(2);

  console.log(`\nReading JSON file ${COMPRESSION_TEST_JSON_FILE_PATH}`);
  console.log(`\nResults:`);
  console.log(`No compression: ${bytesToHumanReadableString(noCompressionBytes)}`);
  console.log(`With compression: ${bytesToHumanReadableString(withCompressionBytes)}`);
  console.log(`Saved ${savedPercentage}% (${bytesToHumanReadableString(differenceBytes)})\n`);
})();

Sample output

Reading JSON file ./testObject.json

Results:
No compression: 654.9 kB
With compression: 103.8 kB
Saved 84.15% (551.1 kB)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment