tmf: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / stubs / org / eclipse / tracecompass / tmf / tests / stubs / component / TmfSyntheticEventProviderStub.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2014 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
13 package org.eclipse.tracecompass.tmf.tests.stubs.component;
14
15 import java.util.concurrent.BlockingQueue;
16 import java.util.concurrent.LinkedBlockingQueue;
17 import java.util.concurrent.TimeUnit;
18
19 import org.eclipse.tracecompass.internal.tmf.core.component.TmfProviderManager;
20 import org.eclipse.tracecompass.tmf.core.component.ITmfEventProvider;
21 import org.eclipse.tracecompass.tmf.core.component.TmfEventProvider;
22 import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
23 import org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest;
24 import org.eclipse.tracecompass.tmf.core.request.TmfEventRequest;
25 import org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType;
26 import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimeRange;
27 import org.eclipse.tracecompass.tmf.core.trace.ITmfContext;
28 import org.eclipse.tracecompass.tmf.core.trace.TmfContext;
29 import org.eclipse.tracecompass.tmf.tests.stubs.event.TmfSyntheticEventStub;
30
31 /**
32 * <b><u>TmfSyntheticEventProviderStub</u></b>
33 * <p>
34 * TODO: Implement me. Please.
35 */
36 @SuppressWarnings("javadoc")
37 public class TmfSyntheticEventProviderStub extends TmfEventProvider {
38
39 public static final int NB_EVENTS = 1000;
40
41 private final BlockingQueue<ITmfEvent> fDataQueue = new LinkedBlockingQueue<>(1000);
42
43 public TmfSyntheticEventProviderStub() {
44 super("TmfSyntheticEventProviderStub", TmfSyntheticEventStub.class);
45 }
46
47 @Override
48 public ITmfContext armRequest(final ITmfEventRequest request) {
49
50 // Get the TmfSyntheticEventStub provider
51 final ITmfEventProvider[] eventProviders = TmfProviderManager.getProviders(ITmfEvent.class, TmfEventProviderStub.class);
52 final ITmfEventProvider provider = eventProviders[0];
53
54 final TmfTimeRange range = request.getRange();
55 final TmfEventRequest subRequest =
56 new TmfEventRequest(ITmfEvent.class, range, 0, NB_EVENTS, ExecutionType.FOREGROUND) {
57 @Override
58 public void handleData(final ITmfEvent event) {
59 super.handleData(event);
60 handleIncomingData(event);
61 }
62 };
63 provider.sendRequest(subRequest);
64
65 // Return a dummy context
66 return new TmfContext();
67 }
68
69 // Queue 2 synthetic events per base event
70 private void handleIncomingData(final ITmfEvent e) {
71 queueResult(new TmfSyntheticEventStub(e));
72 queueResult(new TmfSyntheticEventStub(e));
73 }
74
75 private static final int TIMEOUT = 10000;
76
77 @Override
78 public TmfSyntheticEventStub getNext(final ITmfContext context) {
79 TmfSyntheticEventStub data = null;
80 try {
81 data = (TmfSyntheticEventStub) fDataQueue.poll(TIMEOUT, TimeUnit.MILLISECONDS);
82 if (data == null) {
83 throw new InterruptedException();
84 }
85 }
86 catch (final InterruptedException e) {
87 }
88 return data;
89 }
90
91 public void queueResult(final TmfSyntheticEventStub data) {
92 boolean ok = false;
93 try {
94 ok = fDataQueue.offer(data, TIMEOUT, TimeUnit.MILLISECONDS);
95 if (!ok) {
96 throw new InterruptedException();
97 }
98 }
99 catch (final InterruptedException e) {
100 }
101 }
102
103 }
This page took 0.034278 seconds and 5 git commands to generate.