Search in sources :

Example 16 with FatalError

use of com.arjuna.ats.arjuna.exceptions.FatalError in project narayana by jbosstm.

the class ContextORBInitializerImpl method pre_init.

public void pre_init(ORBInitInfo init_info) {
    if (jtsLogger.logger.isTraceEnabled()) {
        jtsLogger.logger.trace("ContextORBInitializer.pre_init ()");
    }
    /*
	 * These value should be part of the standard.
	 */
    int localSlot = init_info.allocate_slot_id();
    int receivedSlot = init_info.allocate_slot_id();
    OTSManager.setLocalSlotId(localSlot);
    OTSManager.setReceivedSlotId(receivedSlot);
    /*
	 * Get the CDR codec; used for encoding/decoding the service
	 * context and IOR components.
	 */
    Codec cdr_codec = null;
    try {
        if (jtsLogger.logger.isTraceEnabled()) {
            jtsLogger.logger.trace("ContextORBInitializerImpl - getting reference to ENCODING_CDR_ENCAPS codec");
        }
        Encoding cdr_encoding = new Encoding(ENCODING_CDR_ENCAPS.value, (byte) 1, (byte) 2);
        cdr_codec = init_info.codec_factory().create_codec(cdr_encoding);
    } catch (UnknownEncoding ex) {
        jtsLogger.i18NLogger.warn_orbspecific_javaidl_interceptors_context_codecerror("ContextORBInitializerImpl", "ENCODING_CDR_ENCAPS", ex);
        throw new FatalError(jtsLogger.i18NLogger.get_orbspecific_javaidl_interceptors_context_codeccreate(), ex);
    }
    try {
        if (jtsLogger.logger.isTraceEnabled()) {
            jtsLogger.logger.trace("ContextORBInitializerImpl - registering ClientRequestInterceptor");
        }
        ClientRequestInterceptor client_interceptor = new ContextClientRequestInterceptorImpl(localSlot, cdr_codec);
        init_info.add_client_request_interceptor(client_interceptor);
    } catch (DuplicateName ex) {
        jtsLogger.i18NLogger.warn_orbspecific_javaidl_interceptors_context_duplicatename("ContextORBInitializerImpl", "ClientRequestInterceptor", ex);
        throw new FatalError(jtsLogger.i18NLogger.get_orbspecific_javaidl_interceptors_context_cie(), ex);
    }
    try {
        if (jtsLogger.logger.isTraceEnabled()) {
            jtsLogger.logger.trace("ContextORBInitializerImpl - registering ServerRequestInterceptor");
        }
        ServerRequestInterceptor server_interceptor = new ContextServerRequestInterceptorImpl(receivedSlot, cdr_codec);
        init_info.add_server_request_interceptor(server_interceptor);
    } catch (DuplicateName ex) {
        jtsLogger.i18NLogger.warn_orbspecific_javaidl_interceptors_context_duplicatename("ContextORBInitializerImpl", "ServerRequestInterceptor", ex);
        throw new FatalError(jtsLogger.i18NLogger.get_orbspecific_javaidl_interceptors_context_sie(), ex);
    }
}
Also used : FatalError(com.arjuna.ats.arjuna.exceptions.FatalError) Codec(org.omg.IOP.Codec) ClientRequestInterceptor(org.omg.PortableInterceptor.ClientRequestInterceptor) UnknownEncoding(org.omg.IOP.CodecFactoryPackage.UnknownEncoding) DuplicateName(org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName) Encoding(org.omg.IOP.Encoding) UnknownEncoding(org.omg.IOP.CodecFactoryPackage.UnknownEncoding) ServerRequestInterceptor(org.omg.PortableInterceptor.ServerRequestInterceptor)

Example 17 with FatalError

use of com.arjuna.ats.arjuna.exceptions.FatalError in project narayana by jbosstm.

the class ORBSetupTest method test.

@Test
public void test() {
    boolean staticSet = false;
    ORB myORB = null;
    RootOA myOA = null;
    Map<String, String> properties = opPropertyManager.getOrbPortabilityEnvironmentBean().getOrbInitializationProperties();
    properties.put(PostInitLoader.generateORBPropertyName("com.arjuna.orbportability.orb", ORB_NAME), "com.arjuna.ats.jts.utils.ORBSetup");
    opPropertyManager.getOrbPortabilityEnvironmentBean().setOrbInitializationProperties(properties);
    try {
        myORB = ORB.getInstance(ORB_NAME);
        myOA = OA.getRootOA(myORB);
        if (staticSet) {
            ORBManager.setORB(myORB);
        }
        try {
            myORB.initORB(new String[] {}, null);
            myOA.initOA();
            assertEquals(myORB, ORBManager.getORB());
        } catch (FatalError e) {
            if (staticSet) {
                System.out.println("FatalError thrown as expected");
            } else {
                fail("Error: " + e);
                e.printStackTrace(System.err);
            }
        }
        myOA.destroy();
        myORB.destroy();
    } catch (Throwable e) {
        fail("Error: " + e);
        e.printStackTrace(System.err);
    }
}
Also used : FatalError(com.arjuna.ats.arjuna.exceptions.FatalError) RootOA(com.arjuna.orbportability.RootOA) ORB(com.arjuna.orbportability.ORB) Test(org.junit.Test)

Example 18 with FatalError

use of com.arjuna.ats.arjuna.exceptions.FatalError in project narayana by jbosstm.

the class OTSThread method run.

public void run() {
    if (_currentControl != null) {
        try {
            CurrentImple current = OTSImpleManager.current();
            if (current != null) {
                current.resume(_currentControl);
                current = null;
            }
        } catch (Exception e) {
            jtsLogger.i18NLogger.warn_thread_resumefailed("OTSThread.run", e);
            throw new FatalError("OTSThread.run - " + jtsLogger.i18NLogger.get_thread_resumefailederror(), e);
        }
        _currentControl = null;
    }
}
Also used : FatalError(com.arjuna.ats.arjuna.exceptions.FatalError) CurrentImple(com.arjuna.ats.internal.jts.orbspecific.CurrentImple)

Example 19 with FatalError

use of com.arjuna.ats.arjuna.exceptions.FatalError in project narayana by jbosstm.

the class ContextORBInitializerImpl method pre_init.

public void pre_init(ORBInitInfo init_info) {
    if (jtsLogger.logger.isTraceEnabled()) {
        jtsLogger.logger.trace("ContextORBInitializer.pre_init ()");
    }
    /*
	 * These value should be part of the standard.
	 */
    int localSlot = init_info.allocate_slot_id();
    int receivedSlot = init_info.allocate_slot_id();
    OTSManager.setLocalSlotId(localSlot);
    OTSManager.setReceivedSlotId(receivedSlot);
    /*
	 * Get the CDR codec; used for encoding/decoding the service
	 * context and IOR components.
	 */
    Codec cdr_codec = null;
    try {
        if (jtsLogger.logger.isTraceEnabled()) {
            jtsLogger.logger.trace("ContextORBInitializerImpl - getting reference to ENCODING_CDR_ENCAPS codec");
        }
        Encoding cdr_encoding = new Encoding(ENCODING_CDR_ENCAPS.value, (byte) 1, (byte) 2);
        cdr_codec = init_info.codec_factory().create_codec(cdr_encoding);
    } catch (UnknownEncoding ex) {
        jtsLogger.i18NLogger.warn_orbspecific_javaidl_interceptors_context_codecerror("ContextORBInitializerImpl", "ENCODING_CDR_ENCAPS", ex);
        throw new FatalError(jtsLogger.i18NLogger.get_orbspecific_javaidl_interceptors_context_codeccreate(), ex);
    }
    try {
        if (jtsLogger.logger.isTraceEnabled()) {
            jtsLogger.logger.trace("ContextORBInitializerImpl - registering ClientRequestInterceptor");
        }
        ClientRequestInterceptor client_interceptor = new ContextClientRequestInterceptorImpl(localSlot, cdr_codec);
        init_info.add_client_request_interceptor(client_interceptor);
    } catch (DuplicateName ex) {
        jtsLogger.i18NLogger.warn_orbspecific_javaidl_interceptors_context_duplicatename("ContextORBInitializerImpl", "ClientRequestInterceptor", ex);
        throw new FatalError(jtsLogger.i18NLogger.get_orbspecific_javaidl_interceptors_context_cie(), ex);
    }
    try {
        if (jtsLogger.logger.isTraceEnabled()) {
            jtsLogger.logger.trace("ContextORBInitializerImpl - registering ServerRequestInterceptor");
        }
        ServerRequestInterceptor server_interceptor = new ContextServerRequestInterceptorImpl(receivedSlot, cdr_codec);
        init_info.add_server_request_interceptor(server_interceptor);
    } catch (DuplicateName ex) {
        jtsLogger.i18NLogger.warn_orbspecific_javaidl_interceptors_context_duplicatename("ContextORBInitializerImpl", "ServerRequestInterceptor", ex);
        throw new FatalError(jtsLogger.i18NLogger.get_orbspecific_javaidl_interceptors_context_sie(), ex);
    }
}
Also used : FatalError(com.arjuna.ats.arjuna.exceptions.FatalError) Codec(org.omg.IOP.Codec) ClientRequestInterceptor(org.omg.PortableInterceptor.ClientRequestInterceptor) UnknownEncoding(org.omg.IOP.CodecFactoryPackage.UnknownEncoding) DuplicateName(org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName) Encoding(org.omg.IOP.Encoding) UnknownEncoding(org.omg.IOP.CodecFactoryPackage.UnknownEncoding) ServerRequestInterceptor(org.omg.PortableInterceptor.ServerRequestInterceptor)

Aggregations

FatalError (com.arjuna.ats.arjuna.exceptions.FatalError)19 Codec (org.omg.IOP.Codec)6 UnknownEncoding (org.omg.IOP.CodecFactoryPackage.UnknownEncoding)6 Encoding (org.omg.IOP.Encoding)6 ClientRequestInterceptor (org.omg.PortableInterceptor.ClientRequestInterceptor)6 DuplicateName (org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName)6 ServerRequestInterceptor (org.omg.PortableInterceptor.ServerRequestInterceptor)6 IOException (java.io.IOException)4 Test (org.junit.Test)3 ObjectStoreEnvironmentBean (com.arjuna.ats.arjuna.common.ObjectStoreEnvironmentBean)2 CurrentImple (com.arjuna.ats.internal.jts.orbspecific.CurrentImple)2 File (java.io.File)2 Uid (com.arjuna.ats.arjuna.common.Uid)1 ObjectStoreError (com.arjuna.ats.arjuna.exceptions.ObjectStoreError)1 ObjectStoreException (com.arjuna.ats.arjuna.exceptions.ObjectStoreException)1 TwoPhaseVolatileStore (com.arjuna.ats.internal.arjuna.objectstore.TwoPhaseVolatileStore)1 TransactionFactoryImple (com.arjuna.ats.internal.jts.orbspecific.TransactionFactoryImple)1 ORB (com.arjuna.orbportability.ORB)1 RootOA (com.arjuna.orbportability.RootOA)1 ByteArrayOutputStream (java.io.ByteArrayOutputStream)1