tmf: Split the state system in a separate plugin
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / analysis / TestStateSystemProvider.java
CommitLineData
8a6ff07f
GB
1/*******************************************************************************
2 * Copyright (c) 2013 École Polytechnique de Montréal
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.tests.stubs.analysis;
14
bcec0116
AM
15import org.eclipse.linuxtools.statesystem.core.exceptions.AttributeNotFoundException;
16import org.eclipse.linuxtools.statesystem.core.exceptions.StateValueTypeException;
17import org.eclipse.linuxtools.statesystem.core.exceptions.TimeRangeException;
18import org.eclipse.linuxtools.statesystem.core.statevalue.TmfStateValue;
8a6ff07f
GB
19import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
20import org.eclipse.linuxtools.tmf.core.event.TmfEvent;
8a6ff07f
GB
21import org.eclipse.linuxtools.tmf.core.statesystem.AbstractTmfStateProvider;
22import org.eclipse.linuxtools.tmf.core.statesystem.ITmfStateProvider;
8a6ff07f
GB
23import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
24
25/**
26 * Stub test provider for test state system analysis module
27 *
28 * @author Geneviève Bastien
29 */
30public class TestStateSystemProvider extends AbstractTmfStateProvider {
31
32 private static final int VERSION = 1;
33 private final String fString = "[]";
34 private int fCount = 0;
35
36 /**
37 * Constructor
38 *
39 * @param trace
40 * The LTTng 2.0 kernel trace directory
41 */
42 public TestStateSystemProvider(ITmfTrace trace) {
43 super(trace, TmfEvent.class, "Stub State System");
44 }
45
46 @Override
47 public int getVersion() {
48 return VERSION;
49 }
50
51 @Override
52 public ITmfStateProvider getNewInstance() {
53 return new TestStateSystemProvider(this.getTrace());
54 }
55
56 @Override
57 protected void eventHandle(ITmfEvent event) {
58 /* Just need something to fill the state system */
59 if (fString.equals(event.getContent().getValue())) {
60 try {
61 int quarkId = ss.getQuarkAbsoluteAndAdd("String");
62 int quark = ss.getQuarkRelativeAndAdd(quarkId, fString);
63 ss.modifyAttribute(event.getTimestamp().getValue(), TmfStateValue.newValueInt(fCount++), quark);
64 } catch (TimeRangeException e) {
65
66 } catch (AttributeNotFoundException e) {
67
68 } catch (StateValueTypeException e) {
69
70 }
71 }
72 }
73
74}
This page took 0.049739 seconds and 5 git commands to generate.