Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c7992e9047984f4175b6b873541a51c1d19e8915 (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
/*******************************************************************************
 * Copyright (c) 1997-2009 by ProSyst Software GmbH
 * http://www.prosyst.com
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    ProSyst Software GmbH - 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.osgi.service.component.ComponentContext;


public class BoundReplacer 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(DynamicService dynService) {
    boundServiceEvents.addElement(new DSEvent(DSEvent.ACT_BOUND, dynService));
    boundServices.put(BoundMainProvider.DYNAMIC_SERVICE, dynService);
  }
  
  public void unbindDynamicService(DynamicService dynService) {
    boundServiceEvents.addElement(new DSEvent(DSEvent.ACT_UNBOUND, dynService));
  }
  
  public void bindNamedService(NamedService namedService) {
    boundServiceEvents.addElement(new DSEvent(DSEvent.ACT_BOUND, namedService));
    boundServices.put(BoundMainProvider.NAMED_SERVICE, namedService);
  }
  
  public void unbindNamedService(NamedService namedService) {
    boundServiceEvents.addElement(new DSEvent(DSEvent.ACT_UNBOUND, namedService));
  }

  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