Package org.glassfish.jersey.tests.performance.tools

Source Code of org.glassfish.jersey.tests.performance.tools.TestDataGeneratorApp

/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2014 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License").  You
* may not use this file except in compliance with the License.  You can
* obtain a copy of the License at
* http://glassfish.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt.  See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license."  If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above.  However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package org.glassfish.jersey.tests.performance.tools;

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.net.URI;
import java.nio.charset.Charset;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;

import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.ext.ContextResolver;

import org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpServerFactory;
import org.glassfish.jersey.moxy.json.MoxyJsonConfig;
import org.glassfish.jersey.server.ResourceConfig;

import org.glassfish.grizzly.http.server.HttpServer;

/**
* Application for generating custom testing data files for Jersey performance tests.
*
* <p>Creates set of files containing plain text, json and xml in various predefined sizes:
* 1kB, 5kB, 10kB, 1MB and optionally 1GB. The 1GB file has to be enabled by changing the constant
* {@code GENERATE_ALSO_GIGABYTE_DATASETS} to true.</p>
*
* <p>The sizes are the MINIMAL sizes, the generation stops after reaching the given size,
* but does not truncate the most recently
* generated entity. For simple testing beans the size difference from the predefined treshold is minimal,
* whereas for very complex testing beans the difference can be significant.</p>
*
* <p>MOXy is used for creating XML and JSON from the testing beans.</p>
*
* <p>Run the generation by invoking {@code mvn clean compile} and {@code mvn exec:java} commands in the module root folder.</p>
*
* @author Adam Lindenthal (adam.lindenthal at oracle.com)
*/
public class TestDataGeneratorApp {
    /** change the value to true to generate also 1GB files; can be time consuming and takes additional 3GB of disk
     * space (1GB json, 1GB xml and 1GB text) */
    private static final boolean GENERATE_ALSO_GIGABYTE_DATASETS = false;

    /** path where the generated files should be stored, including the final slash */
    private static final String FILE_PATH = "";

    /** specifies how the outputs generated from one bean should be separated from each other in the output files */
    public static final String ENTITY_SEPARATOR = "\n\n";

    private static final Logger LOG = Logger.getLogger(TestDataGeneratorApp.class.getName());
    private static final URI BASE_URI = URI.create("http://localhost:8080/");
    private static URI baseUri;

    public static void main(final String[] args) throws Exception {
        baseUri = args.length > 0 ? URI.create(args[0]) : BASE_URI;
        final HttpServer server = GrizzlyHttpServerFactory.createHttpServer(baseUri, createApp());

        LOG.info("Jersey performance test data generation - application started.");

        try {
            // generate text files - 1kb, 5kb, 10kb, 1MB and optionally 1GB
            generateFile("simple/text", 1024, FILE_PATH + "custom-1kb.text");
            generateFile("simple/text", 5 * 1024, FILE_PATH + "custom-5kb.text");
            generateFile("simple/text", 10 * 1024, FILE_PATH + "custom-10kb.text");
            generateFile("simple/text", 1024 * 1024, FILE_PATH + "custom-1MB.text");
            if (GENERATE_ALSO_GIGABYTE_DATASETS) {
                generateFile("text", 1024 * 1024 * 1024, FILE_PATH + "custom-1GB.text");
            }

            // generate json files - 1kb, 5kb, 10kb, 1MB and optionally 1GB
            generateFile("simple/json", 1024, FILE_PATH + "custom-1kb.json");
            generateFile("simple/json", 5 * 1024, FILE_PATH + "custom-5kb.json");
            generateFile("simple/json", 10 * 1024, FILE_PATH + "custom-10kb.json");
            generateFile("simple/json", 1024 * 1024, FILE_PATH + "custom-1MB.json");
            if (GENERATE_ALSO_GIGABYTE_DATASETS) {
                generateFile("simple/json", 1024 * 1024 * 1024, FILE_PATH + "custom-1GB.json");
            }

            // generate xml files - 1kb, 5kb, 10kb, 1MB and optionally 1GB
            generateFile("simple/xml", 1024, FILE_PATH + "custom-1kb.xml");
            generateFile("simple/xml", 5 * 1024, FILE_PATH + "custom-5kb.xml");
            generateFile("simple/xml", 10 * 1024, FILE_PATH + "custom-10kb.xml");
            generateFile("simple/xml", 1024 * 1024, FILE_PATH + "custom-1MB.xml");
            if (GENERATE_ALSO_GIGABYTE_DATASETS) {
                generateFile("simple/xml", 1024 * 1024 * 1024, FILE_PATH + "custom-1GB.json");
            }
        } catch (final IOException e) {
            LOG.log(Level.SEVERE, "An error occurred during test data generation. ", e);
        }
        server.shutdown();
    }

    public static ResourceConfig createApp() {
       return new ResourceConfig().
                packages("org.glassfish.jersey.tests.performance.tools").
                register(createMoxyJsonResolver());
    }

    public static ContextResolver<MoxyJsonConfig> createMoxyJsonResolver() {
        final MoxyJsonConfig moxyJsonConfig = new MoxyJsonConfig();
        final Map<String, String> namespacePrefixMapper = new HashMap<>(1);
        namespacePrefixMapper.put("http://www.w3.org/2001/XMLSchema-instance", "xsi");
        moxyJsonConfig.setNamespacePrefixMapper(namespacePrefixMapper).setNamespaceSeparator(':');
        return moxyJsonConfig.resolver();
    }

    public static void generateFile(final String resourceRelativeUrl, final int minimalSize, final String fileName)
            throws IOException {
        LOG.info("Generating file " + fileName);
        final Client client = ClientBuilder.newClient();
        final WebTarget target = client.target(baseUri).path("generate").path(resourceRelativeUrl);

        final File file = new File(fileName);
        final BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(
                new FileOutputStream(file), Charset.forName("UTF-8")));

        int actualSize = 0;
        while (actualSize < minimalSize) {
            final String response = target.request().get(String.class);
            writer.write(response + ENTITY_SEPARATOR);
            actualSize += response.length();
        }

        writer.flush();
        writer.close();
    }

}
TOP

Related Classes of org.glassfish.jersey.tests.performance.tools.TestDataGeneratorApp

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.