All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ideaaedi.component.compile.DynamicCompilerException Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package com.ideaaedi.component.compile;

import javax.tools.Diagnostic;
import javax.tools.JavaFileObject;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;

/**
 * 动态编译异常
 *
 * @author Arthas
 * @since 2021/9/20 18:11:56
 */
@SuppressWarnings("all")
public class DynamicCompilerException extends RuntimeException {
    private static final long serialVersionUID = 1L;
    private List> diagnostics;
    
    public DynamicCompilerException(String message, List> diagnostics) {
        super(message);
        this.diagnostics = diagnostics;
    }
    
    public DynamicCompilerException(Throwable cause, List> diagnostics) {
        super(cause);
        this.diagnostics = diagnostics;
    }
    
    private List> getErrorList() {
        List> messages = new ArrayList>();
        if (diagnostics != null) {
            for (Diagnostic diagnostic : diagnostics) {
                Map message = new HashMap();
                message.put("line", diagnostic.getLineNumber());
                message.put("message", diagnostic.getMessage(Locale.US));
                messages.add(message);
            }
            
        }
        return messages;
    }
    
    private String getErrors() {
        StringBuilder errors = new StringBuilder();
        
        for (Map message : getErrorList()) {
            for (Map.Entry entry : message.entrySet()) {
                Object value = entry.getValue();
                if (value != null && !value.toString().isEmpty()) {
                    errors.append(entry.getKey());
                    errors.append(": ");
                    errors.append(value);
                }
                errors.append(" , ");
            }
            
            errors.append("\n");
        }
        
        return errors.toString();
        
    }
    
    @Override
    public String getMessage() {
        return super.getMessage() + "\n" + getErrors();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy