blob: 93c379132a8be2a764765de6de3837eef3b9f93d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.iotdb.db.metadata.mnode;
import java.util.Collections;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
public class EntityMNode extends InternalMNode implements IEntityMNode {
/**
* suppress warnings reason: volatile for double synchronized check
*
* <p>This will be a ConcurrentHashMap instance
*/
@SuppressWarnings("squid:S3077")
private transient volatile Map<String, IMeasurementMNode> aliasChildren = null;
private volatile boolean useTemplate = false;
/**
* Constructor of MNode.
*
* @param parent
* @param name
*/
public EntityMNode(IMNode parent, String name) {
super(parent, name);
}
/** check whether the MNode has a child with the name */
@Override
public boolean hasChild(String name) {
return (children != null && children.containsKey(name))
|| (aliasChildren != null && aliasChildren.containsKey(name));
}
/** get the child with the name */
@Override
public IMNode getChild(String name) {
IMNode child = null;
if (children != null) {
child = children.get(name);
}
if (child != null) {
return child;
}
return aliasChildren == null ? null : aliasChildren.get(name);
}
/** add an alias */
@Override
public boolean addAlias(String alias, IMeasurementMNode child) {
if (aliasChildren == null) {
// double check, alias children volatile
synchronized (this) {
if (aliasChildren == null) {
aliasChildren = new ConcurrentHashMap<>();
}
}
}
return aliasChildren.computeIfAbsent(alias, aliasName -> child) == child;
}
/** delete the alias of a child */
@Override
public void deleteAliasChild(String alias) {
if (aliasChildren != null) {
aliasChildren.remove(alias);
}
}
@Override
public Map<String, IMeasurementMNode> getAliasChildren() {
if (aliasChildren == null) {
return Collections.emptyMap();
}
return aliasChildren;
}
@Override
public void setAliasChildren(Map<String, IMeasurementMNode> aliasChildren) {
this.aliasChildren = aliasChildren;
}
@Override
public boolean isUseTemplate() {
return useTemplate;
}
@Override
public void setUseTemplate(boolean useTemplate) {
this.useTemplate = useTemplate;
}
@Override
public boolean isEntity() {
return true;
}
}