com.astamuse.asta4d.util.i18n.LocalizeUtil.java Source code

Java tutorial

Introduction

Here is the source code for com.astamuse.asta4d.util.i18n.LocalizeUtil.java

Source

/*
 * Copyright 2012 astamuse company,Ltd.
 * 
 * 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 com.astamuse.asta4d.util.i18n;

import java.util.ArrayList;
import java.util.List;
import java.util.Locale;

import org.apache.commons.lang3.LocaleUtils;
import org.apache.commons.lang3.StringUtils;

import com.astamuse.asta4d.Context;

public class LocalizeUtil {

    public static String[] getCandidatePaths(String path, Locale locale) {
        int dotIndex = path.lastIndexOf(".");
        String name = dotIndex > 0 ? path.substring(0, dotIndex) : path;
        String extension = dotIndex > 0 ? path.substring(dotIndex) : StringUtils.EMPTY;
        List<String> candidatePathList = new ArrayList<>();
        if (!StringUtils.isEmpty(locale.getVariant())) {
            candidatePathList.add(name + '_' + locale.getLanguage() + "_" + locale.getCountry() + "_"
                    + locale.getVariant() + extension);
        }
        if (!StringUtils.isEmpty(locale.getCountry())) {
            candidatePathList.add(name + '_' + locale.getLanguage() + "_" + locale.getCountry() + extension);
        }
        if (!StringUtils.isEmpty(locale.getLanguage())) {
            candidatePathList.add(name + '_' + locale.getLanguage() + extension);
        }
        candidatePathList.add(path);
        return candidatePathList.toArray(new String[candidatePathList.size()]);
    }

    public static String createLocalizedKey(String str, Locale locale) {
        if (StringUtils.isEmpty(locale.toLanguageTag())) {
            return str;
        }
        return str + "::" + locale.toLanguageTag();
    }

    public static Locale getLocale(String localeStr) {
        if (StringUtils.isEmpty(localeStr)) {
            return null;
        }
        try {
            return LocaleUtils.toLocale(localeStr);
        } catch (IllegalArgumentException e) {
            return null;
        }
    }

    public static final Locale defaultWhenNull(Locale locale) {
        if (locale == null) {
            locale = Context.getCurrentThreadContext().getCurrentLocale();
            if (locale == null) {
                locale = Locale.getDefault();
                if (locale == null) {
                    locale = Locale.ROOT;
                }
            }
        }
        return locale;
    }

    private LocalizeUtil() {
    }
}