org.apache.padaf.preflight.Benchmark.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.padaf.preflight.Benchmark.java

Source

/*****************************************************************************
 * 
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 * 
 ****************************************************************************/

package org.apache.padaf.preflight;

import java.io.File;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.List;

import javax.activation.FileDataSource;

import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.apache.padaf.preflight.PdfAValidator;
import org.apache.padaf.preflight.PdfAValidatorFactory;
import org.apache.padaf.preflight.ValidationResult;
import org.apache.padaf.preflight.ValidationResult.ValidationError;

public class Benchmark {

    /**
     * @param args
     */
    public static void main(String[] args) throws Exception {
        if (args.length < 3) {
            System.err.println("Usage : Benchmark loop resultFile <file1 ... filen|dir>");
            System.exit(255);
        }

        Integer loop = Integer.parseInt(args[0]);
        FileWriter resFile = new FileWriter(new File(args[1]));

        List<File> lfd = new ArrayList<File>();
        for (int i = 2; i < args.length; ++i) {
            File fi = new File(args[i]);
            if (fi.isDirectory()) {
                Collection<File> cf = FileUtils.listFiles(fi, null, true); // Get All files contained by the dir
                lfd.addAll(cf);
            } else {
                lfd.add(fi);
            }
        }

        SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy hh:mm:ss.Z");

        PdfAValidator validator = new PdfAValidatorFactory()
                .createValidatorInstance(PdfAValidatorFactory.PDF_A_1_b);
        long startGTime = System.currentTimeMillis();

        int size = lfd.size();
        for (int i = 0; i < loop; i++) {
            File file = lfd.get(i % size);
            long startLTime = System.currentTimeMillis();
            ValidationResult result = validator.validate(new FileDataSource(file));
            if (!result.isValid()) {
                resFile.write(file.getAbsolutePath() + " isn't PDF/A\n");
                for (ValidationError error : result.getErrorsList()) {
                    resFile.write(error.getErrorCode() + " : " + error.getDetails() + "\n");
                }
            }
            result.closePdf();
            long endLTime = System.currentTimeMillis();
            resFile.write(file.getName() + " (ms) : " + (endLTime - startLTime) + "\n");
            resFile.flush();
        }

        long endGTime = System.currentTimeMillis();

        resFile.write("Start : " + sdf.format(new Date(startGTime)) + "\n");
        resFile.write("End : " + sdf.format(new Date(endGTime)) + "\n");
        resFile.write("Duration (ms) : " + (endGTime - startGTime) + "\n");
        resFile.write("Average (ms) : " + (int) ((endGTime - startGTime) / loop) + "\n");

        System.out.println("Start : " + sdf.format(new Date(startGTime)));
        System.out.println("End : " + sdf.format(new Date(endGTime)));
        System.out.println("Duration (ms) : " + (endGTime - startGTime));
        System.out.println("Average (ms) : " + (int) ((endGTime - startGTime) / loop));
        resFile.flush();
        IOUtils.closeQuietly(resFile);
    }
}