zoukankan      html  css  js  c++  java
  • java操作Jacoco合并dump文件

    import org.apache.maven.plugin.MojoExecutionException;
    import org.jacoco.core.tools.ExecFileLoader;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    
    public class MergeDump {
    
        private final String path ;
        private final File destFile ;
    
        public MergeDump(String path){
            this.path = path;
            this.destFile = new File(path + "/jacoco.exec");
        }
    
        private List<File> fileSets(String dir){
            System.out.println(dir);
            List<File> fileSetList = new ArrayList<File>();
            File path = new File(dir);
            if ( ! path.exists() ){
                System.out.println("No path name is :" + dir);
                return null;
            }
            File[] files = path.listFiles();
            try {
                if (files == null || files.length == 0) {
                    return null;
                }
            } catch (NullPointerException npe) {
                npe.printStackTrace();
            }
            for (File file : files) {
                if (file.getName().contains(".exec")) {
                    System.out.println("文件:" + file.getAbsolutePath());
                    fileSetList.add(file);
                } else {
                    System.out.println("非exec文件:" + file.getAbsolutePath());
                }
            }
            return fileSetList;
        }
    
        public void executeMerge() throws MojoExecutionException {
    
            final ExecFileLoader loader = new ExecFileLoader();
            load(loader);
            save(loader);
            // 执行完成后,删除非必须的dump文件
            for (final File fileSet : fileSets(this.path)) {
                if ( ! fileSet.getName().equals("jacoco.exec") ) {
                    fileSet.delete();
                }
            }
        }
    
        /**
         * 加载dump文件
         * @param loader
         * @throws MojoExecutionException
         */
        public void load(final ExecFileLoader loader) throws MojoExecutionException {
            for (final File fileSet : fileSets(this.path)) {
                System.out.println(fileSet.getAbsoluteFile());
                final File inputFile = new File(this.path, fileSet.getName());
                if (inputFile.isDirectory()) {
                    continue;
                }
                try {
                    System.out.println("Loading execution data file " + inputFile.getAbsolutePath());
                    loader.load(inputFile);
                    System.out.println(loader.getExecutionDataStore().getContents());
                } catch (final IOException e) {
                    throw new MojoExecutionException("Unable to read "
                            + inputFile.getAbsolutePath(), e);
                }
            }
        }
    
        /**
         * 执行合并文件
         * @param loader
         * @throws MojoExecutionException
         */
        public void save(final ExecFileLoader loader) throws MojoExecutionException {
            if (loader.getExecutionDataStore().getContents().isEmpty()) {
                System.out.println("Skipping JaCoCo merge execution due to missing execution data files");
                return;
            }
            System.out.println("Writing merged execution data to " + this.destFile.getAbsolutePath());
            try {
                loader.save(this.destFile, false);
            } catch (final IOException e) {
                throw new MojoExecutionException("Unable to write merged file "
                        + this.destFile.getAbsolutePath(), e);
            }
        }
    }
    参考地址:
    https://www.cnblogs.com/wozijisun/p/10442124.html
  • 相关阅读:
    C++学习之【使用位操作符求素数分析】
    LeetCodeOJ刷题之13【Roman to Integer】
    QT学习之文件系统读写类
    让免费版MarkdownPad2使用Pro版本的功能
    QT学习之窗口右键菜单
    react 16.3+ 新生命周期 作业
    react 16.3+ 新生命周期
    node层设置proxy不生效的原因
    Javascript权威指南——读书笔记
    react踩坑
  • 原文地址:https://www.cnblogs.com/yuarvin/p/15221620.html
Copyright © 2011-2022 走看看