TreeUtil.buildSingle指定rootId节点存在时,作为根节点

This commit is contained in:
Looly 2024-10-02 13:10:59 +08:00
parent be98b46349
commit 5cf262d85a
4 changed files with 109 additions and 8 deletions

View File

@ -2,7 +2,7 @@
# 🚀Changelog
-------------------------------------------------------------------------------------------------------------
# 5.8.33(2024-09-29)
# 5.8.33(2024-10-02)
### 🐣新特性
* 【core 】 SyncFinisher增加setExecutorService方法issue#IANKQ1@Gitee
@ -14,6 +14,7 @@
* 【http 】 HttpRequest增加setFixedContentLength方法issue#3462@Github
* 【db 】 AbstractDb增加getDs方法issue#IARKZL@Gitee
* 【db 】 QrCodeUtil添加二维码logo支持配置圆角pr#3747@Github
* 【core 】 TreeUtil.buildSingle指定rootId节点存在时作为根节点issue#IAUSHR@Gitee
### 🐞Bug修复
* 【json 】 修复JSONConfig.setDateFormat设置后toBean无效问题issue#3713@Github

View File

@ -10,6 +10,7 @@ import cn.hutool.core.util.ObjectUtil;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
/**
* 树构建器
@ -19,7 +20,7 @@ import java.util.Map;
public class TreeBuilder<E> implements Builder<Tree<E>> {
private static final long serialVersionUID = 1L;
private final Tree<E> root;
private Tree<E> root;
private final Map<E, Tree<E>> idTreeMap;
private boolean isBuild;
@ -53,8 +54,17 @@ public class TreeBuilder<E> implements Builder<Tree<E>> {
* @param config 配置
*/
public TreeBuilder(E rootId, TreeNodeConfig config) {
root = new Tree<>(config);
root.setId(rootId);
this(new Tree<E>(config).setId(rootId));
}
/**
* 构造
*
* @param rootNode 根节点
* @since 5.8.33
*/
public TreeBuilder(Tree<E> rootNode) {
this.root = rootNode;
this.idTreeMap = new LinkedHashMap<>();
}
@ -157,7 +167,28 @@ public class TreeBuilder<E> implements Builder<Tree<E>> {
* @return this
*/
public <T> TreeBuilder<E> append(List<T> list, NodeParser<T, E> nodeParser) {
return append(list, null, nodeParser);
checkBuilt();
final TreeNodeConfig config = this.root.getConfig();
final E rootId = this.root.getId();
final Map<E, Tree<E>> map = this.idTreeMap;
Tree<E> node;
for (T t : list) {
node = new Tree<>(config);
nodeParser.parse(t, node);
if (null != rootId && false == rootId.getClass().equals(node.getId().getClass())) {
throw new IllegalArgumentException("rootId type is node.getId().getClass()!");
}
// issue#IAUSHR 如果指定根节点存在直接复用
if(Objects.equals(rootId, node.getId())){
this.root = node;
}else {
//非根节点
map.put(node.getId(), node);
}
}
return append(map);
}
/**
@ -169,12 +200,14 @@ public class TreeBuilder<E> implements Builder<Tree<E>> {
* @param nodeParser 节点转换器用于定义一个Bean如何转换为Tree节点
* @return this
* @since 5.8.6
* @deprecated rootId参数可以不提供在root节点中直接获取请使用{@link #append(List, NodeParser)}
*/
@Deprecated
public <T> TreeBuilder<E> append(List<T> list, E rootId, NodeParser<T, E> nodeParser) {
checkBuilt();
final TreeNodeConfig config = this.root.getConfig();
final Map<E, Tree<E>> map = new LinkedHashMap<>(list.size(), 1);
final Map<E, Tree<E>> map = this.idTreeMap;
Tree<E> node;
for (T t : list) {
node = new Tree<>(config);
@ -182,7 +215,14 @@ public class TreeBuilder<E> implements Builder<Tree<E>> {
if (null != rootId && false == rootId.getClass().equals(node.getId().getClass())) {
throw new IllegalArgumentException("rootId type is node.getId().getClass()!");
}
map.put(node.getId(), node);
// issue#IAUSHR 如果指定根节点存在直接复用
if(Objects.equals(rootId, node.getId())){
this.root = node;
}else {
//非根节点
map.put(node.getId(), node);
}
}
return append(map);
}

View File

@ -124,7 +124,7 @@ public class TreeUtil {
*/
public static <T, E> Tree<E> buildSingle(List<T> list, E rootId, TreeNodeConfig treeNodeConfig, NodeParser<T, E> nodeParser) {
return TreeBuilder.of(rootId, treeNodeConfig)
.append(list, rootId, nodeParser).build();
.append(list, nodeParser).build();
}
/**

View File

@ -0,0 +1,60 @@
package cn.hutool.core.lang.tree;
import cn.hutool.core.lang.tree.parser.NodeParser;
import lombok.Data;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.List;
import static org.junit.jupiter.api.Assertions.assertEquals;
/**
* 如果指定rootId的节点已经存在直接作为根节点
*/
public class IssueIAUSHRTest {
@Test
void buildSingleTest() {
final List<TestDept> list= new ArrayList<>();
TestDept sysDept = new TestDept();
sysDept.setDeptId(1L);
sysDept.setDeptName("A");
sysDept.setParentId(null);
list.add(sysDept);
sysDept = new TestDept();
sysDept.setDeptId(2L);
sysDept.setDeptName("B");
sysDept.setParentId(1L);
list.add(sysDept);
sysDept = new TestDept();
sysDept.setDeptId(3L);
sysDept.setDeptName("C");
sysDept.setParentId(1L);
list.add(sysDept);
TreeNodeConfig treeNodeConfig = new TreeNodeConfig();
treeNodeConfig.setIdKey("deptId");
treeNodeConfig.setNameKey("deptName");
treeNodeConfig.setParentIdKey("parentId");
NodeParser<TestDept,Long> nodeParser= (dept, tree) ->
tree.setId(dept.getDeptId())
.setParentId(dept.getParentId())
.setName(dept.getDeptName());
Tree<Long> longTree = TreeUtil.buildSingle(list, 1L, treeNodeConfig, nodeParser);
assertEquals("A", longTree.getName());
assertEquals(2, longTree.getChildren().size());
assertEquals("B", longTree.getChildren().get(0).getName());
assertEquals("C", longTree.getChildren().get(1).getName());
}
@Data
public static class TestDept {
private Long deptId;
private String deptName;
private Long parentId;
}
}