blob: a2c80d2a5ec67f4935ac2c6a99016679b7fac224 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.felix.ipojo.handler.whiteboard.components;
import org.apache.felix.ipojo.handler.whiteboard.services.Observable;
import org.osgi.framework.ServiceReference;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class FooWhiteBoardPattern implements Observable {
List list = new ArrayList();
int modifications = 0;
long validate_time = 0;
long first_arrival_time = 0;
long first_departure_time = 0;
long invalidate_time = 0;
public void onArrival(ServiceReference ref) {
if (first_arrival_time == 0) {
first_arrival_time = System.currentTimeMillis();
try {
Thread.sleep(10);
} catch (InterruptedException e) { }
}
list.add(ref);
}
public void onDeparture(ServiceReference ref) {
list.remove(ref);
if (first_departure_time == 0) {
first_departure_time = System.currentTimeMillis();
try {
Thread.sleep(10);
} catch (InterruptedException e) { }
}
}
public void onModification(ServiceReference ref) {
modifications = modifications + 1;
}
public Map getObservations() {
Map map = new HashMap();
map.put("list", list);
map.put("modifications", new Integer(modifications));
map.put("validate", new Long(validate_time));
map.put("invalidate", new Long(invalidate_time));
map.put("arrival", new Long(first_arrival_time));
map.put("departure", new Long(first_departure_time));
return map;
}
public void start() {
if (validate_time == 0) {
validate_time = System.currentTimeMillis();
try {
Thread.sleep(10);
} catch (InterruptedException e) { }
}
}
public void stop() {
if (invalidate_time == 0) {
invalidate_time = System.currentTimeMillis();
try {
Thread.sleep(10);
} catch (InterruptedException e) { }
}
}
}