/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.brooklyn.core.mgmt.rebind.transformer; import java.util.Collection; import java.util.Map; import java.util.Map.Entry; import org.apache.brooklyn.core.mgmt.rebind.transformer.CompoundTransformer.Builder; import org.apache.brooklyn.util.core.ResourceUtils; import org.apache.brooklyn.util.core.text.TemplateProcessor; import org.apache.brooklyn.util.exceptions.Exceptions; import org.apache.brooklyn.util.yaml.Yamls; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.common.annotations.Beta; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Iterables; @Beta public class CompoundTransformerLoader { private static final Logger LOG = LoggerFactory.getLogger(CompoundTransformerLoader.class); // TODO Improve error handing so get nicer errors. // TODO Improve names (e.g. always camel case?) // TODO Pass in classloader for reflectively loading rawDataTransformer? public static CompoundTransformer load(String contents) { CompoundTransformer.Builder builder = CompoundTransformer.builder(); Iterable<Object> toplevel = Yamls.parseAll(contents); Collection<?> rules = (Collection<?>)Iterables.getOnlyElement(toplevel); for (Object obj : rules) { Map<?, ?> map = (Map<?, ?>)obj; Entry<?, ?> entry = Iterables.getOnlyElement(map.entrySet()); addRule(builder, (String)entry.getKey(), (Map<?, ?>)entry.getValue()); } LOG.info("Loaded " + rules.size() + " transforms"); return builder.build(); } private static void addRule(Builder builder, String name, Map<?,?> args) { if (name.equals("renameClass")) { String oldVal = (String) args.get("old_val"); String newVal = (String) args.get("new_val"); builder.renameClass(oldVal, newVal); } else if (name.equals("renameClassTag")) { String oldVal = (String) args.get("old_val"); String newVal = (String) args.get("new_val"); builder.renameClassTag(oldVal, newVal); } else if (name.equals("renameType")) { String oldVal = (String) args.get("old_val"); String newVal = (String) args.get("new_val"); builder.renameType(oldVal, newVal); } else if (name.equals("renameField")) { String clazz = (String) args.get("class_name"); String oldVal = (String) args.get("old_val"); String newVal = (String) args.get("new_val"); builder.renameField(clazz, oldVal, newVal); } else if (name.equals("catalogItemId")) { builder.changeCatalogItemId( (String) args.get("old_symbolic_name"), checkString(args.get("old_version"), "old_version"), (String) args.get("new_symbolic_name"), checkString(args.get("new_version"), "new_version")); } else if (name.equals("xslt")) { String url = (String) args.get("url"); @SuppressWarnings("unchecked") Map<String,?> substitutions = (Map<String, ?>) args.get("substitutions"); String xsltTemplate = ResourceUtils.create(CompoundTransformer.class).getResourceAsString(url); String xslt = TemplateProcessor.processTemplateContents(xsltTemplate, substitutions == null ? ImmutableMap.<String, String>of() : substitutions); // we could pass XSLT-style parameters instead, maybe? that's more normal, // but OTOH freemarker is maybe more powerful, given our other support there builder.xsltTransformer(xslt); } else if (name.equals("rawDataTransformer")) { String type = (String) args.get("type"); try { Class<?> clazz = CompoundTransformerLoader.class.getClassLoader().loadClass(type); builder.rawDataTransformer((RawDataTransformer) clazz.newInstance()); } catch (Exception e) { throw Exceptions.propagate(e); } } else { throw new IllegalStateException("Unsupported transform '"+name+"' ("+args+")"); } } private static String checkString(Object object, String name) { if (object!=null && !(object instanceof String)) { throw new IllegalArgumentException("Argument '"+name+"' must be a string; numbers may need explicit quoting in YAML."); } return (String) object; } }