blob: 25b1a67198f901d743a549a6b3a49f7ba357f3f8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Ericsson
*
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.incubator.internal.traceevent.core.trace;
import java.io.IOException;
import org.eclipse.tracecompass.internal.jsontrace.core.job.SortingJob;
import org.eclipse.tracecompass.tmf.core.trace.ITmfTrace;
/**
* Sorting job particular to trace event traces
*
* @author Katherine Nadeau
*
*/
public class TraceEventSortingJob extends SortingJob {
/**
* Constructor
*
* @param trace
* the trace to be sort
* @param path
* the path to the trace file
*/
public TraceEventSortingJob(ITmfTrace trace, String path) {
super(trace, path, "\"ts\":", 1); //$NON-NLS-1$
}
@Override
protected void processMetadata(ITmfTrace trace, String dir) throws IOException {
// No metadata to be read in trace event traces
}
}