com.aspectran.core.util.apon.ArrayParameters Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2019 The Aspectran Project
*
* 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 com.aspectran.core.util.apon;
import com.aspectran.core.lang.NonNull;
import com.aspectran.core.util.ClassUtils;
import com.aspectran.core.util.StringUtils;
import java.io.IOException;
import java.io.Serializable;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
/**
* A Root Parameters to Represent an Array of Nameless Parameters.
*
* @since 6.2.0
*/
public class ArrayParameters extends AbstractParameters
implements Iterable, Serializable {
/** @serial */
private static final long serialVersionUID = 2058392199376865356L;
public static final String NONAME = "";
private final Class extends AbstractParameters> elementClass;
public ArrayParameters() {
this(VariableParameters.class);
}
public ArrayParameters(String text) throws IOException {
this(VariableParameters.class, text);
}
public ArrayParameters(Class extends AbstractParameters> elementClass) {
super(createParameterKeys(elementClass));
this.elementClass = elementClass;
}
public ArrayParameters(Class extends AbstractParameters> elementClass, String text) throws IOException {
this(elementClass);
readFrom(StringUtils.trimWhitespace(text));
}
public void addParameters(Parameters parameters) {
putValue(NONAME, parameters);
}
public T[] getParametersArray() {
return getParametersArray(NONAME);
}
public List getParametersList() {
return getParametersList(NONAME);
}
@Override
@NonNull
public Iterator iterator() {
List list = getParametersList(NONAME);
if (list != null) {
return list.iterator();
} else {
return Collections.emptyIterator();
}
}
@Override
@SuppressWarnings("unchecked")
public T newParameters(String name) {
Parameter p = getParameter(name);
if (p == null) {
throw new UnknownParameterException(name, this);
}
try {
T sub = (T)ClassUtils.createInstance(elementClass);
sub.setProprietor(p);
p.putValue(sub);
return sub;
} catch (Exception e) {
throw new InvalidParameterValueException("Failed to instantiate " + elementClass, e);
}
}
private static ParameterKey[] createParameterKeys(Class extends AbstractParameters> elementClass) {
ParameterKey pk = new ParameterKey(NONAME, elementClass, true);
return new ParameterKey[] { pk };
}
}