123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638 |
- /*
- * 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, 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 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 <http://www.gnu.org/licenses/>.
- */
- 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;
- /**
- * @author mkizub <BR>
- * This class is used in order to have a set of couples (key,value).<BR>
- * Methods deployed are accessors to the set (add/get value from its key) and addition of a whole set in the current one.
- */
- public final class StatsSet
- {
- private static final Logger _log = Logger.getLogger(StatsSet.class.getName());
- private final Map<String, Object> _set;
-
- public StatsSet()
- {
- this(new FastMap<String, Object>());
- }
-
- public StatsSet(Map<String, Object> map)
- {
- _set = map;
- }
-
- /**
- * Returns the set of values
- * @return HashMap
- */
- public final Map<String, Object> 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<String, Object> newMap = newSet.getSet();
- for (Entry<String, Object> entry : newMap.entrySet())
- {
- _set.put(entry.getKey(), entry.getValue());
- }
- }
-
- /**
- * Return the boolean associated to the key put in parameter ("name")
- * @param name : String designating the key in the set
- * @return boolean : value associated to the key
- */
- public boolean getBool(String name)
- {
- Object val = _set.get(name);
- 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 associated to the key put in parameter ("name"). If the value associated to the key is null, this method returns the value of the parameter deflt.
- * @param name : String designating the key in the set
- * @param deflt : boolean designating the default value if value associated with the key is null
- * @return boolean : value of the key
- */
- public boolean getBool(String name, boolean deflt)
- {
- Object val = _set.get(name);
- if (val == null)
- return deflt;
- 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);
- }
- }
-
- /**
- * Returns the int associated to the key put in parameter ("name"). If the value associated to the key is null, this method returns the value of the parameter deflt.
- * @param name : String designating the key in the set
- * @param deflt : byte designating the default value if value associated with the key is null
- * @return byte : value associated to the key
- */
- public byte getByte(String name, byte deflt)
- {
- Object val = _set.get(name);
- if (val == null)
- return deflt;
- 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);
- }
- }
-
- /**
- * Returns the byte associated to the key put in parameter ("name").
- * @param name : String designating the key in the set
- * @return byte : value associated to the key
- */
- public byte getByte(String name)
- {
- Object val = _set.get(name);
- 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);
- }
- }
-
- /**
- * Returns the byte[] associated to the key put in parameter ("name"). If the value associated to the key is null, this method returns the value of the parameter deflt.
- * @param name : String designating the key in the set
- * @param splitOn
- * @return byte[] : value associated to the key
- */
- public byte[] getByteArray(String name, String splitOn)
- {
- Object val = _set.get(name);
- 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<Byte> getByteList(String name, String splitOn)
- {
- List<Byte> result = new ArrayList<>();
- for (Byte i : getByteArray(name, splitOn))
- {
- result.add(i);
- }
- return result;
- }
-
- /**
- * Returns the short associated to the key put in parameter ("name"). If the value associated to the key is null, this method returns the value of the parameter deflt.
- * @param name : String designating the key in the set
- * @param deflt : short designating the default value if value associated with the key is null
- * @return short : value associated to the key
- */
- public short getShort(String name, short deflt)
- {
- Object val = _set.get(name);
- if (val == null)
- return deflt;
- 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);
- }
- }
-
- /**
- * Returns the short associated to the key put in parameter ("name").
- * @param name : String designating the key in the set
- * @return short : value associated to the key
- */
- public short getShort(String name)
- {
- Object val = _set.get(name);
- 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);
- }
- }
-
- /**
- * Returns the int associated to the key put in parameter ("name").
- * @param name : String designating the key in the set
- * @return int : value associated to the key
- */
- public int getInteger(String name)
- {
- final Object val = _set.get(name);
- if (val == null)
- {
- throw new IllegalArgumentException("Integer value required, but not specified: " + name + "!");
- }
-
- 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 + "!");
- }
- }
-
- /**
- * Returns the int associated to the key put in parameter ("name"). If the value associated to the key is null, this method returns the value of the parameter deflt.
- * @param name : String designating the key in the set
- * @param deflt : int designating the default value if value associated with the key is null
- * @return int : value associated to the key
- */
- public int getInteger(String name, int deflt)
- {
- Object val = _set.get(name);
- if (val == null)
- return deflt;
- 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);
- }
- }
-
- /**
- * Returns the int[] associated to the key put in parameter ("name"). If the value associated to the key is null, this method returns the value of the parameter deflt.
- * @param name : String designating the key in the set
- * @param splitOn
- * @return int[] : value associated to the key
- */
- public int[] getIntegerArray(String name, String splitOn)
- {
- Object val = _set.get(name);
- 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<Integer> getIntegerList(String name, String splitOn)
- {
- List<Integer> result = new ArrayList<>();
- for (int i : getIntegerArray(name, splitOn))
- {
- result.add(i);
- }
- return result;
- }
-
- /**
- * Returns the long associated to the key put in parameter ("name").
- * @param name : String designating the key in the set
- * @return long : value associated to the key
- */
- public long getLong(String name)
- {
- Object val = _set.get(name);
- 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);
- }
- }
-
- /**
- * Returns the long associated to the key put in parameter ("name"). If the value associated to the key is null, this method returns the value of the parameter deflt.
- * @param name : String designating the key in the set
- * @param deflt : long designating the default value if value associated with the key is null
- * @return long : value associated to the key
- */
- public long getLong(String name, int deflt)
- {
- Object val = _set.get(name);
- if (val == null)
- return deflt;
- 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);
- }
- }
-
- /**
- * Returns the float associated to the key put in parameter ("name").
- * @param name : String designating the key in the set
- * @return float : value associated to the key
- */
- public float getFloat(String name)
- {
- Object val = _set.get(name);
- 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);
- }
- }
-
- /**
- * Returns the float associated to the key put in parameter ("name"). If the value associated to the key is null, this method returns the value of the parameter deflt.
- * @param name : String designating the key in the set
- * @param deflt : float designating the default value if value associated with the key is null
- * @return float : value associated to the key
- */
- public float getFloat(String name, float deflt)
- {
- Object val = _set.get(name);
- if (val == null)
- return deflt;
- 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);
- }
- }
-
- /**
- * Returns the double associated to the key put in parameter ("name").
- * @param name : String designating the key in the set
- * @return double : value associated to the key
- */
- public double getDouble(String name)
- {
- Object val = _set.get(name);
- 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);
- }
- }
-
- /**
- * Returns the double associated to the key put in parameter ("name"). If the value associated to the key is null, this method returns the value of the parameter deflt.
- * @param name : String designating the key in the set
- * @param deflt : float designating the default value if value associated with the key is null
- * @return double : value associated to the key
- */
- public double getDouble(String name, double deflt)
- {
- Object val = _set.get(name);
- if (val == null)
- return deflt;
- 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);
- }
- }
-
- /**
- * Returns the String associated to the key put in parameter ("name").
- * @param name : String designating the key in the set
- * @return String : value associated to the key
- */
- public String getString(String name)
- {
- Object val = _set.get(name);
- if (val == null)
- throw new IllegalArgumentException("String value required, but not specified");
- return String.valueOf(val);
- }
-
- /**
- * Returns the String associated to the key put in parameter ("name"). If the value associated to the key is null, this method returns the value of the parameter deflt.
- * @param name : String designating the key in the set
- * @param deflt : String designating the default value if value associated with the key is null
- * @return String : value associated to the key
- */
- public String getString(String name, String deflt)
- {
- Object val = _set.get(name);
- if (val == null)
- return deflt;
- return String.valueOf(val);
- }
-
- /**
- * Returns an enumeration of <T> from the set
- * @param <T> : Class of the enumeration returned
- * @param name : String designating the key in the set
- * @param enumClass : Class designating the class of the value associated with the key in the set
- * @return Enum<T>
- */
- @SuppressWarnings("unchecked")
- public <T extends Enum<T>> T getEnum(String name, Class<T> enumClass)
- {
- Object val = _set.get(name);
- 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);
- }
- }
-
- /**
- * Returns an enumeration of <T> from the set. If the enumeration is empty, the method returns the value of the parameter "deflt".
- * @param <T> : Class of the enumeration returned
- * @param name : String designating the key in the set
- * @param enumClass : Class designating the class of the value associated with the key in the set
- * @param deflt : <T> designating the value by default
- * @return Enum<T>
- */
- @SuppressWarnings("unchecked")
- public <T extends Enum<T>> T getEnum(String name, Class<T> enumClass, T deflt)
- {
- Object val = _set.get(name);
- if (val == null)
- return deflt;
- 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);
- }
- }
-
- /**
- * Add the String hold in param "value" for the key "name"
- * @param name : String designating the key in the set
- * @param value : String corresponding to the value associated with the key
- */
- public void set(String name, String value)
- {
- _set.put(name, value);
- }
-
- /**
- * Add the boolean hold in param "value" for the key "name"
- * @param name : String designating the key in the set
- * @param value : boolean corresponding to the value associated with the key
- */
- public void set(String name, boolean value)
- {
- _set.put(name, value);
- }
-
- /**
- * Add the int hold in param "value" for the key "name"
- * @param name : String designating the key in the set
- * @param value : int corresponding to the value associated with the key
- */
- public void set(String name, int value)
- {
- _set.put(name, value);
- }
-
- /**
- * Safe version of "set". Expected values are within [min, max[<br>
- * Add the int hold in param "value" for the key "name".
- * @param name : String designating the key in the set
- * @param value : int corresponding to the value associated with the key
- * @param min
- * @param max
- * @param reference
- */
- public void safeSet(String name, 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: " + name + "Ref: " + reference);
- }
-
- set(name, value);
- }
-
- /**
- * Add the double hold in param "value" for the key "name"
- * @param name : String designating the key in the set
- * @param value : double corresponding to the value associated with the key
- */
- public void set(String name, double value)
- {
- _set.put(name, value);
- }
-
- /**
- * Add the long hold in param "value" for the key "name"
- * @param name : String designating the key in the set
- * @param value : double corresponding to the value associated with the key
- */
- public void set(String name, long value)
- {
- _set.put(name, value);
- }
-
- /**
- * Add the Enum hold in param "value" for the key "name"
- * @param name : String designating the key in the set
- * @param value : Enum corresponding to the value associated with the key
- */
- public void set(String name, Enum<?> value)
- {
- _set.put(name, value);
- }
- }
|