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

io.inugami.commons.messages.MessagesServices Maven / Gradle / Ivy

There is a newer version: 3.3.5
Show newest version
/* --------------------------------------------------------------------
 *  Inugami  
 * --------------------------------------------------------------------
 * 
 * This program is free software: you can redistribute it and/or modify  
 * it under the terms of the GNU General Public License as published by  
 * the Free Software Foundation, version 3.
 *
 * This program is distributed in the hope that it will be useful, but 
 * WITHOUT ANY WARRANTY; without even the implied warranty of 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License 
 * along with this program. If not, see .
 */
package io.inugami.commons.messages;

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import io.inugami.api.exceptions.FatalException;
import io.inugami.api.loggers.Loggers;
import io.inugami.commons.files.FilesUtils;

import flexjson.JSONSerializer;

/**
 * MessagesRegisterServices
 * 
 * @author patrick_guillerm
 * @since 22 mars 2018
 */
public final class MessagesServices {
    
    // =========================================================================
    // ATTRIBUTES
    // =========================================================================
    private static final String                           DEFAULT_LOCALE = "default";
    
    private static String                                 json           = null;
    
    private final static Map> MESSAGES       = new ConcurrentHashMap<>();
    
    // =========================================================================
    // CONSTRUCTORS
    // =========================================================================
    private MessagesServices() {
    }
    
    // =========================================================================
    // GET MESSAGE
    // =========================================================================
    public static String getMessage(final String key) {
        String reuslt = null;
        for (final Map.Entry> entry : MESSAGES.entrySet()) {
            reuslt = entry.getValue().get(key);
            if (reuslt != null) {
                break;
            }
        }
        return reuslt == null ? key : reuslt;
    }
    
    public static String getMessage(final String key, final String locale) {
        String result = null;
        if (MESSAGES.containsKey(locale)) {
            result = MESSAGES.get(locale).get(key);
        }
        else {
            result = MESSAGES.get(DEFAULT_LOCALE).get(key);
        }
        return result == null ? key : result;
    }
    
    // =========================================================================
    // REGISTER
    // =========================================================================
    public synchronized static void registerConfig(final Map properties) {
        if (properties != null) {
            final String currentLocale = initLocale(null);
            MESSAGES.get(currentLocale).putAll(properties);
            updateJson();
        }
    }
    
    public synchronized static void register(final Map> properties) {
        if (properties != null) {
            for (final Map.Entry> entry : properties.entrySet()) {
                final String currentLocale = initLocale(entry.getKey());
                MESSAGES.get(currentLocale).putAll(entry.getValue());
            }
            updateJson();
        }
    }
    
    public static void registerFromClassloader(final String path) {
        registerFromClassloader(path, DEFAULT_LOCALE);
    }
    
    public synchronized static void registerFromClassloader(final String path, final String locale) {
        if (path != null) {
            Map properties = null;
            try {
                properties = FilesUtils.readPropertiesInClassLoader(path);
            }
            catch (final FatalException e) {
                Loggers.DEBUG.warn(e.getMessage());
            }
            
            if (properties != null) {
                final String currentLocale = initLocale(locale);
                MESSAGES.get(currentLocale).putAll(properties);
                updateJson();
            }
        }
    }
    
    public static void registerMessage(final String key, final String message) {
        registerMessage(key, message, DEFAULT_LOCALE);
    }
    
    public synchronized static void registerMessage(final String key, final String message, final String locale) {
        if ((key != null) && (message != null)) {
            final String currentLocale = initLocale(locale);
            MESSAGES.get(currentLocale).put(key, message);
            updateJson();
        }
    }
    
    // =========================================================================
    // JSON
    // =========================================================================
    private static void updateJson() {
        json = new JSONSerializer().exclude("*.class").deepSerialize(MESSAGES);
    }
    
    public static String getJson() {
        return json;
    }
    
    // =========================================================================
    // TOOLS
    // =========================================================================
    public static String initLocale() {
        return initLocale(null);
    }
    
    public static String initLocale(final String locale) {
        final String currentLocale = locale == null ? DEFAULT_LOCALE : locale;
        if (!MESSAGES.containsKey(currentLocale)) {
            MESSAGES.put(currentLocale, new HashMap<>());
        }
        
        return currentLocale;
    }
    
    public static void registerFrontProperties(final Map frontProperties) {
        if (frontProperties != null) {
            if (MESSAGES.containsKey(DEFAULT_LOCALE)) {
                MESSAGES.put(DEFAULT_LOCALE, frontProperties);
            }
            else {
                MESSAGES.get(DEFAULT_LOCALE).putAll(frontProperties);
            }
        }
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy