Initial commit
authorNick Downing <nick@ndcode.org>
Tue, 20 Nov 2018 00:10:10 +0000 (11:10 +1100)
committerNick Downing <nick@ndcode.org>
Tue, 20 Nov 2018 12:08:03 +0000 (23:08 +1100)
.gitignore [new file with mode: 0644]
LICENSE [new file with mode: 0644]
MinSVGCache.js [new file with mode: 0644]
package.json [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..96632b3
--- /dev/null
@@ -0,0 +1,5 @@
+/ndcode-less_css_cache-*.tgz
+/node_modules
+/package-lock.json
+/yarn.lock
+/yarn-error.log
diff --git a/LICENSE b/LICENSE
new file mode 100644 (file)
index 0000000..aa360c1
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,20 @@
+Copyright (C) 2018 Nick Downing <nick@ndcode.org>
+SPDX-License-Identifier: MIT
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
diff --git a/MinSVGCache.js b/MinSVGCache.js
new file mode 100644 (file)
index 0000000..20859bf
--- /dev/null
@@ -0,0 +1,108 @@
+/*
+ * Copyright (C) 2018 Nick Downing <nick@ndcode.org>
+ * SPDX-License-Identifier: MIT
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+let BuildCache = require('@ndcode/build_cache')
+let SVGO = require('svgo')
+let assert = require('assert')
+let disk_build = require('@ndcode/disk_build')
+let fs = require('fs')
+let path = require('path')
+let util = require('util')
+
+let fs_readFile = util.promisify(fs.readFile)
+let fs_writeFile = util.promisify(fs.writeFile)
+let svgo = new SVGO(
+  {
+    plugins: [
+      {cleanupAttrs: true},
+      {removeDoctype: true},
+      {removeXMLProcInst: true},
+      {removeComments: true},
+      {removeMetadata: true},
+      {removeTitle: true},
+      {removeDesc: true},
+      {removeUselessDefs: true},
+      {removeEditorsNSData: true},
+      {removeEmptyAttrs: true},
+      {removeHiddenElems: true},
+      {removeEmptyText: true},
+      {removeEmptyContainers: true},
+      {removeViewBox: false},
+      {cleanupEnableBackground: true},
+      {convertStyleToAttrs: true},
+      {convertColors: true},
+      {convertPathData: true},
+      {convertTransform: true},
+      {removeUnknownsAndDefaults: true},
+      {removeNonInheritableGroupAttrs: true},
+      {removeUselessStrokeAndFill: true},
+      {removeUnusedNS: true},
+      {cleanupIDs: true},
+      {cleanupNumericValues: true},
+      {moveElemsAttrsToGroup: true},
+      {moveGroupAttrsToElems: true},
+      {collapseGroups: true},
+      {removeRasterImages: false},
+      {mergePaths: true},
+      {convertShapeToPath: true},
+      {sortAttrs: true},
+      {removeDimensions: true}//,
+      //{removeAttrs: {attrs: '(stroke|fill)'}}
+    ]
+  }
+)
+
+let MinSVGCache = function(diag) {
+  if (!this instanceof MinSVGCache)
+    throw Error('MinSVGCache is a constructor')
+  this.diag = diag || false
+
+  this.build_cache = new BuildCache()
+}
+
+MinSVGCache.prototype.get = function(key) {
+  return /*await*/ this.build_cache.get(
+    key,
+    async result => {
+      let render = await disk_build(
+        key,
+        async temp_pathname => {
+          let render = await svgo.optimize(
+            await fs_readFile(key, {encoding: 'utf-8'}),
+            {path: key}
+          )
+          return /*await*/ fs_writeFile(
+            temp_pathname,
+            render.data,
+            {encoding: 'utf-8'}
+          )
+        },
+        this.diag
+      )
+      assert(render.deps.length === 0)
+      result.value = await fs_readFile(render.pathname)
+    }
+  )
+}
+
+module.exports = MinSVGCache
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..0be462a
--- /dev/null
@@ -0,0 +1,36 @@
+{
+  "name": "@ndcode/min_svg_cache",
+  "version": "0.1.0",
+  "description": "SVG minimizer, caching front-end with live recompilation.",
+  "keywords": [
+    "Less",
+    "SVG",
+    "server-side",
+    "render",
+    "cache",
+    "live",
+    "recompile"
+  ],
+  "homepage": "https://www.ndcode.org",
+  "repository": {
+    "type": "git",
+    "url": "https://git.ndcode.org/public/min_svg_cache.git"
+  },
+  "bugs": {
+    "email": "nick@ndcode.org"
+  },
+  "main": "MinSVGCache.js",
+  "engines": {
+    "node": ">=0.4.0"
+  },
+  "directories": {},
+  "dependencies": {
+    "@ndcode/build_cache": "^0.1.0",
+    "@ndcode/disk_build": "^0.1.0",
+    "assert": "^1.4.1",
+    "svgo": "^1.1.1"
+  },
+  "devDependencies": {},
+  "maintainers": "Nick Downing <nick@ndcode.org>",
+  "license": "MIT"
+}