blob: 39db56abd5aa4fc4578b582ad20082921fcb5b38 [file] [log] [blame]
/*
* Copyright 2016-present Open Networking Foundation
*
* 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.onosproject.yms.app.ydt;
import com.google.common.collect.ImmutableSet;
import org.onosproject.yangutils.datamodel.YangSchemaNode;
import org.onosproject.yms.app.ydt.exceptions.YdtException;
import java.util.LinkedHashSet;
import java.util.Set;
import static org.onosproject.yms.app.ydt.YdtConstants.errorMsg;
import static org.onosproject.yms.ydt.YdtType.MULTI_INSTANCE_LEAF_VALUE_NODE;
/**
* Represents YDT multi instance leaf node which can hold multiple values, it
* is atomic element and doesn't have any child.
*/
class YdtMultiInstanceLeafNode extends YdtNode {
// ydt formatted error string
private static final String FMT_DUP_ENTRY =
"Duplicate entry found under %s leaf-list node.";
/**
* Set of values.
*/
private final Set<String> valueSet = new LinkedHashSet<>();
/**
* Creates a YANG multi instance leaf node.
*
* @param node schema of YDT multi instance node
*/
YdtMultiInstanceLeafNode(YangSchemaNode node) {
super(MULTI_INSTANCE_LEAF_VALUE_NODE, node);
}
@Override
public Set<String> getValueSet() {
return ImmutableSet.copyOf(valueSet);
}
@Override
public void addValue(String value) throws YdtException {
// check the value against corresponding data-type.
//TODO validation need to be decided
// try {
// getYangSchemaNode().isValueValid(value);
// } catch (Exception e) {
// throw new YdtException(e.getLocalizedMessage());
// }
addValueToValueSet(value);
}
/**
* Adds value in the current node valueSet, after successful validation of
* the value.
*
* @param value value to be added
* @throws YdtException when the duplicate entry found in leaf-list node
*/
private void addValueToValueSet(String value) throws YdtException {
if (!valueSet.add(value)) {
throw new YdtException(errorMsg(FMT_DUP_ENTRY, getName()));
}
}
@Override
public void addValueSet(Set valueSet) throws YdtException {
String value;
// Check the value against corresponding data-type.
for (Object aValueSet : valueSet) {
value = String.valueOf(aValueSet);
//TODO validation need to be decided
// try {
// value = String.valueOf(aValueSet);
// getYangSchemaNode().isValueValid(value);
// } catch (DataModelException e) {
// throw new YdtException(e.getLocalizedMessage());
// }
addValueToValueSet(value);
}
}
@Override
public void addValueWithoutValidation(String value, boolean isKeyLeaf) {
valueSet.add(value);
}
@Override
public void addValueSetWithoutValidation(Set valueSet) {
this.valueSet.clear();
this.valueSet.addAll(valueSet);
}
}