/* * Copyright (C) 2004-2013 L2J Server * * This file is part of L2J Server. * * L2J Server 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, either version 3 of the License, or * (at your option) any later version. * * L2J Server 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 com.l2jserver.gameserver.model; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.logging.Level; import java.util.logging.Logger; import javolution.util.FastMap; import com.l2jserver.gameserver.model.interfaces.IParserAdvUtils; /** * This class is meant to hold a set of (key,value) pairs.
* They are stored as object but can be retrieved in any type wanted. As long as cast is available.
* @author mkizub */ public class StatsSet implements IParserAdvUtils { private static final Logger _log = Logger.getLogger(StatsSet.class.getName()); private final Map _set; public StatsSet() { this(new FastMap()); } public StatsSet(Map map) { _set = map; } /** * Returns the set of values * @return HashMap */ public final Map getSet() { return _set; } /** * Add a set of couple values in the current set * @param newSet : StatsSet pointing out the list of couples to add in the current set */ public void add(StatsSet newSet) { Map newMap = newSet.getSet(); for (Entry entry : newMap.entrySet()) { _set.put(entry.getKey(), entry.getValue()); } } /** * Return the boolean value associated with key. * @param key : String designating the key in the set * @return boolean : value associated to the key * @throws IllegalArgumentException : If value is not set or value is not boolean */ @Override public boolean getBoolean(String key) { Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("Boolean value required, but not specified"); } if (val instanceof Boolean) { return ((Boolean) val).booleanValue(); } try { return Boolean.parseBoolean((String) val); } catch (Exception e) { throw new IllegalArgumentException("Boolean value required, but found: " + val); } } /** * Return the boolean value associated with key.
* If no value is associated with key, or type of value is wrong, returns defaultValue. * @param key : String designating the key in the entry set * @return boolean : value associated to the key */ @Override public boolean getBoolean(String key, boolean defaultValue) { Object val = _set.get(key); if (val == null) { return defaultValue; } if (val instanceof Boolean) { return ((Boolean) val).booleanValue(); } try { return Boolean.parseBoolean((String) val); } catch (Exception e) { return defaultValue; } } @Override public byte getByte(String key) { Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("Byte value required, but not specified"); } if (val instanceof Number) { return ((Number) val).byteValue(); } try { return Byte.parseByte((String) val); } catch (Exception e) { throw new IllegalArgumentException("Byte value required, but found: " + val); } } @Override public byte getByte(String key, byte defaultValue) { Object val = _set.get(key); if (val == null) { return defaultValue; } if (val instanceof Number) { return ((Number) val).byteValue(); } try { return Byte.parseByte((String) val); } catch (Exception e) { throw new IllegalArgumentException("Byte value required, but found: " + val); } } public byte[] getByteArray(String key, String splitOn) { Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("Byte value required, but not specified"); } if (val instanceof Number) { byte[] result = { ((Number) val).byteValue() }; return result; } int c = 0; String[] vals = ((String) val).split(splitOn); byte[] result = new byte[vals.length]; for (String v : vals) { try { result[c++] = Byte.parseByte(v); } catch (Exception e) { throw new IllegalArgumentException("Byte value required, but found: " + val); } } return result; } public List getByteList(String key, String splitOn) { List result = new ArrayList<>(); for (Byte i : getByteArray(key, splitOn)) { result.add(i); } return result; } @Override public short getShort(String key) { Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("Short value required, but not specified"); } if (val instanceof Number) { return ((Number) val).shortValue(); } try { return Short.parseShort((String) val); } catch (Exception e) { throw new IllegalArgumentException("Short value required, but found: " + val); } } @Override public short getShort(String key, short defaultValue) { Object val = _set.get(key); if (val == null) { return defaultValue; } if (val instanceof Number) { return ((Number) val).shortValue(); } try { return Short.parseShort((String) val); } catch (Exception e) { throw new IllegalArgumentException("Short value required, but found: " + val); } } @Override public int getInt(String key) { final Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("Integer value required, but not specified: " + key + "!"); } if (val instanceof Number) { return ((Number) val).intValue(); } try { return Integer.parseInt((String) val); } catch (Exception e) { throw new IllegalArgumentException("Integer value required, but found: " + val + "!"); } } @Override public int getInt(String key, int defaultValue) { Object val = _set.get(key); if (val == null) { return defaultValue; } if (val instanceof Number) { return ((Number) val).intValue(); } try { return Integer.parseInt((String) val); } catch (Exception e) { throw new IllegalArgumentException("Integer value required, but found: " + val); } } public int[] getIntArray(String key, String splitOn) { Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("Integer value required, but not specified"); } if (val instanceof Number) { int[] result = { ((Number) val).intValue() }; return result; } int c = 0; String[] vals = ((String) val).split(splitOn); int[] result = new int[vals.length]; for (String v : vals) { try { result[c++] = Integer.parseInt(v); } catch (Exception e) { throw new IllegalArgumentException("Integer value required, but found: " + val); } } return result; } public List getIntegerList(String key, String splitOn) { List result = new ArrayList<>(); for (int i : getIntArray(key, splitOn)) { result.add(i); } return result; } @Override public long getLong(String key) { Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("Integer value required, but not specified"); } if (val instanceof Number) { return ((Number) val).longValue(); } try { return Long.parseLong((String) val); } catch (Exception e) { throw new IllegalArgumentException("Integer value required, but found: " + val); } } @Override public long getLong(String key, long defaultValue) { Object val = _set.get(key); if (val == null) { return defaultValue; } if (val instanceof Number) { return ((Number) val).longValue(); } try { return Long.parseLong((String) val); } catch (Exception e) { throw new IllegalArgumentException("Integer value required, but found: " + val); } } @Override public float getFloat(String key) { Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("Float value required, but not specified"); } if (val instanceof Number) { return ((Number) val).floatValue(); } try { return (float) Double.parseDouble((String) val); } catch (Exception e) { throw new IllegalArgumentException("Float value required, but found: " + val); } } @Override public float getFloat(String key, float defaultValue) { Object val = _set.get(key); if (val == null) { return defaultValue; } if (val instanceof Number) { return ((Number) val).floatValue(); } try { return (float) Double.parseDouble((String) val); } catch (Exception e) { throw new IllegalArgumentException("Float value required, but found: " + val); } } @Override public double getDouble(String key) { Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("Float value required, but not specified"); } if (val instanceof Number) { return ((Number) val).doubleValue(); } try { return Double.parseDouble((String) val); } catch (Exception e) { throw new IllegalArgumentException("Float value required, but found: " + val); } } @Override public double getDouble(String key, double defaultValue) { Object val = _set.get(key); if (val == null) { return defaultValue; } if (val instanceof Number) { return ((Number) val).doubleValue(); } try { return Double.parseDouble((String) val); } catch (Exception e) { throw new IllegalArgumentException("Float value required, but found: " + val); } } @Override public String getString(String key) { Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("String value required, but not specified"); } return String.valueOf(val); } @Override public String getString(String key, String defaultValue) { Object val = _set.get(key); if (val == null) { return defaultValue; } return String.valueOf(val); } @Override @SuppressWarnings("unchecked") public > T getEnum(String key, Class enumClass) { Object val = _set.get(key); if (val == null) { throw new IllegalArgumentException("Enum value of type " + enumClass.getName() + " required, but not specified"); } if (enumClass.isInstance(val)) { return (T) val; } try { return Enum.valueOf(enumClass, String.valueOf(val)); } catch (Exception e) { throw new IllegalArgumentException("Enum value of type " + enumClass.getName() + " required, but found: " + val); } } @Override @SuppressWarnings("unchecked") public > T getEnum(String key, Class enumClass, T defaultValue) { Object val = _set.get(key); if (val == null) { return defaultValue; } if (enumClass.isInstance(val)) { return (T) val; } try { return Enum.valueOf(enumClass, String.valueOf(val)); } catch (Exception e) { throw new IllegalArgumentException("Enum value of type " + enumClass.getName() + " required, but found: " + val); } } public void set(String name, Object value) { _set.put(name, value); } public void set(String key, boolean value) { _set.put(key, value); } public void set(String key, byte value) { _set.put(key, value); } public void set(String key, short value) { _set.put(key, value); } public void set(String key, int value) { _set.put(key, value); } public void set(String key, long value) { _set.put(key, value); } public void set(String key, float value) { _set.put(key, value); } public void set(String key, double value) { _set.put(key, value); } public void set(String key, String value) { _set.put(key, value); } public void set(String key, Enum value) { _set.put(key, value); } public void safeSet(String key, int value, int min, int max, String reference) { assert !(((min <= max) && ((value < min) || (value >= max)))); if ((min <= max) && ((value < min) || (value >= max))) { _log.log(Level.SEVERE, "Incorrect value: " + value + "for: " + key + "Ref: " + reference); } set(key, value); } @SuppressWarnings("unchecked") public final A getObject(String name, Class type) { Object obj = _set.get(name); if ((obj == null) || !type.isAssignableFrom(obj.getClass())) { return null; } return (A) obj; } }