Search in sources :

Example 6 with Repository

use of org.apache.aries.blueprint.di.Repository in project aries by apache.

the class WiringTest method testDependencies.

public void testDependencies() throws Exception {
    CallbackTracker.clear();
    ComponentDefinitionRegistryImpl registry = parse("/test-depends-on.xml");
    Repository repository = new TestBlueprintContainer(registry).getRepository();
    Map instances = repository.createAll(Arrays.asList("c", "d", "e"), ProxyUtils.asList(Object.class));
    List<Callback> callback = CallbackTracker.getCallbacks();
    assertEquals(3, callback.size());
    checkInitCallback(instances.get("d"), callback.get(0));
    checkInitCallback(instances.get("c"), callback.get(1));
    checkInitCallback(instances.get("e"), callback.get(2));
    repository.destroy();
    assertEquals(6, callback.size());
    checkDestroyCallback(instances.get("e"), callback.get(3));
    checkDestroyCallback(instances.get("c"), callback.get(4));
    checkDestroyCallback(instances.get("d"), callback.get(5));
}
Also used : Repository(org.apache.aries.blueprint.di.Repository) BlueprintRepository(org.apache.aries.blueprint.container.BlueprintRepository) Callback(org.apache.aries.blueprint.CallbackTracker.Callback) MyObject(org.apache.aries.blueprint.pojos.PojoGenerics2.MyObject) ComponentDefinitionRegistryImpl(org.apache.aries.blueprint.parser.ComponentDefinitionRegistryImpl) HashMap(java.util.HashMap) Map(java.util.Map)

Example 7 with Repository

use of org.apache.aries.blueprint.di.Repository in project aries by apache.

the class WiringTest method testGenerics2.

public void testGenerics2() throws Exception {
    ComponentDefinitionRegistryImpl registry = parse("/test-generics.xml");
    Repository repository = new TestBlueprintContainer(registry).getRepository();
    repository.create("gen2");
}
Also used : Repository(org.apache.aries.blueprint.di.Repository) BlueprintRepository(org.apache.aries.blueprint.container.BlueprintRepository) ComponentDefinitionRegistryImpl(org.apache.aries.blueprint.parser.ComponentDefinitionRegistryImpl)

Example 8 with Repository

use of org.apache.aries.blueprint.di.Repository in project aries by apache.

the class WiringTest method testGenerics.

public void testGenerics() throws Exception {
    ComponentDefinitionRegistryImpl registry = parse("/test-generics.xml");
    Repository repository = new TestBlueprintContainer(registry).getRepository();
    List<Integer> expectedList = new ArrayList<Integer>();
    expectedList.add(new Integer(10));
    expectedList.add(new Integer(20));
    expectedList.add(new Integer(50));
    Set<Long> expectedSet = new HashSet<Long>();
    expectedSet.add(new Long(1000));
    expectedSet.add(new Long(2000));
    expectedSet.add(new Long(5000));
    Map<Short, Boolean> expectedMap = new HashMap<Short, Boolean>();
    expectedMap.put(new Short((short) 1), Boolean.TRUE);
    expectedMap.put(new Short((short) 2), Boolean.FALSE);
    expectedMap.put(new Short((short) 5), Boolean.TRUE);
    Object obj;
    PojoGenerics pojo;
    obj = repository.create("method");
    assertTrue(obj instanceof PojoGenerics);
    pojo = (PojoGenerics) obj;
    assertEquals(expectedList, pojo.getList());
    assertEquals(expectedSet, pojo.getSet());
    assertEquals(expectedMap, pojo.getMap());
    obj = repository.create("constructorList");
    assertTrue(obj instanceof PojoGenerics);
    pojo = (PojoGenerics) obj;
    assertEquals(expectedList, pojo.getList());
    obj = repository.create("constructorSet");
    assertTrue(obj instanceof PojoGenerics);
    pojo = (PojoGenerics) obj;
    assertEquals(expectedSet, pojo.getSet());
    obj = repository.create("constructorMap");
    assertTrue(obj instanceof PojoGenerics);
    pojo = (PojoGenerics) obj;
    assertEquals(expectedMap, pojo.getMap());
    obj = repository.create("genericPojo");
    assertTrue(obj instanceof Primavera);
    assertEquals("string", ((Primavera) obj).prop);
    obj = repository.create("doubleGenericPojo");
    assertTrue(obj instanceof Primavera);
    assertEquals("stringToo", ((Primavera) obj).prop);
}
Also used : PojoGenerics(org.apache.aries.blueprint.pojos.PojoGenerics) HashMap(java.util.HashMap) ArrayList(java.util.ArrayList) BigInteger(java.math.BigInteger) Repository(org.apache.aries.blueprint.di.Repository) BlueprintRepository(org.apache.aries.blueprint.container.BlueprintRepository) MyObject(org.apache.aries.blueprint.pojos.PojoGenerics2.MyObject) Primavera(org.apache.aries.blueprint.pojos.Primavera) ComponentDefinitionRegistryImpl(org.apache.aries.blueprint.parser.ComponentDefinitionRegistryImpl) HashSet(java.util.HashSet)

Example 9 with Repository

use of org.apache.aries.blueprint.di.Repository in project aries by apache.

the class WiringTest method testWiring.

public void testWiring() throws Exception {
    ComponentDefinitionRegistryImpl registry = parse("/test-wiring.xml");
    Repository repository = new TestBlueprintContainer(registry).getRepository();
    Object obj1 = repository.create("pojoA");
    assertNotNull(obj1);
    assertTrue(obj1 instanceof PojoA);
    PojoA pojoa = (PojoA) obj1;
    // test singleton scope
    assertTrue(obj1 == repository.create("pojoA"));
    Object obj2 = repository.create("pojoB");
    assertNotNull(obj2);
    assertTrue(obj2 instanceof PojoB);
    PojoB pojob = (PojoB) obj2;
    assertNotNull(pojoa.getPojob());
    assertNotNull(pojoa.getPojob().getUri());
    assertNotNull(pojoa.getList());
    assertEquals("list value", pojoa.getList().get(0));
    assertEquals(new Integer(55), pojoa.getList().get(2));
    assertEquals(URI.create("http://geronimo.apache.org"), pojoa.getList().get(3));
    Object c0 = pojoa.getList().get(1);
    Object c1 = pojoa.getList().get(4);
    assertNotNull(c0);
    assertNotNull(c1);
    assertEquals(PojoB.class, c0.getClass());
    assertEquals(PojoB.class, c1.getClass());
    assertNotSame(c0, c1);
    assertNotNull(pojoa.getArray());
    assertEquals("list value", pojoa.getArray()[0]);
    assertEquals(pojob, pojoa.getArray()[1]);
    assertEquals(new Integer(55), pojoa.getArray()[2]);
    assertEquals(URI.create("http://geronimo.apache.org"), pojoa.getArray()[3]);
    assertNotNull(pojoa.getSet());
    assertTrue(pojoa.getSet().contains("set value"));
    assertTrue(pojoa.getSet().contains(pojob.getUri()));
    assertTrue(pojoa.getSet().contains(URI.create("http://geronimo.apache.org")));
    assertNotNull(pojoa.getMap());
    assertEquals("val", pojoa.getMap().get("key"));
    assertEquals(pojob, pojoa.getMap().get(pojob));
    assertEquals(URI.create("http://geronimo.apache.org"), pojoa.getMap().get(new Integer(5)));
    assertNotNull(pojoa.getProps());
    assertEquals("value1", pojoa.getProps().get("key1"));
    assertEquals("value2", pojoa.getProps().get("2"));
    assertEquals("bar", pojoa.getProps().get("foo"));
    assertNotNull(pojoa.getNumber());
    assertEquals(new BigInteger("10"), pojoa.getNumber());
    assertNotNull(pojoa.getIntArray());
    assertEquals(3, pojoa.getIntArray().length);
    assertEquals(1, pojoa.getIntArray()[0]);
    assertEquals(50, pojoa.getIntArray()[1]);
    assertEquals(100, pojoa.getIntArray()[2]);
    assertNotNull(pojoa.getNumberArray());
    assertEquals(4, pojoa.getNumberArray().length);
    assertEquals(new Integer(1), pojoa.getNumberArray()[0]);
    assertEquals(new BigInteger("50"), pojoa.getNumberArray()[1]);
    assertEquals(new Long(100), pojoa.getNumberArray()[2]);
    assertEquals(new Integer(200), pojoa.getNumberArray()[3]);
    // test init-method
    assertEquals(true, pojob.getInitCalled());
    // test service
    Object obj3 = repository.create("service1");
    assertNotNull(obj3);
    assertTrue(obj3 instanceof ServiceRegistration);
    ExecutionContext.Holder.setContext((ExecutionContext) repository);
    for (Recipe r : ((ServiceRecipe) repository.getRecipe("service1")).getDependencies()) {
        if (r instanceof MapRecipe) {
            Map m = (Map) r.create();
            assertEquals("value1", m.get("key1"));
            assertEquals("value2", m.get("key2"));
            assertTrue(m.get("key3") instanceof List);
        }
    }
    ExecutionContext.Holder.setContext(null);
    // tests 'prototype' scope
    Object obj4 = repository.create("pojoC");
    assertNotNull(obj4);
    assertTrue(obj4 != repository.create("pojoC"));
    repository.destroy();
    // test destroy-method
    assertEquals(true, pojob.getDestroyCalled());
}
Also used : PojoB(org.apache.aries.blueprint.pojos.PojoB) ServiceRecipe(org.apache.aries.blueprint.container.ServiceRecipe) MapRecipe(org.apache.aries.blueprint.di.MapRecipe) Recipe(org.apache.aries.blueprint.di.Recipe) PojoA(org.apache.aries.blueprint.pojos.PojoA) MapRecipe(org.apache.aries.blueprint.di.MapRecipe) ServiceRecipe(org.apache.aries.blueprint.container.ServiceRecipe) BigInteger(java.math.BigInteger) Repository(org.apache.aries.blueprint.di.Repository) BlueprintRepository(org.apache.aries.blueprint.container.BlueprintRepository) BigInteger(java.math.BigInteger) MyObject(org.apache.aries.blueprint.pojos.PojoGenerics2.MyObject) ArrayList(java.util.ArrayList) List(java.util.List) ComponentDefinitionRegistryImpl(org.apache.aries.blueprint.parser.ComponentDefinitionRegistryImpl) HashMap(java.util.HashMap) Map(java.util.Map) ServiceRegistration(org.osgi.framework.ServiceRegistration)

Example 10 with Repository

use of org.apache.aries.blueprint.di.Repository in project aries by apache.

the class BlueprintContainerImpl method updateUninstantiatedRecipes.

private void updateUninstantiatedRecipes() {
    Repository tmpRepo = new NoOsgiRecipeBuilder(this, tempRecipeIdSpace).createRepository();
    LOGGER.debug("Updating blueprint repository");
    for (String name : repository.getNames()) {
        if (repository.getInstance(name) == null) {
            LOGGER.debug("Removing uninstantiated recipe {}", new Object[] { name });
            repository.removeRecipe(name);
        } else {
            LOGGER.debug("Recipe {} is already instantiated", new Object[] { name });
        }
    }
    for (String name : tmpRepo.getNames()) {
        if (repository.getInstance(name) == null) {
            LOGGER.debug("Adding new recipe {}", new Object[] { name });
            Recipe r = tmpRepo.getRecipe(name);
            if (r != null) {
                repository.putRecipe(name, r);
            }
        } else {
            LOGGER.debug("Recipe {} is already instantiated and cannot be updated", new Object[] { name });
        }
    }
}
Also used : Repository(org.apache.aries.blueprint.di.Repository) Recipe(org.apache.aries.blueprint.di.Recipe)

Aggregations

Repository (org.apache.aries.blueprint.di.Repository)14 ComponentDefinitionRegistryImpl (org.apache.aries.blueprint.parser.ComponentDefinitionRegistryImpl)12 BlueprintRepository (org.apache.aries.blueprint.container.BlueprintRepository)8 MyObject (org.apache.aries.blueprint.pojos.PojoGenerics2.MyObject)6 HashMap (java.util.HashMap)4 BigInteger (java.math.BigInteger)3 Map (java.util.Map)3 ArrayList (java.util.ArrayList)2 Recipe (org.apache.aries.blueprint.di.Recipe)2 BeanD (org.apache.aries.blueprint.pojos.BeanD)2 PojoA (org.apache.aries.blueprint.pojos.PojoA)2 PojoB (org.apache.aries.blueprint.pojos.PojoB)2 SimpleBean (org.apache.aries.blueprint.pojos.SimpleBean)2 ComponentDefinitionException (org.osgi.service.blueprint.container.ComponentDefinitionException)2 Calendar (java.util.Calendar)1 Collection (java.util.Collection)1 Date (java.util.Date)1 GregorianCalendar (java.util.GregorianCalendar)1 HashSet (java.util.HashSet)1 List (java.util.List)1