Search in sources :

Example 6 with Address

use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.

the class SimpleAddressManager method getMatchingBindings.

@Override
public Bindings getMatchingBindings(final SimpleString address) throws Exception {
    Address add = new AddressImpl(address, wildcardConfiguration);
    Bindings bindings = bindingsFactory.createBindings(address);
    for (Binding binding : nameMap.values()) {
        Address addCheck = new AddressImpl(binding.getAddress(), wildcardConfiguration);
        if (addCheck.matches(add)) {
            bindings.addBinding(binding);
        }
    }
    return bindings;
}
Also used : Binding(org.apache.activemq.artemis.core.postoffice.Binding) QueueBinding(org.apache.activemq.artemis.core.postoffice.QueueBinding) CompositeAddress(org.apache.activemq.artemis.utils.CompositeAddress) Address(org.apache.activemq.artemis.core.postoffice.Address) Bindings(org.apache.activemq.artemis.core.postoffice.Bindings)

Example 7 with Address

use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.

the class AddressImplTest method testF.

@Test
public void testF() {
    SimpleString s1 = new SimpleString("a.b.c.d.e.f");
    SimpleString s2 = new SimpleString("a.b.c.x.e.f");
    SimpleString s3 = new SimpleString("#");
    Address a1 = new AddressImpl(s1);
    Address a2 = new AddressImpl(s2);
    Address w = new AddressImpl(s3);
    Assert.assertTrue(a1.matches(w));
    Assert.assertTrue(a2.matches(w));
}
Also used : Address(org.apache.activemq.artemis.core.postoffice.Address) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AddressImpl(org.apache.activemq.artemis.core.postoffice.impl.AddressImpl) Test(org.junit.Test)

Example 8 with Address

use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.

the class AddressImplTest method testG.

@Test
public void testG() {
    SimpleString s1 = new SimpleString("a.b.c.d.e.f");
    SimpleString s2 = new SimpleString("a.b.c.x.e.f");
    SimpleString s3 = new SimpleString("a.#");
    Address a1 = new AddressImpl(s1);
    Address a2 = new AddressImpl(s2);
    Address w = new AddressImpl(s3);
    Assert.assertTrue(a1.matches(w));
    Assert.assertTrue(a2.matches(w));
}
Also used : Address(org.apache.activemq.artemis.core.postoffice.Address) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AddressImpl(org.apache.activemq.artemis.core.postoffice.impl.AddressImpl) Test(org.junit.Test)

Example 9 with Address

use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.

the class AddressImplTest method testDotsSameLength2.

@Test
public void testDotsSameLength2() {
    SimpleString s1 = new SimpleString("a.b");
    SimpleString s2 = new SimpleString("a.b");
    Address a1 = new AddressImpl(s1);
    Address a2 = new AddressImpl(s2);
    Assert.assertTrue(a1.matches(a2));
}
Also used : Address(org.apache.activemq.artemis.core.postoffice.Address) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AddressImpl(org.apache.activemq.artemis.core.postoffice.impl.AddressImpl) Test(org.junit.Test)

Example 10 with Address

use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.

the class AddressImplTest method testI.

@Test
public void testI() {
    SimpleString s1 = new SimpleString("a.b.c.d.e.f");
    SimpleString s2 = new SimpleString("a.b.c.x.e.f");
    SimpleString s3 = new SimpleString("a.#.b.#");
    Address a1 = new AddressImpl(s1);
    Address a2 = new AddressImpl(s2);
    Address w = new AddressImpl(s3);
    Assert.assertTrue(a1.matches(w));
    Assert.assertTrue(a2.matches(w));
}
Also used : Address(org.apache.activemq.artemis.core.postoffice.Address) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AddressImpl(org.apache.activemq.artemis.core.postoffice.impl.AddressImpl) Test(org.junit.Test)

Aggregations

Address (org.apache.activemq.artemis.core.postoffice.Address)31 SimpleString (org.apache.activemq.artemis.api.core.SimpleString)24 Test (org.junit.Test)24 AddressImpl (org.apache.activemq.artemis.core.postoffice.impl.AddressImpl)23 Bindings (org.apache.activemq.artemis.core.postoffice.Bindings)4 Binding (org.apache.activemq.artemis.core.postoffice.Binding)3 Field (java.lang.reflect.Field)1 Map (java.util.Map)1 QueueBinding (org.apache.activemq.artemis.core.postoffice.QueueBinding)1 WildcardAddressManager (org.apache.activemq.artemis.core.postoffice.impl.WildcardAddressManager)1 AddressInfo (org.apache.activemq.artemis.core.server.impl.AddressInfo)1 CompositeAddress (org.apache.activemq.artemis.utils.CompositeAddress)1