2010-11-05 Francois Chouinard <fchouinard@gmail.com> Fix for Bug329473
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / stubs / org / eclipse / linuxtools / tmf / CreateTestFiles.java
CommitLineData
d18dd09b
ASL
1/*******************************************************************************
2 * Copyright (c) 2009 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
165c977c 10 * Francois Chouinard - Initial API and implementation
d18dd09b
ASL
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf;
14
15import java.io.BufferedOutputStream;
16import java.io.DataOutputStream;
165c977c 17import java.io.File;
d18dd09b
ASL
18import java.io.FileNotFoundException;
19import java.io.FileOutputStream;
20import java.io.IOException;
165c977c 21import java.util.Random;
d18dd09b
ASL
22
23/**
24 * <b><u>CreateTestFiles</u></b>
25 * <p>
26 * Create a number of event test files of various lengths.
27 * <p>
28 * Events have the following format:
29 * <ul>
30 * <li> [timestamp] [source] [type] [ref] [field]*
31 * <li> There are NB_SOURCES sources and NB_TYPES types.
32 * <li> The number of fields (0 .. NB_TYPES-1) depends on the event type.
33 * </ul>
34 */
35public class CreateTestFiles {
36
37 // ========================================================================
38 // Constants
39 // ========================================================================
40
50adc88e 41 private static final String DIRECTORY = "testfiles";
85fb0e54
FC
42// private static final String FILE_NAMES[] = { "Test-10", "Test-1K", "Test-10K", "Test-100K" };
43// private static final int FILE_SIZES[] = { 10 , 1000 , 10000 , 100000 };
44 private static final String FILE_NAMES[] = { "Test-10K" };
45 private static final int FILE_SIZES[] = { 10000 };
d18dd09b 46
165c977c
FC
47 private static final int NB_SOURCES = 15;
48 private static final int NB_TYPES = 7;
d18dd09b
ASL
49
50 // ========================================================================
51 // Constructors
52 // ========================================================================
53
54 /**
55 * @param args
56 */
57 public static void main(String[] args) {
165c977c
FC
58
59 try {
50adc88e 60 System.out.println("Creating test files in directory: " + new File(".").getCanonicalPath() + File.separator + DIRECTORY);
165c977c
FC
61 } catch (IOException e) {
62 e.printStackTrace();
63 }
64
d18dd09b
ASL
65 for (int i = 0; i < FILE_SIZES.length; i++) {
66 try {
85fb0e54
FC
67 createTestFile("testfiles" + File.separator + "O-" + FILE_NAMES[i], FILE_SIZES[i], true, true);
68 createTestFile("testfiles" + File.separator + "E-" + FILE_NAMES[i], FILE_SIZES[i], true, false);
69 createTestFile("testfiles" + File.separator + "R-" + FILE_NAMES[i], FILE_SIZES[i], false, false);
d18dd09b
ASL
70 } catch (Exception e) {
71 }
72 }
165c977c
FC
73
74 System.out.println("Done.");
d18dd09b
ASL
75 }
76
77 // ========================================================================
78 // Operators
79 // ========================================================================
80
81 /**
82 * @param file
83 * @param size
165c977c 84 * @param monotonic
d18dd09b
ASL
85 * @throws FileNotFoundException
86 * @throws IOException
87 */
85fb0e54 88 private static void createTestFile(String file, int size, boolean monotonic, boolean odd) throws FileNotFoundException, IOException {
d18dd09b
ASL
89 DataOutputStream out;
90 System.out.println("Creating " + file);
91 out = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(file)));
92
165c977c 93 Random generator = new Random(19580427 + size);
85fb0e54 94 long ts = (monotonic && odd) ? -1 : 0;
d18dd09b 95 for (int i = 0; i < size; i++) {
85fb0e54 96 ts += monotonic ? 2 : generator.nextInt(10);
d18dd09b
ASL
97 int sourceIndex = i % NB_SOURCES;
98 int typeIndex = i % NB_TYPES;
165c977c 99 out.writeLong(ts); // Timestamp
d18dd09b
ASL
100 out.writeUTF("Source-" + sourceIndex); // Source
101 out.writeUTF("Type-" + typeIndex); // Type
165c977c 102 out.writeInt(i + 1); // Reference (event #)
d18dd09b
ASL
103 for (int j = 0; j < typeIndex; j++) {
104 out.writeUTF("Field-" + sourceIndex + "-" + j);
105 }
106 }
107 out.flush();
108 out.close();
109 }
165c977c 110
d18dd09b 111}
This page took 0.029988 seconds and 5 git commands to generate.