Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5870b4a49ac30b99d8b99f6eb2861de6932366b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*******************************************************************************
 * Copyright (c) 2011 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.ds.tests.tb4;

import java.util.Dictionary;
import java.util.Hashtable;
import java.util.Vector;

import org.eclipse.equinox.ds.tests.tbc.BoundMainProvider;
import org.eclipse.equinox.ds.tests.tbc.ComponentContextProvider;
import org.eclipse.equinox.ds.tests.tbc.DSEvent;
import org.eclipse.equinox.ds.tests.tbc.DSEventsProvider;
import org.eclipse.equinox.ds.tests.tbc.DynamicWorker;
import org.eclipse.equinox.ds.tests.tbc.StaticWorker;
import org.osgi.service.component.ComponentContext;


public class AdvancedBounder implements DSEventsProvider, BoundMainProvider, ComponentContextProvider {


  private Hashtable boundServices = new Hashtable();
  private Vector boundServiceEvents = new Vector();
  private ComponentContext ctxt;
  
  public void activate(ComponentContext ctxt) {
    this.ctxt = ctxt;
  }
  
  public void deactivate(ComponentContext ctxt) {
    this.ctxt = null;
  }
  
  public void bindDynamicService(DynamicWorker dynService) {
    boundServiceEvents.addElement(new DSEvent(DSEvent.ACT_BOUND, dynService));
    boundServices.put(BoundMainProvider.DYNAMIC_SERVICE, dynService);
  }
  
  public void unbindDynamicService(DynamicWorker dynService) {
    boundServiceEvents.addElement(new DSEvent(DSEvent.ACT_UNBOUND, dynService));
  }
  
  public void bindStaticService(StaticWorker staticService) {
    boundServiceEvents.addElement(new DSEvent(DSEvent.ACT_BOUND, staticService));
    boundServices.put(BoundMainProvider.STATIC_SERVICE, staticService);
  }
  
  public void unbindStaticService(StaticWorker staticService) {
    boundServiceEvents.addElement(new DSEvent(DSEvent.ACT_UNBOUND, staticService));
  }

  public Dictionary getProperties() {
    return null;
  }

  public DSEvent[] getEvents() {
    DSEvent[] events = new DSEvent[boundServiceEvents.size()];
    boundServiceEvents.copyInto(events);
    return events;
  }

  public Object getBoundService(String serviceName) {
    return boundServices.get(serviceName);
  }

  public void resetEvents() {
    boundServiceEvents.removeAllElements();
  }

  public ComponentContext getComponentContext() {
    return ctxt;
  }
  
}

Back to the top