Internalize some CTF APIs
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / stubs / component / TmfDataProviderStub.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
6c13869b 13package org.eclipse.linuxtools.tmf.stubs.component;
d18dd09b
ASL
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;
6c13869b 22import org.eclipse.linuxtools.tmf.core.component.TmfDataProvider;
4c564a2d 23import org.eclipse.linuxtools.tmf.core.event.TmfEvent;
6c13869b
FC
24import org.eclipse.linuxtools.tmf.core.request.ITmfDataRequest;
25import org.eclipse.linuxtools.tmf.core.request.ITmfEventRequest;
26import org.eclipse.linuxtools.tmf.core.tests.TmfCoreTestPlugin;
27import org.eclipse.linuxtools.tmf.core.trace.ITmfContext;
28import org.eclipse.linuxtools.tmf.stubs.trace.TmfTraceStub;
d18dd09b
ASL
29
30/**
31 * <b><u>TmfDataProviderStub</u></b>
32 * <p>
33 * TODO: Implement me. Please.
34 */
3b38ea61 35@SuppressWarnings("nls")
4c564a2d 36public class TmfDataProviderStub extends TmfDataProvider<TmfEvent> {
d18dd09b
ASL
37
38 private static final String DIRECTORY = "testfiles";
39 private static final String TEST_STREAM = "M-Test-10K";
40
41 private TmfTraceStub fTrace;
42
43 public TmfDataProviderStub(String path) throws IOException {
4c564a2d 44 super("TmfDataProviderStub", TmfEvent.class);
cbd4ad82 45 URL location = FileLocator.find(TmfCoreTestPlugin.getDefault().getBundle(), new Path(path), null);
d18dd09b
ASL
46 try {
47 File test = new File(FileLocator.toFileURL(location).toURI());
48 fTrace = new TmfTraceStub(test.getPath(), true);
49 } catch (URISyntaxException e) {
50 e.printStackTrace();
51 }
52 }
53
54 public TmfDataProviderStub() throws IOException {
55 this(DIRECTORY + File.separator + TEST_STREAM);
56 }
57
58 // ------------------------------------------------------------------------
59 // TmfProvider
60 // ------------------------------------------------------------------------
61
62 @Override
4c564a2d 63 public ITmfContext armRequest(ITmfDataRequest<TmfEvent> request) {
2fb2eb37
FC
64 if (request instanceof ITmfEventRequest<?>) {
65 ITmfContext context = fTrace.seekEvent(((ITmfEventRequest<?>) request).getRange().getStartTime());
d18dd09b
ASL
66 return context;
67 }
68 return null;
69 }
70
71 @Override
4c564a2d 72 public TmfEvent getNext(ITmfContext context) {
d18dd09b
ASL
73 return fTrace.getNext(context);
74 }
75
76 @Override
4c564a2d 77 public boolean isCompleted(ITmfDataRequest<TmfEvent> request, TmfEvent data, int nbRead) {
d18dd09b
ASL
78 return false;
79 }
80
81}
This page took 0.033449 seconds and 5 git commands to generate.