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

act.i18n.EnumLookupCache Maven / Gradle / Ivy

package act.i18n;

/*-
 * #%L
 * ACT Framework
 * %%
 * Copyright (C) 2014 - 2018 ActFramework
 * %%
 * 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.
 * #L%
 */

import act.app.App;
import act.job.OnAppStart;
import act.util.ClassInfoRepository;
import act.util.ClassNode;
import act.util.LogSupport;
import org.osgl.$;
import org.osgl.Lang;
import org.osgl.util.Keyword;

import java.util.*;
import javax.inject.Singleton;

@Singleton
public class EnumLookupCache extends LogSupport {

    private Map> eligibleEnums = new HashMap<>();
    private int eligibleEnumSize;

    // locale
    // -> enum type name (as keyword)
    // --> enum name
    // ---> enum message
    private Map>> withoutProperties = new HashMap<>();

    // locale
    // -> enum type name (as keyword)
    // --> enum name
    // ---> enum field name
    // ----> enum field value
    private Map>>> withProperties = new HashMap<>();

    public Map> withoutProperties(Locale locale) {
        return ensureWithoutProperties(locale);
    }

    public Map>> withProperties(Locale locale) {
        return ensureWithProperties(locale);
    }

    public Map withoutProperties(String enumTypeName, Locale locale) {
        Map> map = ensureWithoutProperties(locale);
        return map.get(Keyword.of(enumTypeName));
    }

    public Map> withProperties(String enumTypeName, Locale locale) {
        Map>> map = ensureWithProperties(locale);
        return map.get(Keyword.of(enumTypeName));
    }

    @OnAppStart(async = true)
    public void loadEligibleEnums(ClassInfoRepository repo, final App app) {
        final ClassNode enumRoot = repo.node(Enum.class.getName());
        final $.Predicate tester = app.config().appClassTester();
        enumRoot.visitSubTree(new Lang.Visitor() {
            @Override
            public void visit(ClassNode classNode) throws Lang.Break {
                String name = classNode.name();
                if (tester.test(name) && !name.startsWith("act.")) {
                    Class enumType = $.cast(app.classForName(name));
                    Object[] constants = enumType.getEnumConstants();
                    if (null != constants && constants.length > 0) {
                        String simpleName = enumType.getSimpleName();
                        Class existing = eligibleEnums.get(simpleName);
                        if (null != existing && existing.getName().equals(enumType.getName())) {
                            warn("Ambiguous enum name found between %s and %s", existing.getName(), enumType.getName());
                        } else {
                            eligibleEnums.put(simpleName, enumType);
                        }
                    }
                }
            }
        });
        eligibleEnumSize = eligibleEnums.size();
    }

    private Map> ensureWithoutProperties(Locale locale) {
        Map> map = withoutProperties.get(locale);
        if (null == map) {
            map = new HashMap<>();
            withoutProperties.put(locale, map);
        }
        if (map.size() < eligibleEnumSize) {
            populateWithoutProperties(map, locale);
        }
        return map;
    }

    private Map>> ensureWithProperties(Locale locale) {
        Map>> map = withProperties.get(locale);
        if (null == map) {
            map = new HashMap<>();
            withProperties.put(locale, map);
        }
        if (map.size() < eligibleEnumSize) {
            populateWithProperties(map, locale);
        }
        return map;
    }

    private void populateWithoutProperties(Map> withoutProperties, Locale locale) {
        for (Map.Entry> entry: eligibleEnums.entrySet()) {
            String key = entry.getKey();
            if (!withoutProperties.containsKey(key)) {
                Map map = $.cast(I18n.i18n(locale, entry.getValue()));
                withoutProperties.put(Keyword.of(key), map);
            }
        }
    }

    private void populateWithProperties(Map>> withProperties, Locale locale) {
        for (Map.Entry> entry: eligibleEnums.entrySet()) {
            String key = entry.getKey();
            if (!withProperties.containsKey(key)) {
                Map> map = $.cast(I18n.i18n(locale, entry.getValue(), true));
                withProperties.put(Keyword.of(key), map);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy