[Bug292967] Implemented items [1] and [2] of of request coalescing. Augmented unit...
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / stubs / org / eclipse / linuxtools / tmf / component / TmfEventProviderStub.java
CommitLineData
d18dd09b
ASL
1/*******************************************************************************
2 * Copyright (c) 2009, 2010 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:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.component;
14
15import java.io.File;
16import java.io.IOException;
17import java.net.URISyntaxException;
18import java.net.URL;
19
20import org.eclipse.core.runtime.FileLocator;
21import org.eclipse.core.runtime.Path;
22import org.eclipse.linuxtools.tmf.event.TmfEvent;
fc6ccf6f
FC
23import org.eclipse.linuxtools.tmf.request.TmfDataRequest;
24import org.eclipse.linuxtools.tmf.request.TmfEventRequest;
d18dd09b
ASL
25import org.eclipse.linuxtools.tmf.tests.TmfCoreTestPlugin;
26import org.eclipse.linuxtools.tmf.trace.ITmfContext;
fc6ccf6f 27import org.eclipse.linuxtools.tmf.trace.TmfContext;
d18dd09b
ASL
28import org.eclipse.linuxtools.tmf.trace.TmfTraceStub;
29
30/**
31 * <b><u>TmfEventProviderStub</u></b>
32 * <p>
33 * TODO: Implement me. Please.
34 */
35public class TmfEventProviderStub extends TmfEventProvider<TmfEvent> {
36
37 private static final String DIRECTORY = "testfiles";
fc6ccf6f 38 private static final String TEST_STREAM = "M-Test-10K";
d18dd09b
ASL
39
40 private TmfTraceStub fTrace;
41
42 public TmfEventProviderStub(String path) throws IOException {
fc6ccf6f
FC
43 super(TmfEvent.class);
44 URL location = FileLocator.find(TmfCoreTestPlugin.getPlugin().getBundle(), new Path(path), null);
d18dd09b
ASL
45 try {
46 File test = new File(FileLocator.toFileURL(location).toURI());
47 fTrace = new TmfTraceStub(test.getPath(), true);
48 } catch (URISyntaxException e) {
49 e.printStackTrace();
50 }
51 }
52
53 public TmfEventProviderStub() throws IOException {
54 this(DIRECTORY + File.separator + TEST_STREAM);
55 }
d18dd09b
ASL
56
57 // ------------------------------------------------------------------------
58 // TmfEventProvider
59 // ------------------------------------------------------------------------
60
61 @Override
fc6ccf6f
FC
62 public ITmfContext armRequest(TmfDataRequest<TmfEvent> request) {
63 if (request instanceof TmfEventRequest<?>) {
64 TmfContext context = fTrace.seekEvent(((TmfEventRequest<?>) request).getRange().getStartTime());
d18dd09b
ASL
65 return context;
66 }
67 return null;
68 }
69
70 @Override
71 public TmfEvent getNext(ITmfContext context) {
72 return fTrace.getNext(context);
73 }
74
75}
This page took 0.026264 seconds and 5 git commands to generate.