![JAR search and dependency download from the Maven repository](/logo.png)
org.ini4j.CommonMultiMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of izpack-ini4j Show documentation
Show all versions of izpack-ini4j Show documentation
Java API for handling configuration files in Windows .ini format. The library includes its own Map
based API, Java Preferences API and Java Beans API for handling .ini files. Additionally, the library includes a
feature rich (variable/macro substitution, multiply property values, etc) java.util.Properties replacement.
The newest version!
/*
* Copyright 2005,2009 Ivan SZKIBA
*
* 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 org.ini4j;
import java.util.Map;
import java.util.SortedMap;
import java.util.TreeMap;
public class CommonMultiMap extends BasicMultiMap implements CommentedMap
{
private static final long serialVersionUID = 3012579878005541746L;
private static final String SEPARATOR = ";#;";
private static final String FIRST_CATEGORY = "";
private static final String LAST_CATEGORY = "zzzzzzzzzzzzzzzzzzzzzz";
private static final String META_COMMENT = "comment";
private static final String META_NEWLINE_COUNT = "newline";
private SortedMap _meta;
@Override public String getComment(Object key)
{
return (String) getMeta(META_COMMENT, key);
}
@Override public int getNewLineCount(Object key)
{
Integer emptyLines = (Integer) getMeta(META_NEWLINE_COUNT, key);
return emptyLines==null ? 0 : emptyLines.intValue();
}
@Override public void clear()
{
super.clear();
if (_meta != null)
{
_meta.clear();
}
}
@SuppressWarnings("unchecked")
@Override public void putAll(Map extends K, ? extends V> map)
{
super.putAll(map);
if (map instanceof CommonMultiMap)
{
@SuppressWarnings("rawtypes")
Map meta = ((CommonMultiMap) map)._meta;
if (meta != null)
{
meta().putAll(meta);
}
}
}
@Override public String putComment(K key, String comment)
{
return (String) putMeta(META_COMMENT, key, comment);
}
@Override public Integer addEmptyLine(K key)
{
Integer newLines = (Integer) getMeta(META_NEWLINE_COUNT, key);
if (newLines == null)
{
newLines = Integer.valueOf(0);
}
return (Integer) putMeta(META_NEWLINE_COUNT, key, Integer.valueOf(newLines.intValue()+1));
}
@Override public V remove(Object key)
{
V ret = super.remove(key);
removeMeta(key);
return ret;
}
@Override public V remove(Object key, int index)
{
V ret = super.remove(key, index);
if (length(key) == 0)
{
removeMeta(key);
}
return ret;
}
@Override public String removeComment(Object key)
{
return (String) removeMeta(META_COMMENT, key);
}
Object getMeta(String category, Object key)
{
return (_meta == null) ? null : _meta.get(makeKey(category, key));
}
Object putMeta(String category, K key, Object value)
{
return meta().put(makeKey(category, key), value);
}
void removeMeta(Object key)
{
if (_meta != null)
{
_meta.subMap(makeKey(FIRST_CATEGORY, key), makeKey(LAST_CATEGORY, key)).clear();
}
}
Object removeMeta(String category, Object key)
{
return (_meta == null) ? null : _meta.remove(makeKey(category, key));
}
private String makeKey(String category, Object key)
{
StringBuilder buff = new StringBuilder();
buff.append(String.valueOf(key));
buff.append(SEPARATOR);
buff.append(category);
return buff.toString();
}
private Map meta()
{
if (_meta == null)
{
_meta = new TreeMap();
}
return _meta;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy