use of org.bndtools.templating.ResourceMap in project bndtools by bndtools.
the class EnrouteProjectTemplate method generateOutputs.
@Override
public ResourceMap generateOutputs(Map<String, List<Object>> params, IProgressMonitor monitor) throws Exception {
String projectName = param(PROP_PROJECT_NAME, params);
String pkg = param(PROP_BASE_PACKAGE_NAME, params);
String srcDir = param(PROP_SRC_DIR, params);
String testSrcDir = param(PROP_TEST_SRC_DIR, params);
ResourceMap resources = new ResourceMap();
resources.put("bnd.bnd", generateBndFile(projectName, pkg));
generateSources(resources, projectName, pkg, srcDir, testSrcDir);
return resources;
}
use of org.bndtools.templating.ResourceMap in project bndtools by bndtools.
the class ReposTemplateLoaderTest method testReferTemplateDefinitions.
public void testReferTemplateDefinitions() throws Exception {
List<Template> templates = loader.findTemplates("test3", new ProgressMonitorReporter(new NullProgressMonitor(), "")).getValue();
assertEquals(1, templates.size());
Template template = templates.get(0);
Map<String, List<Object>> parameters = new HashMap<>();
parameters.put("name", Collections.<Object>singletonList("Homer Simpson"));
ResourceMap outputs = template.generateOutputs(parameters);
assertEquals(1, outputs.size());
Iterator<Entry<String, Resource>> iter = outputs.entries().iterator();
Entry<String, Resource> entry;
entry = iter.next();
assertEquals("example.html", entry.getKey());
assertEquals("My name is <i>Homer Simpson</i>!", IO.collect(entry.getValue().getContent()));
}
use of org.bndtools.templating.ResourceMap in project bndtools by bndtools.
the class ReposTemplateLoaderTest method testExtendUnprocessedPatternAndIgnore.
public void testExtendUnprocessedPatternAndIgnore() throws Exception {
List<Template> templates = loader.findTemplates("test4", new ProgressMonitorReporter(new NullProgressMonitor(), "")).getValue();
assertEquals(1, templates.size());
Template template = templates.get(0);
Map<String, List<Object>> parameters = new HashMap<>();
parameters.put("projectName", Collections.<Object>singletonList("org.example.foo"));
ResourceMap outputs = template.generateOutputs(parameters);
assertEquals(1, outputs.size());
Entry<String, Resource> entry;
Iterator<Entry<String, Resource>> iter = outputs.entries().iterator();
entry = iter.next();
assertEquals("pic.xxx", entry.getKey());
// Check the digest of the pic to ensure it didn't get damaged by the templating engine
DigestInputStream digestStream = new DigestInputStream(entry.getValue().getContent(), MessageDigest.getInstance("SHA-256"));
IO.drain(digestStream);
byte[] digest = digestStream.getMessageDigest().digest();
assertEquals("ea5d770bc2deddb1f9a20df3ad337bdc1490ba7b35fa41c33aa4e9a534e82ada", Hex.toHexString(digest).toLowerCase());
}
use of org.bndtools.templating.ResourceMap in project bndtools by bndtools.
the class GitCloneTemplate method toResourceMap.
private static ResourceMap toResourceMap(File baseDir, FileFilter filter) {
ResourceMap result = new ResourceMap();
File[] files = baseDir.listFiles(filter);
if (files != null)
for (File file : files) {
recurse("", file, filter, result);
}
return result;
}
use of org.bndtools.templating.ResourceMap in project bndtools by bndtools.
the class CapabilityBasedTemplate method getInputSources.
private synchronized ResourceMap getInputSources() throws IOException {
File bundleFile = fetchBundle();
_inputResources = new ResourceMap();
try (JarInputStream in = new JarInputStream(IO.stream(bundleFile))) {
JarEntry jarEntry = in.getNextJarEntry();
while (jarEntry != null) {
String entryPath = jarEntry.getName().trim();
if (entryPath.startsWith(dir)) {
String relativePath = entryPath.substring(dir.length());
if (!relativePath.isEmpty()) {
// skip the root folder
Resource resource;
if (relativePath.endsWith("/")) {
// strip the trailing slash
relativePath.substring(0, relativePath.length());
resource = new FolderResource();
} else {
// cannot use IO.collect() because it closes the whole JarInputStream
resource = BytesResource.loadFrom(in);
}
_inputResources.put(relativePath, resource);
}
}
jarEntry = in.getNextJarEntry();
}
}
return _inputResources;
}
Aggregations