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

com.liferay.portal.kernel.util.UnicodeProperties Maven / Gradle / Ivy

Go to download

Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.

There is a newer version: 7.0.0-nightly
Show newest version
/**
 * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library 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 Lesser General Public License for more
 * details.
 */

package com.liferay.portal.kernel.util;

import com.liferay.portal.kernel.io.unsync.UnsyncBufferedReader;
import com.liferay.portal.kernel.io.unsync.UnsyncStringReader;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;

import java.io.IOException;

import java.util.HashMap;
import java.util.Set;
import java.util.TreeSet;

/**
 * 

* This is a rewrite of java.util.Properties that is not synchronized and * natively supports non-ASCII encodings. It can also be configured to be * "safe", allowing the values to have new line characters. When stored to a * given BufferedWriter, "safe" properties will replace all new line characters * with a _SAFE_NEWLINE_CHARACTER_. *

* *

* In its current form, this is not intended to replace java.util.Properties for * reading properties flat files. This class is not thread-safe. *

* * @author Alexander Chow */ public class UnicodeProperties extends HashMap { public UnicodeProperties() { super(); } public UnicodeProperties(boolean safe) { super(); _safe = safe; } public void fastLoad(String props) { if (Validator.isNull(props)) { return; } int x = props.indexOf(CharPool.NEW_LINE); int y = 0; while (x != -1) { put(props.substring(y, x)); y = x; x = props.indexOf(CharPool.NEW_LINE, y + 1); } put(props.substring(y)); } public String getProperty(String key) { return get(key); } public String getProperty(String key, String defaultValue) { String value = getProperty(key); if (value == null) { return defaultValue; } else { return value; } } public boolean isSafe() { return _safe; } public void load(String props) throws IOException { if (Validator.isNull(props)) { return; } UnsyncBufferedReader unsyncBufferedReader = null; try { unsyncBufferedReader = new UnsyncBufferedReader( new UnsyncStringReader(props)); String line = unsyncBufferedReader.readLine(); while (line != null) { put(line); line = unsyncBufferedReader.readLine(); } } finally { if (unsyncBufferedReader != null) { try { unsyncBufferedReader.close(); } catch (Exception e) { } } } } public void put(String line) { line = line.trim(); if (!_isComment(line)) { int pos = line.indexOf(CharPool.EQUAL); if (pos != -1) { String key = line.substring(0, pos).trim(); String value = line.substring(pos + 1).trim(); if (_safe) { value = _decode(value); } setProperty(key, value); } else { _log.error("Invalid property on line " + line); } } } @Override public String put(String key, String value) { if (key == null) { return null; } if (value == null) { return remove(key); } _length += key.length() + value.length() + 2; return super.put(key, value); } @Override public String remove(Object key) { if ((key == null) || !containsKey(key)) { return null; } String keyString = (String)key; String value = super.remove(key); _length -= keyString.length() + value.length() + 2; return value; } public String setProperty(String key, String value) { return put(key, value); } /** * @deprecated As of 7.0.0, replaced by {@link #toString} */ @Deprecated public String toSortedString() { return toString(); } @Override public String toString() { StringBuilder sb = new StringBuilder(_length); Set keys = new TreeSet(keySet()); for (String key : keys) { String value = get(key); if (Validator.isNull(value)) { continue; } if (_safe) { value = _encode(value); } sb.append(key); sb.append(StringPool.EQUAL); sb.append(value); sb.append(StringPool.NEW_LINE); } return sb.toString(); } protected int getToStringLength() { return _length; } private static String _decode(String value) { return StringUtil.replace( value, _SAFE_NEWLINE_CHARACTER, StringPool.NEW_LINE); } private static String _encode(String value) { return StringUtil.replace( value, new String[] { StringPool.RETURN_NEW_LINE, StringPool.NEW_LINE, StringPool.RETURN }, new String[] { _SAFE_NEWLINE_CHARACTER, _SAFE_NEWLINE_CHARACTER, _SAFE_NEWLINE_CHARACTER }); } private boolean _isComment(String line) { return (line.length() == 0) || line.startsWith(StringPool.POUND); } private static final String _SAFE_NEWLINE_CHARACTER = "_SAFE_NEWLINE_CHARACTER_"; private static Log _log = LogFactoryUtil.getLog(UnicodeProperties.class); private int _length; private boolean _safe = false; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy