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

org.pustefixframework.maven.plugins.IWrapperFileScanner Maven / Gradle / Ivy

There is a newer version: 0.23.0
Show newest version
/*
 * This file is part of Pustefix.
 *
 * Pustefix is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Pustefix is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with Pustefix; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.pustefixframework.maven.plugins;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

/**
 * 
 * @author [email protected]
 *
 */
public class IWrapperFileScanner {

    private long fileReadCount;
    private long fileReadTime;

    public IWrapperFileScanner() {
    }

    public void reset() {
        fileReadCount = 0;
        fileReadTime = 0;
    }

    public List getChangedFiles(File srcDir, File destDir, long lastScanTime) {
        List changedFiles = new ArrayList();
        getChangedFiles(srcDir, destDir, changedFiles, lastScanTime);
        return changedFiles;
    }

    private void getChangedFiles(File srcDir, File destDir, List changedFiles, long lastScanTime) {
        File[] srcFiles = srcDir.listFiles();
        for (File srcFile : srcFiles) {
            if (srcFile.isDirectory()) {
                if (!(srcFile.getName().equals(".svn") || srcFile.getName().equals("CVS"))) {
                    File destFile = new File(destDir, srcFile.getName());
                    getChangedFiles(srcFile, destFile, changedFiles, lastScanTime);
                }
            } else {
                if (srcFile.getName().endsWith(".java")) {
                    String name = srcFile.getName().substring(0, srcFile.getName().length() - 5) + ".class";
                    File destFile = new File(destDir, name);
                    if (!destFile.exists() || srcFile.lastModified() > destFile.lastModified() || srcFile.lastModified() > lastScanTime) {
                        boolean found = false;
                        long t1 = System.currentTimeMillis();
                        try {
                            // do fuzzy search for IWrapper annotation in source file
                            FileInputStream fis = new FileInputStream(srcFile);
                            BufferedReader reader = new BufferedReader(new InputStreamReader(fis));
                            String line = null;
                            int cnt = 0;
                            while ((line = reader.readLine()) != null) {
                                if (line.contains("IWrapper")) {
                                    if (line.contains("@IWrapper") || line.contains("@de.schlund.pfixcore.generator.annotation.IWrapper")) {
                                        found = true;
                                        break;
                                    }
                                }
                                cnt++;
                                if (cnt > 70) break;
                                if (line.contains("public class")) break;
                            }
                            fis.close();
                        } catch (IOException x) {
                            x.printStackTrace();
                        }
                        long t2 = System.currentTimeMillis();
                        fileReadCount++;
                        fileReadTime += (t2 - t1);
                        if (found) changedFiles.add(srcFile);
                    }
                }
            }
        }
    }

    public long getScanCount() {
        return fileReadCount;
    }

    public String printStatistics() {
        return "Scanned " + fileReadCount + " file(s) in " + fileReadTime + "ms";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy