Search in sources :

Example 1 with ProductMgrImpl

use of org.codice.alliance.nsili.endpoint.managers.ProductMgrImpl in project alliance by codice.

the class ProductMgrImplTest method setUp.

@Before
public void setUp() throws Exception {
    setupCommonMocks();
    setupProductMgrMocks();
    try {
        setupOrb();
        orbRunThread = new Thread(() -> orb.run());
        orbRunThread.start();
    } catch (InvalidName | AdapterInactive | WrongPolicy | ServantNotActive e) {
        LOGGER.error("Unable to start the CORBA server", e);
    } catch (IOException e) {
        LOGGER.error("Unable to generate the IOR file", e);
    } catch (SecurityServiceException e) {
        LOGGER.error("Unable to setup guest security credentials", e);
    }
    String managerId = UUID.randomUUID().toString();
    productMgr = new ProductMgrImpl(null);
    productMgr.setFilterBuilder(new GeotoolsFilterBuilder());
    productMgr.setCatalogFramework(mockCatalogFramework);
    productMgr.setOutgoingValidationEnabled(false);
    if (!CorbaUtils.isIdActive(rootPOA, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
        try {
            rootPOA.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), productMgr);
        } catch (ServantAlreadyActive | ObjectAlreadyActive | WrongPolicy e) {
            LOGGER.error("Error activating ProductMgr: {}", e);
        }
    }
    rootPOA.create_reference_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), ProductMgrHelper.id());
}
Also used : SecurityServiceException(ddf.security.service.SecurityServiceException) ObjectAlreadyActive(org.omg.PortableServer.POAPackage.ObjectAlreadyActive) AdapterInactive(org.omg.PortableServer.POAManagerPackage.AdapterInactive) ProductMgrImpl(org.codice.alliance.nsili.endpoint.managers.ProductMgrImpl) ServantNotActive(org.omg.PortableServer.POAPackage.ServantNotActive) IOException(java.io.IOException) WrongPolicy(org.omg.PortableServer.POAPackage.WrongPolicy) InvalidName(org.omg.CORBA.ORBPackage.InvalidName) GeotoolsFilterBuilder(ddf.catalog.filter.proxy.builder.GeotoolsFilterBuilder) ServantAlreadyActive(org.omg.PortableServer.POAPackage.ServantAlreadyActive) Before(org.junit.Before)

Example 2 with ProductMgrImpl

use of org.codice.alliance.nsili.endpoint.managers.ProductMgrImpl in project alliance by codice.

the class LibraryImpl method getProductObject.

private Object getProductObject(String managerId) {
    Object obj;
    ProductMgrImpl productMgr = new ProductMgrImpl(querySources);
    productMgr.setCatalogFramework(catalogFramework);
    productMgr.setFilterBuilder(filterBuilder);
    productMgr.setOutgoingValidationEnabled(outgoingValidationEnabled);
    if (!CorbaUtils.isIdActive(poa, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
        try {
            poa.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), productMgr);
        } catch (ServantAlreadyActive | ObjectAlreadyActive | WrongPolicy e) {
            LOGGER.info("Error activating ProductMgr: ", e);
        }
    }
    obj = poa.create_reference_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), ProductMgrHelper.id());
    return obj;
}
Also used : WrongPolicy(org.omg.PortableServer.POAPackage.WrongPolicy) ObjectAlreadyActive(org.omg.PortableServer.POAPackage.ObjectAlreadyActive) ProductMgrImpl(org.codice.alliance.nsili.endpoint.managers.ProductMgrImpl) Object(org.omg.CORBA.Object) ServantAlreadyActive(org.omg.PortableServer.POAPackage.ServantAlreadyActive)

Aggregations

ProductMgrImpl (org.codice.alliance.nsili.endpoint.managers.ProductMgrImpl)2 ObjectAlreadyActive (org.omg.PortableServer.POAPackage.ObjectAlreadyActive)2 ServantAlreadyActive (org.omg.PortableServer.POAPackage.ServantAlreadyActive)2 WrongPolicy (org.omg.PortableServer.POAPackage.WrongPolicy)2 GeotoolsFilterBuilder (ddf.catalog.filter.proxy.builder.GeotoolsFilterBuilder)1 SecurityServiceException (ddf.security.service.SecurityServiceException)1 IOException (java.io.IOException)1 Before (org.junit.Before)1 InvalidName (org.omg.CORBA.ORBPackage.InvalidName)1 Object (org.omg.CORBA.Object)1 AdapterInactive (org.omg.PortableServer.POAManagerPackage.AdapterInactive)1 ServantNotActive (org.omg.PortableServer.POAPackage.ServantNotActive)1