PrismLauncher/libraries/launcher/org/multimc/utils/ParamBucket.java

79 lines
2.0 KiB
Java
Raw Normal View History

/*
2021-01-18 07:28:54 +00:00
* Copyright 2012-2021 MultiMC Contributors
*
* 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.utils;
import org.multimc.exception.ParameterNotFoundException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
2022-04-24 14:45:01 +01:00
import java.util.Map;
public final class ParamBucket {
2022-04-24 14:45:01 +01:00
private final Map<String, List<String>> paramsMap = new HashMap<>();
public void add(String key, String value) {
List<String> params = paramsMap.get(key);
if (params == null) {
params = new ArrayList<>();
paramsMap.put(key, params);
}
params.add(value);
2018-07-15 13:51:05 +01:00
}
public List<String> all(String key) throws ParameterNotFoundException {
2022-04-24 14:45:01 +01:00
List<String> params = paramsMap.get(key);
if (params == null)
throw new ParameterNotFoundException(key);
2022-04-24 14:45:01 +01:00
return params;
2018-07-15 13:51:05 +01:00
}
public List<String> allSafe(String key, List<String> def) {
2022-04-24 14:45:01 +01:00
List<String> params = paramsMap.get(key);
if (params == null || params.isEmpty())
2018-07-15 13:51:05 +01:00
return def;
2022-04-24 14:45:01 +01:00
return params;
2018-07-15 13:51:05 +01:00
}
public String first(String key) throws ParameterNotFoundException {
2018-07-15 13:51:05 +01:00
List<String> list = all(key);
2022-04-24 14:45:01 +01:00
if (list.isEmpty())
throw new ParameterNotFoundException(key);
2022-04-24 14:45:01 +01:00
2018-07-15 13:51:05 +01:00
return list.get(0);
}
public String firstSafe(String key, String def) {
2022-04-24 14:45:01 +01:00
List<String> params = paramsMap.get(key);
if (params == null || params.isEmpty())
2018-07-15 13:51:05 +01:00
return def;
2022-04-24 14:45:01 +01:00
return params.get(0);
2018-07-15 13:51:05 +01:00
}
}