|
| 1 | +/* |
| 2 | + * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | + * or more contributor license agreements. See the NOTICE file |
| 4 | + * distributed with this work for additional information |
| 5 | + * regarding copyright ownership. The ASF licenses this file |
| 6 | + * to you under the Apache License, Version 2.0 (the |
| 7 | + * "License"); you may not use this file except in compliance |
| 8 | + * with the License. You may obtain a copy of the License at |
| 9 | + * |
| 10 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + * |
| 12 | + * Unless required by applicable law or agreed to in writing, |
| 13 | + * software distributed under the License is distributed on an |
| 14 | + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | + * KIND, either express or implied. See the License for the |
| 16 | + * specific language governing permissions and limitations |
| 17 | + * under the License. |
| 18 | + */ |
| 19 | +package org.apache.maven.repository.internal; |
| 20 | + |
| 21 | +import java.util.stream.Collectors; |
| 22 | + |
| 23 | +import org.apache.maven.model.Plugin; |
| 24 | +import org.eclipse.aether.RequestTrace; |
| 25 | +import org.eclipse.aether.collection.CollectRequest; |
| 26 | +import org.eclipse.aether.collection.CollectStepData; |
| 27 | +import org.eclipse.aether.resolution.ArtifactDescriptorRequest; |
| 28 | +import org.eclipse.aether.resolution.ArtifactRequest; |
| 29 | +import org.eclipse.aether.resolution.DependencyRequest; |
| 30 | + |
| 31 | +/** |
| 32 | + * Helper class to manage {@link RequestTrace} for better error logging. |
| 33 | + * |
| 34 | + * @since 3.9.9 |
| 35 | + */ |
| 36 | +public final class RequestTraceHelper { |
| 37 | + |
| 38 | + /** |
| 39 | + * Method that creates some informational string based on passed in {@link RequestTrace}. The contents of request |
| 40 | + * trace can literally be anything, but this class tries to cover "most common" cases that are happening in Maven. |
| 41 | + */ |
| 42 | + public static String interpretTrace(boolean detailed, RequestTrace requestTrace) { |
| 43 | + while (requestTrace != null) { |
| 44 | + Object data = requestTrace.getData(); |
| 45 | + if (data instanceof DependencyRequest) { |
| 46 | + DependencyRequest request = (DependencyRequest) data; |
| 47 | + return "dependency resolution for " + request; |
| 48 | + } else if (data instanceof CollectRequest) { |
| 49 | + CollectRequest request = (CollectRequest) data; |
| 50 | + return "dependency collection for " + request; |
| 51 | + } else if (data instanceof CollectStepData) { |
| 52 | + CollectStepData stepData = (CollectStepData) data; |
| 53 | + String msg = "dependency collection step for " + stepData.getContext(); |
| 54 | + if (detailed) { |
| 55 | + msg += ". Path to offending node from root:\n"; |
| 56 | + msg += stepData.getPath().stream() |
| 57 | + .map(n -> " -> " + n.toString()) |
| 58 | + .collect(Collectors.joining("\n")); |
| 59 | + msg += "\n => " + stepData.getNode(); |
| 60 | + } |
| 61 | + return msg; |
| 62 | + } else if (data instanceof ArtifactDescriptorRequest) { |
| 63 | + ArtifactDescriptorRequest request = (ArtifactDescriptorRequest) data; |
| 64 | + return "artifact descriptor request for " + request.getArtifact(); |
| 65 | + } else if (data instanceof ArtifactRequest) { |
| 66 | + ArtifactRequest request = (ArtifactRequest) data; |
| 67 | + return "artifact request for " + request.getArtifact(); |
| 68 | + } else if (data instanceof Plugin) { |
| 69 | + Plugin plugin = (Plugin) data; |
| 70 | + return "plugin request " + plugin.getId(); |
| 71 | + } |
| 72 | + requestTrace = requestTrace.getParent(); |
| 73 | + } |
| 74 | + |
| 75 | + return "n/a"; |
| 76 | + } |
| 77 | +} |
0 commit comments