com.lonelystorm.air.asset.services.impl.CompilerManagerImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of air-asset Show documentation
Show all versions of air-asset Show documentation
The LonelyStorm Air Asset library provides support to be able to compile SASS files at runtime.
package com.lonelystorm.air.asset.services.impl;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Executors;
import org.apache.felix.scr.annotations.Activate;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Deactivate;
import org.apache.felix.scr.annotations.Reference;
import org.apache.felix.scr.annotations.ReferenceCardinality;
import org.apache.felix.scr.annotations.ReferencePolicy;
import org.apache.felix.scr.annotations.Service;
import org.apache.sling.api.resource.ResourceResolverFactory;
import org.osgi.service.component.ComponentContext;
import com.google.common.collect.BiMap;
import com.google.common.collect.HashBiMap;
import com.google.common.collect.Maps;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.common.util.concurrent.ListeningExecutorService;
import com.google.common.util.concurrent.MoreExecutors;
import com.lonelystorm.air.asset.exceptions.CompilerException;
import com.lonelystorm.air.asset.models.Asset;
import com.lonelystorm.air.asset.models.AssetLibrary;
import com.lonelystorm.air.asset.models.AssetTheme;
import com.lonelystorm.air.asset.services.CacheManager;
import com.lonelystorm.air.asset.services.Compiler;
import com.lonelystorm.air.asset.services.CompilerManager;
import com.lonelystorm.air.asset.services.LibraryResolver;
import com.lonelystorm.air.asset.util.CompilerSession;
@Component
@Service
public class CompilerManagerImpl implements CompilerManager {
@Reference(
referenceInterface = Compiler.class,
policy = ReferencePolicy.DYNAMIC,
cardinality = ReferenceCardinality.OPTIONAL_MULTIPLE,
bind = "bindCompiler",
unbind = "unbindCompiler"
)
private final Map compilers = Collections.synchronizedMap(new TreeMap());
@Reference
private ResourceResolverFactory resourceResolverFactory;
@Reference
private CacheManager cacheManager;
@Reference
private LibraryResolver libraryResolver;
private ListeningExecutorService pool;
private BiMap> tasks;
@Activate
protected void activate(ComponentContext componentContext) {
pool = MoreExecutors.listeningDecorator(Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors() * 2));
tasks = Maps.synchronizedBiMap(HashBiMap.>create(30));
}
@Deactivate
protected void deactivate(ComponentContext componentContext) {
if (pool != null) {
pool.shutdown();
}
pool = null;
tasks = null;
}
protected void bindCompiler(Compiler compiler) {
String name = compiler.getClass().getName();
compilers.put(name, compiler);
}
protected void unbindCompiler(Compiler compiler) {
String name = compiler.getClass().getName();
compilers.remove(name);
}
/**
* {@inheritDoc}
*/
@Override
public String compile(Asset asset) throws CompilerException {
final StringBuilder compiled = new StringBuilder();
final List> futures = new ArrayList<>();
compile(asset, futures);
ListenableFuture> all = Futures.allAsList(futures);
try {
all.get();
for (ListenableFuture future : futures) {
String path = tasks.inverse().get(future);
String result = future.get();
cacheManager.cache(path, result);
compiled.append(result);
}
} catch (InterruptedException | ExecutionException e) {
if (e.getCause() instanceof CompilerException) {
throw (CompilerException) e.getCause();
}
} finally {
for (ListenableFuture future : futures) {
synchronized (tasks) {
tasks.inverse().remove(future);
}
}
}
return compiled.toString();
}
private void compile(final Asset asset, final List> futures) {
if (asset instanceof AssetLibrary) {
AssetLibrary folder = (AssetLibrary) asset;
for (final String embed : folder.getEmbed()) {
List libs = libraryResolver.findLibrariesByCategory(embed);
for (final AssetLibrary lib : libs) {
compile(lib, futures);
}
}
} else if (asset instanceof AssetTheme) {
AssetTheme folder = (AssetTheme) asset;
for (final String embed : folder.getEmbed()) {
List themes = libraryResolver.findThemesByTheme(embed);
for (final AssetTheme theme : themes) {
compile(theme, futures);
}
}
}
for (final String file : asset.getSources()) {
ListenableFuture future = null;
final String result = cacheManager.get(file);
synchronized (tasks) {
if (tasks.containsKey(file)) {
future = tasks.get(file);
} else {
if (result == null) {
future = compile(asset, file);
} else {
future = Futures.immediateFuture(result);
}
if (future != null) {
tasks.put(file, future);
}
}
}
if (future != null) {
futures.add(future);
}
}
}
private ListenableFuture compile(final Asset asset, final String file) {
final CompilerSession session = new CompilerSession(resourceResolverFactory, getClass());
final String source = session.file(file);
if (source != null) {
for (Compiler compiler : compilers.values()) {
if (compiler.supports(asset, file)) {
return pool.submit(new CompileTask(compiler, asset, file, source));
}
}
}
return null;
}
private static class CompileTask implements Callable {
private final Compiler compiler;
private final Asset asset;
private final String file;
private final String source;
public CompileTask(final Compiler compiler, final Asset asset, final String file, final String source) {
this.compiler = compiler;
this.asset = asset;
this.file = file;
this.source = source;
}
@Override
public String call() throws CompilerException {
return compiler.compile(asset, file, source);
}
}
}