Move alltests plugin to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / linuxtools / lttng2 / ust / core / trace / LttngUstTrace.java
CommitLineData
91fc3690 1/**********************************************************************
60ae41e1 2 * Copyright (c) 2013, 2014 Ericsson
91fc3690
AM
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:
10 * Matthew Khouzam - Initial API and implementation
1c6660ca 11 * Alexandre Montplaisir - Add UST callstack state system
af015d44 12 * Marc-Andre Laperle - Handle BufferOverflowException (Bug 420203)
91fc3690
AM
13 **********************************************************************/
14
15package org.eclipse.linuxtools.lttng2.ust.core.trace;
16
af015d44 17import java.nio.BufferOverflowException;
1c6660ca 18
91fc3690
AM
19import org.eclipse.core.resources.IProject;
20import org.eclipse.core.runtime.IStatus;
21import org.eclipse.core.runtime.Status;
22import org.eclipse.linuxtools.ctf.core.trace.CTFReaderException;
23import org.eclipse.linuxtools.ctf.core.trace.CTFTrace;
24import org.eclipse.linuxtools.internal.lttng2.ust.core.Activator;
cd43d683 25import org.eclipse.linuxtools.tmf.core.trace.TraceValidationStatus;
91e7f946 26import org.eclipse.linuxtools.tmf.ctf.core.CtfTmfTrace;
91fc3690
AM
27
28/**
29 * Class to contain LTTng-UST traces
30 *
31 * @author Matthew Khouzam
32 * @since 2.1
33 */
34public class LttngUstTrace extends CtfTmfTrace {
35
cd43d683
PT
36 private static final int CONFIDENCE = 100;
37
91fc3690
AM
38 /**
39 * Default constructor
40 */
41 public LttngUstTrace() {
42 super();
43 }
44
cd43d683
PT
45 /**
46 * {@inheritDoc}
47 * <p>
48 * This implementation sets the confidence to 100 if the trace is a valid
49 * CTF trace in the "ust" domain.
50 */
91fc3690
AM
51 @Override
52 public IStatus validate(final IProject project, final String path) {
dd9752d5
AM
53 try (CTFTrace temp = new CTFTrace(path);) {
54 /* Make sure the domain is "ust" in the trace's env vars */
55 String dom = temp.getEnvironment().get("domain"); //$NON-NLS-1$
56 if (dom != null && dom.equals("\"ust\"")) { //$NON-NLS-1$
57 return new TraceValidationStatus(CONFIDENCE, Activator.PLUGIN_ID);
58 }
59 return new Status(IStatus.ERROR, Activator.PLUGIN_ID, Messages.LttngUstTrace_DomainError);
60
91fc3690 61 } catch (CTFReaderException e) {
dd9752d5 62 return new Status(IStatus.ERROR, Activator.PLUGIN_ID, e.toString(), e);
af015d44 63 } catch (NullPointerException e) {
dd9752d5 64 return new Status(IStatus.ERROR, Activator.PLUGIN_ID, e.toString(), e);
af015d44 65 } catch (final BufferOverflowException e) {
dd9752d5 66 return new Status(IStatus.ERROR, Activator.PLUGIN_ID, Messages.LttngUstTrace_TraceReadError + ": " + Messages.LttngUstTrace_MalformedTrace); //$NON-NLS-1$
91fc3690 67 }
91fc3690
AM
68 }
69}
This page took 0.038303 seconds and 5 git commands to generate.