2014-01-09 05:52:34 +05:30
|
|
|
/*
|
2021-01-18 12:58:54 +05:30
|
|
|
* Copyright 2012-2021 MultiMC Contributors
|
2014-01-09 05:52:34 +05:30
|
|
|
*
|
|
|
|
* 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.multimc;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.List;
|
2022-04-24 19:15:01 +05:30
|
|
|
import java.util.Map;
|
2014-01-09 05:52:34 +05:30
|
|
|
|
|
|
|
public class ParamBucket
|
|
|
|
{
|
2022-04-24 19:15:01 +05:30
|
|
|
|
|
|
|
private final Map<String, List<String>> paramsMap = new HashMap<>();
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
public void add(String key, String value)
|
|
|
|
{
|
2022-04-24 19:15:01 +05:30
|
|
|
paramsMap.computeIfAbsent(key, k -> new ArrayList<>())
|
|
|
|
.add(value);
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2014-01-09 05:52:34 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
public List<String> all(String key) throws NotFoundException
|
|
|
|
{
|
2022-04-24 19:15:01 +05:30
|
|
|
List<String> params = paramsMap.get(key);
|
|
|
|
|
|
|
|
if (params == null)
|
2018-07-15 18:21:05 +05:30
|
|
|
throw new NotFoundException();
|
2022-04-24 19:15:01 +05:30
|
|
|
|
|
|
|
return params;
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2014-01-09 05:52:34 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
public List<String> allSafe(String key, List<String> def)
|
|
|
|
{
|
2022-04-24 19:15:01 +05:30
|
|
|
List<String> params = paramsMap.get(key);
|
|
|
|
|
|
|
|
if (params == null || params.isEmpty())
|
2018-07-15 18:21:05 +05:30
|
|
|
return def;
|
2022-04-24 19:15:01 +05:30
|
|
|
|
|
|
|
return params;
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2014-01-09 05:52:34 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
public List<String> allSafe(String key)
|
|
|
|
{
|
2022-04-24 19:15:01 +05:30
|
|
|
return allSafe(key, new ArrayList<>());
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2014-01-09 05:52:34 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
public String first(String key) throws NotFoundException
|
|
|
|
{
|
|
|
|
List<String> list = all(key);
|
2022-04-24 19:15:01 +05:30
|
|
|
|
|
|
|
if (list.isEmpty())
|
2018-07-15 18:21:05 +05:30
|
|
|
throw new NotFoundException();
|
2022-04-24 19:15:01 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
return list.get(0);
|
|
|
|
}
|
2014-01-09 05:52:34 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
public String firstSafe(String key, String def)
|
|
|
|
{
|
2022-04-24 19:15:01 +05:30
|
|
|
List<String> params = paramsMap.get(key);
|
|
|
|
|
|
|
|
if (params == null || params.isEmpty())
|
2018-07-15 18:21:05 +05:30
|
|
|
return def;
|
2022-04-24 19:15:01 +05:30
|
|
|
|
|
|
|
return params.get(0);
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2014-01-09 05:52:34 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
public String firstSafe(String key)
|
|
|
|
{
|
|
|
|
return firstSafe(key, "");
|
|
|
|
}
|
2014-01-09 05:52:34 +05:30
|
|
|
|
|
|
|
}
|