Mercurial > piecrust2
view piecrust/processing/less.py @ 369:4b1019bb2533
serve: Giant refactor to change how we handle data when serving pages.
* We need a distinction between source metadata and route metadata. In most
cases they're the same, but in cases like taxonomy pages, route metadata
contains more things that can't be in source metadata if we want to re-use
cached pages.
* Create a new `QualifiedPage` type which is a page with a specific route
and route metadata. Pass this around in many places.
* Instead of passing an URL around, use the route in the `QualifiedPage` to
generate URLs. This is better since it removes the guess-work from trying
to generate URLs for sub-pages.
* Deep-copy app and page configurations before passing them around to things
that could modify them, like data builders and such.
* Exclude taxonomy pages from iterator data providers.
* Properly nest iterator data providers for when the theme and user page
sources are merged inside `site.pages`.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 03 May 2015 18:47:10 -0700 |
parents | c1d4e86a3918 |
children | c4b3a7fd2f87 |
line wrap: on
line source
import os import os.path import sys import json import hashlib import logging import platform import subprocess from piecrust.processing.base import ( SimpleFileProcessor, ExternalProcessException) from piecrust.processing.tree import FORCE_BUILD logger = logging.getLogger(__name__) class LessProcessor(SimpleFileProcessor): PROCESSOR_NAME = 'less' def __init__(self): super(LessProcessor, self).__init__({'less': 'css'}) self._conf = None self._map_dir = None def onPipelineStart(self, pipeline): self._map_dir = os.path.join(pipeline.tmp_dir, 'less') if not os.path.isdir(self._map_dir): os.makedirs(self._map_dir) def getDependencies(self, path): map_path = self._getMapPath(path) try: with open(map_path, 'r') as f: dep_map = json.load(f) # Check the version, since the `sources` list has changed # meanings over time. if dep_map.get('version') != 3: logger.warning("Unknown LESS map version. Force rebuilding.") return FORCE_BUILD # Get the sources, but make all paths absolute. sources = dep_map.get('sources') path_dir = os.path.dirname(path) def _makeAbs(p): return os.path.join(path_dir, p) deps = list(map(_makeAbs, sources)) return [map_path] + deps except IOError: # Map file not found... rebuild. logger.debug("No map file found for LESS file '%s' at '%s'. " "Rebuilding" % (path, map_path)) return FORCE_BUILD def _doProcess(self, in_path, out_path): self._ensureInitialized() map_path = self._getMapPath(in_path) map_url = '/' + os.path.relpath(map_path, self.app.root_dir) args = [self._conf['bin'], '--source-map=%s' % map_path, '--source-map-url=%s' % map_url] args += self._conf['options'] args.append(in_path) args.append(out_path) logger.debug("Processing LESS file: %s" % args) # On Windows, we need to run the process in a shell environment # otherwise it looks like `PATH` isn't taken into account. shell = (platform.system() == 'Windows') try: proc = subprocess.Popen( args, shell=shell, stderr=subprocess.PIPE) stdout_data, stderr_data = proc.communicate() except FileNotFoundError as ex: logger.error("Tried running LESS processor with command: %s" % args) raise Exception("Error running LESS processor. " "Did you install it?") from ex if proc.returncode != 0: raise ExternalProcessException( stderr_data.decode(sys.stderr.encoding)) return True def _ensureInitialized(self): if self._conf is not None: return self._conf = self.app.config.get('less') or {} self._conf.setdefault('bin', 'lessc') self._conf.setdefault('options', ['--compress']) if not isinstance(self._conf['options'], list): raise Exception("The `less/options` configuration setting " "must be an array of arguments.") def _getMapPath(self, path): map_name = "%s_%s.map" % ( os.path.basename(path), hashlib.md5(path.encode('utf8')).hexdigest()) map_path = os.path.join(self._map_dir, map_name) return map_path