/* * Copyright (C) 2003-2011 eXo Platform SAS. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.etk.common.utils; import java.io.IOException; import java.io.PrintStream; import java.io.PrintWriter; import java.util.Collections; import java.util.Enumeration; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Properties; import org.etk.common.io.unsync.UnsyncByteArrayInputStream; import org.etk.common.io.unsync.UnsyncByteArrayOutputStream; /** * Created by The eXo Platform SAS * Author : eXoPlatform * thanhvucong.78@google.com * Aug 4, 2011 */ public class PropertiesUtil { public static void copyProperties( Properties sourceProperties, Properties targetProperties) { for (Map.Entry<Object, Object> entry : sourceProperties.entrySet()) { String key = (String)entry.getKey(); String value = (String)entry.getValue(); targetProperties.setProperty(key, value); } } public static Properties fromMap(Map<String, String> map) { Properties properties = new Properties(); Iterator<Map.Entry<String, String>> itr = map.entrySet().iterator(); while (itr.hasNext()) { Map.Entry<String, String> entry = itr.next(); String key = entry.getKey(); String value = entry.getValue(); if (value != null) { properties.setProperty(key, value); } } return properties; } public static Properties fromMap(Properties properties) { return properties; } public static void fromProperties( Properties properties, Map<String, String> map) { map.clear(); Iterator<Map.Entry<Object, Object>> itr = properties.entrySet().iterator(); while (itr.hasNext()) { Map.Entry<Object, Object> entry = itr.next(); map.put((String)entry.getKey(), (String)entry.getValue()); } } public static Properties getProperties( Properties properties, String prefix, boolean removePrefix) { Properties subProperties = new Properties(); Enumeration<String> enu = (Enumeration<String>)properties.propertyNames(); while (enu.hasMoreElements()) { String key = enu.nextElement(); if (key.startsWith(prefix)) { String value = properties.getProperty(key); if (removePrefix) { key = key.substring(prefix.length()); } subProperties.setProperty(key, value); } } return subProperties; } public static String list(Map<String, String> map) { Properties properties = fromMap(map); return list(properties); } public static void list(Map<String, String> map, PrintStream printWriter) { Properties properties = fromMap(map); properties.list(printWriter); } public static void list(Map<String, String> map, PrintWriter printWriter) { Properties properties = fromMap(map); properties.list(printWriter); } public static String list(Properties properties) { UnsyncByteArrayOutputStream unsyncByteArrayOutputStream = new UnsyncByteArrayOutputStream(); PrintStream printStream = new PrintStream(unsyncByteArrayOutputStream); properties.list(printStream); return unsyncByteArrayOutputStream.toString(); } public static void load(Properties properties, String s) throws IOException { if (Validator.isNotNull(s)) { s = UnicodeFormatter.toString(s); s = StringUtil.replace(s, "\\u003d", "="); s = StringUtil.replace(s, "\\u000a", "\n"); s = StringUtil.replace(s, "\\u0021", "!"); s = StringUtil.replace(s, "\\u0023", "#"); s = StringUtil.replace(s, "\\u0020", " "); s = StringUtil.replace(s, "\\u005c", "\\"); properties.load(new UnsyncByteArrayInputStream(s.getBytes())); List<String> propertyNames = Collections.list( (Enumeration<String>)properties.propertyNames()); for (int i = 0; i < propertyNames.size(); i++) { String key = propertyNames.get(i); String value = properties.getProperty(key); // Trim values because it may leave a trailing \r in certain // Windows environments. This is a known case for loading SQL // scripts in SQL Server. if (value != null) { value = value.trim(); properties.setProperty(key, value); } } } } public static Properties load(String s) throws IOException { Properties p = new Properties(); load(p, s); return p; } public static void merge(Properties properties1, Properties properties2) { Enumeration<String> enu = (Enumeration<String>)properties2.propertyNames(); while (enu.hasMoreElements()) { String key = enu.nextElement(); String value = properties2.getProperty(key); properties1.setProperty(key, value); } } public static String toString(Properties properties) { SafeProperties safeProperties = null; if (properties instanceof SafeProperties) { safeProperties = (SafeProperties)properties; } StringBundler sb = null; if (properties.isEmpty()) { sb = new StringBundler(); } else { sb = new StringBundler(properties.size() * 4); } Enumeration<String> enu = (Enumeration<String>)properties.propertyNames(); while (enu.hasMoreElements()) { String key = enu.nextElement(); sb.append(key); sb.append(StringPool.EQUAL); if (safeProperties != null) { sb.append(safeProperties.getEncodedProperty(key)); } else { sb.append(properties.getProperty(key)); } sb.append(StringPool.NEW_LINE); } return sb.toString(); } public static void trimKeys(Properties properties) { Enumeration<String> enu = (Enumeration<String>)properties.propertyNames(); while (enu.hasMoreElements()) { String key = enu.nextElement(); String value = properties.getProperty(key); String trimmedKey = key.trim(); if (!key.equals(trimmedKey)) { properties.remove(key); properties.setProperty(trimmedKey, value); } } } }