All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.brooklyn.entity.brooklynnode.RemoteEffectorBuilder Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
/*
 * 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.entity.brooklynnode;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Map;

import org.apache.brooklyn.api.effector.Effector;
import org.apache.brooklyn.core.effector.Effectors;
import org.apache.brooklyn.core.effector.Effectors.EffectorBuilder;
import org.apache.brooklyn.entity.brooklynnode.BrooklynEntityMirrorImpl.RemoteEffector;
import org.apache.brooklyn.util.http.HttpToolResponse;

import com.google.common.base.Function;

public class RemoteEffectorBuilder {
    private static class ResultParser implements Function {
        @Override
        public String apply(HttpToolResponse input) {
            return input.getContentAsString();
        }
    }
    

    public static Collection> of(Collection cfgEffectors) {
        Collection> effectors = new ArrayList>();
        for (Object objEff : cfgEffectors) {
            Map cfgEff = (Map)objEff;
            String effName = (String)cfgEff.get("name");
            String description = (String)cfgEff.get("description");

            EffectorBuilder eff = Effectors.effector(String.class, effName);
            Collection params = (Collection)cfgEff.get("parameters");

            /* The *return type* should NOT be included in the signature here.
             * It might be a type known only at the mirrored brooklyn node
             * (in which case loading it here would fail); or possibly it could
             * be a different version of the type here, in which case the signature
             * would look valid here, but deserializing it would fail.
             * 
             * Best to just pass the json representation back to the caller.
             * (They won't be able to tell the difference between that and deserialize-then-serialize!)
             */
            
            if (description != null) {
                eff.description(description);
            }

            for (Object objParam : params) {
                buildParam(eff, (Map)objParam);
            }

            eff.impl(new RemoteEffector(effName, new ResultParser()));
            effectors.add(eff.build());
        }
        return effectors;
    }

    private static void buildParam(EffectorBuilder eff, Map cfgParam) {
        String name = (String)cfgParam.get("name");
        String description = (String)cfgParam.get("description");
        String defaultValue = (String)cfgParam.get("defaultValue");

        eff.parameter(Object.class, name, description, defaultValue /*TypeCoercions.coerce(defaultValue, paramType)*/);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy