Package org.auraframework.impl.javascript.controller

Source Code of org.auraframework.impl.javascript.controller.JavascriptControllerDef$Builder

/*
* Copyright (C) 2013 salesforce.com, inc.
*
* Licensed 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.auraframework.impl.javascript.controller;

import static org.auraframework.instance.ValueProviderType.LABEL;

import java.io.IOException;
import java.util.Map;
import java.util.Set;

import org.auraframework.Aura;
import org.auraframework.def.ActionDef;
import org.auraframework.def.ControllerDef;
import org.auraframework.def.DefDescriptor;
import org.auraframework.expression.PropertyReference;
import org.auraframework.impl.system.DefinitionImpl;
import org.auraframework.impl.system.SubDefDescriptorImpl;
import org.auraframework.impl.util.AuraUtil;
import org.auraframework.instance.Action;
import org.auraframework.instance.GlobalValueProvider;
import org.auraframework.throwable.quickfix.DefinitionNotFoundException;
import org.auraframework.throwable.quickfix.QuickFixException;
import org.auraframework.util.json.Json;

import com.google.common.collect.Sets;

/**
* def for client controllers
*/
public class JavascriptControllerDef extends DefinitionImpl<ControllerDef> implements ControllerDef {

    /**
     */
    private static final long serialVersionUID = 133829572661899255L;
    private final Map<String, JavascriptActionDef> actionMap;
    private final Set<PropertyReference> expressionRefs;

    protected JavascriptControllerDef(Builder builder) {
        super(builder);
        this.actionMap = AuraUtil.immutableMap(builder.actionDefs);
        this.expressionRefs = builder.expressionRefs;
    }

    @Override
    public JavascriptActionDef getSubDefinition(String name) {
        return actionMap.get(name);
    }

    @Override
    public void serialize(Json json) throws IOException {
        json.writeMapBegin();
        json.writeMapEntry("descriptor", descriptor);
        json.writeMapEntry("actionDefs", actionMap.values());
        json.writeMapEnd();
    }

    @Override
    public Map<String, JavascriptActionDef> getActionDefs() {
        return actionMap;
    }

    /**
     * We cannot sensibly <em>run</em> Javascript actions at the server, but the objects
     * are sometimes created for bookkeeping.  In particular, if a client-side action execution
     * fails, the failure is logged via ExceptionAdapter, which likes to have an action object,
     * including the action instance identifier in case that helps debugging.
     *
     * @throws DefinitionNotFoundException
     *
     * @returns an Action for the given action name.
     */
    @Override
    public Action createAction(String actionName, Map<String, Object> paramValues) throws DefinitionNotFoundException {
        JavascriptActionDef actionDef = actionMap.get(actionName);
        if(actionDef == null){
            DefDescriptor<ActionDef> desc = SubDefDescriptorImpl.getInstance(actionName, getDescriptor(), ActionDef.class);
            throw new DefinitionNotFoundException(desc);
        }
        return new JavascriptPseudoAction(actionDef);
    }

    @Override
    public Object getValue(PropertyReference key) {
        return getSubDefinition(key.toString());
    }

    @Override
    public void retrieveLabels() throws QuickFixException {
        GlobalValueProvider labelProvider = Aura.getContextService().getCurrentContext().getGlobalProviders()
                .get(LABEL);
        for (PropertyReference e : expressionRefs) {
            if (e.getRoot().equals(LABEL.getPrefix())) {
                labelProvider.getValue(e.getStem());
            }
        }
    }

    public static class Builder extends DefinitionImpl.BuilderImpl<ControllerDef> {

        public Builder() {
            super(ControllerDef.class);
        }

        public Map<String, JavascriptActionDef> actionDefs;
        public Set<PropertyReference> expressionRefs = Sets.newHashSet();

        @Override
        public JavascriptControllerDef build() {
            return new JavascriptControllerDef(this);
        }
    }
}
TOP

Related Classes of org.auraframework.impl.javascript.controller.JavascriptControllerDef$Builder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.