blob: 3ee6a497f5b09dc210b3afc0ae65f75e1094e385 [file] [log] [blame]
Pierre De Rop5714eda2016-01-03 23:32:03 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19package org.apache.felix.dm.itest.bundle;
20
21import java.util.HashMap;
22import java.util.Map;
23
24import org.osgi.framework.Bundle;
25import org.osgi.framework.ServiceFactory;
26import org.osgi.framework.ServiceRegistration;
27
28public class HelloWorldServiceFactory implements ServiceFactory {
29 private final Map<ServiceRegistration, HelloWorldService> m_services = new HashMap<>();
30
31 public void stop() {
32 synchronized (m_services) {
33 if (!m_services.isEmpty()) {
34 throw new IllegalStateException("All services should be closed");
35 }
36 }
37 }
38
39 @Override
40 public HelloWorld getService(Bundle bundle, ServiceRegistration registration) {
41 HelloWorldService service = new HelloWorldService();
42 synchronized (m_services) {
43 HelloWorldService old = m_services.put(registration, service);
44 assert old == null;
45 }
46 return service;
47 }
48
49 @Override
50 public void ungetService(Bundle bundle, ServiceRegistration registration, Object service) {
51 synchronized (m_services) {
52 HelloWorldService old = m_services.remove(registration);
53 HelloWorldService serv = (HelloWorldService) service;
54 assert serv == old;
55 }
56 }
57}