blob: 78bba0e9d84f7ac2a606b080bd827baeb0855528 [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.dm.test.bundle.annotation.publisher;
import java.io.IOException;
import java.util.Dictionary;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.Map;
import org.apache.felix.dm.annotation.api.FactoryConfigurationAdapterService;
import org.apache.felix.dm.annotation.api.Init;
import org.apache.felix.dm.annotation.api.LifecycleController;
import org.apache.felix.dm.annotation.api.Property;
import org.apache.felix.dm.annotation.api.Service;
import org.apache.felix.dm.annotation.api.ServiceDependency;
import org.apache.felix.dm.annotation.api.Start;
import org.apache.felix.dm.test.bundle.annotation.sequencer.Sequencer;
import org.osgi.service.cm.Configuration;
import org.osgi.service.cm.ConfigurationAdmin;
/**
* Test a FactoryConfigurationAdapterService which provides its interface using a @ServiceLifecycle.
*/
public class FactoryConfigurationAdapterServiceTestWithPublisher
{
public interface Provider
{
}
@Service
public static class Consumer
{
@ServiceDependency(filter="(test=FactoryConfigurationAdapterServiceTestWithPublisher)")
Sequencer m_sequencer;
@ServiceDependency(required=false, removed = "unbind")
void bind(Map properties, Provider provider)
{
m_sequencer.step(1);
// check ProviderImpl properties
if ("bar".equals(properties.get("foo")))
{
m_sequencer.step(2);
}
// check extra ProviderImpl properties (returned by start method)
if ("bar2".equals(properties.get("foo2")))
{
m_sequencer.step(3);
}
// check Factory Configuration properties
if ("bar3".equals(properties.get("foo3")))
{
m_sequencer.step(4);
}
}
void unbind(Provider provider)
{
m_sequencer.step(5);
}
}
@Service
public static class Configurator
{
@ServiceDependency
void bind(ConfigurationAdmin cm) throws IOException
{
Configuration cf = cm.createFactoryConfiguration("MyPid", null);
cf.update(new Hashtable() {{ put("foo3", "bar3"); }});
}
}
@FactoryConfigurationAdapterService(propagate=true, properties={@Property(name="foo", value="bar")}, factoryPid="MyPid", updated="updated")
public static class ProviderImpl implements Provider
{
@LifecycleController
Runnable m_publisher; // injected and used to register our service
@LifecycleController(start=false)
Runnable m_unpublisher; // injected and used to unregister our service
@ServiceDependency(filter="(test=FactoryConfigurationAdapterServiceTestWithPublisher)")
Sequencer m_sequencer;
void updated(Dictionary conf) {
}
@Init
void init()
{
// register service in 1 second
Utils.schedule(m_publisher, 1000);
// unregister the service in 2 seconds
Utils.schedule(m_unpublisher, 2000);
}
@Start
Map start()
{
// Add some extra service properties ... they will be appended to the one we have defined
// in the @Service annotation.
return new HashMap() {{ put("foo2", "bar2"); }};
}
}
}