Java Code Examples for com.sun.corba.se.spi.ior.IORFactories
The following examples show how to use
com.sun.corba.se.spi.ior.IORFactories.
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source Project: jdk1.8-source-analysis Author: raysonfang File: POAImpl.java License: Apache License 2.0 | 6 votes |
private byte[] internalReferenceToId( org.omg.CORBA.Object reference ) throws WrongAdapter { IOR ior = ORBUtility.getIOR( reference ) ; IORTemplateList thisTemplate = ior.getIORTemplates() ; ObjectReferenceFactory orf = getCurrentFactory() ; IORTemplateList poaTemplate = IORFactories.getIORTemplateList( orf ) ; if (!poaTemplate.isEquivalent( thisTemplate )) throw new WrongAdapter(); // Extract the ObjectId from the first TaggedProfile in the IOR. // If ior was created in this POA, the same ID was used for // every profile through the profile templates in the currentFactory, // so we will get the same result from any profile. Iterator iter = ior.iterator() ; if (!iter.hasNext()) throw iorWrapper().noProfilesInIor() ; TaggedProfile prof = (TaggedProfile)(iter.next()) ; ObjectId oid = prof.getObjectId() ; return oid.getId(); }
Example #2
Source Project: openjdk-8 Author: bpupadhyaya File: POAImpl.java License: GNU General Public License v2.0 | 6 votes |
private byte[] internalReferenceToId( org.omg.CORBA.Object reference ) throws WrongAdapter { IOR ior = ORBUtility.getIOR( reference ) ; IORTemplateList thisTemplate = ior.getIORTemplates() ; ObjectReferenceFactory orf = getCurrentFactory() ; IORTemplateList poaTemplate = IORFactories.getIORTemplateList( orf ) ; if (!poaTemplate.isEquivalent( thisTemplate )) throw new WrongAdapter(); // Extract the ObjectId from the first TaggedProfile in the IOR. // If ior was created in this POA, the same ID was used for // every profile through the profile templates in the currentFactory, // so we will get the same result from any profile. Iterator iter = ior.iterator() ; if (!iter.hasNext()) throw iorWrapper().noProfilesInIor() ; TaggedProfile prof = (TaggedProfile)(iter.next()) ; ObjectId oid = prof.getObjectId() ; return oid.getId(); }
Example #3
Source Project: openjdk-jdk8u Author: AdoptOpenJDK File: BootstrapResolverImpl.java License: GNU General Public License v2.0 | 6 votes |
public BootstrapResolverImpl(ORB orb, String host, int port) { wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.ORB_RESOLVER ) ; // Create a new IOR with the magic of INIT byte[] initialKey = "INIT".getBytes() ; ObjectKey okey = orb.getObjectKeyFactory().create(initialKey) ; IIOPAddress addr = IIOPFactories.makeIIOPAddress( orb, host, port ) ; IIOPProfileTemplate ptemp = IIOPFactories.makeIIOPProfileTemplate( orb, GIOPVersion.V1_0, addr); IORTemplate iortemp = IORFactories.makeIORTemplate( okey.getTemplate() ) ; iortemp.add( ptemp ) ; IOR initialIOR = iortemp.makeIOR( (com.sun.corba.se.spi.orb.ORB)orb, "", okey.getId() ) ; bootstrapDelegate = ORBUtility.makeClientDelegate( initialIOR ) ; }
Example #4
Source Project: TencentKona-8 Author: Tencent File: CDROutputStream_1_0.java License: GNU General Public License v2.0 | 6 votes |
public void write_Object(org.omg.CORBA.Object ref) { if (ref == null) { IOR nullIOR = IORFactories.makeIOR( orb ) ; nullIOR.write(parent); return; } // IDL to Java formal 01-06-06 1.21.4.2 if (ref instanceof org.omg.CORBA.LocalObject) throw wrapper.writeLocalObject(CompletionStatus.COMPLETED_MAYBE); IOR ior = ORBUtility.connectAndGetIOR( orb, ref ) ; ior.write(parent); return; }
Example #5
Source Project: openjdk-8 Author: bpupadhyaya File: BootstrapResolverImpl.java License: GNU General Public License v2.0 | 6 votes |
public BootstrapResolverImpl(ORB orb, String host, int port) { wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.ORB_RESOLVER ) ; // Create a new IOR with the magic of INIT byte[] initialKey = "INIT".getBytes() ; ObjectKey okey = orb.getObjectKeyFactory().create(initialKey) ; IIOPAddress addr = IIOPFactories.makeIIOPAddress( orb, host, port ) ; IIOPProfileTemplate ptemp = IIOPFactories.makeIIOPProfileTemplate( orb, GIOPVersion.V1_0, addr); IORTemplate iortemp = IORFactories.makeIORTemplate( okey.getTemplate() ) ; iortemp.add( ptemp ) ; IOR initialIOR = iortemp.makeIOR( (com.sun.corba.se.spi.orb.ORB)orb, "", okey.getId() ) ; bootstrapDelegate = ORBUtility.makeClientDelegate( initialIOR ) ; }
Example #6
Source Project: hottub Author: dsrg-uoft File: BootstrapResolverImpl.java License: GNU General Public License v2.0 | 6 votes |
public BootstrapResolverImpl(ORB orb, String host, int port) { wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.ORB_RESOLVER ) ; // Create a new IOR with the magic of INIT byte[] initialKey = "INIT".getBytes() ; ObjectKey okey = orb.getObjectKeyFactory().create(initialKey) ; IIOPAddress addr = IIOPFactories.makeIIOPAddress( orb, host, port ) ; IIOPProfileTemplate ptemp = IIOPFactories.makeIIOPProfileTemplate( orb, GIOPVersion.V1_0, addr); IORTemplate iortemp = IORFactories.makeIORTemplate( okey.getTemplate() ) ; iortemp.add( ptemp ) ; IOR initialIOR = iortemp.makeIOR( (com.sun.corba.se.spi.orb.ORB)orb, "", okey.getId() ) ; bootstrapDelegate = ORBUtility.makeClientDelegate( initialIOR ) ; }
Example #7
Source Project: jdk8u60 Author: chenghanpeng File: POAImpl.java License: GNU General Public License v2.0 | 6 votes |
private byte[] internalReferenceToId( org.omg.CORBA.Object reference ) throws WrongAdapter { IOR ior = ORBUtility.getIOR( reference ) ; IORTemplateList thisTemplate = ior.getIORTemplates() ; ObjectReferenceFactory orf = getCurrentFactory() ; IORTemplateList poaTemplate = IORFactories.getIORTemplateList( orf ) ; if (!poaTemplate.isEquivalent( thisTemplate )) throw new WrongAdapter(); // Extract the ObjectId from the first TaggedProfile in the IOR. // If ior was created in this POA, the same ID was used for // every profile through the profile templates in the currentFactory, // so we will get the same result from any profile. Iterator iter = ior.iterator() ; if (!iter.hasNext()) throw iorWrapper().noProfilesInIor() ; TaggedProfile prof = (TaggedProfile)(iter.next()) ; ObjectId oid = prof.getObjectId() ; return oid.getId(); }
Example #8
Source Project: jdk8u60 Author: chenghanpeng File: CDROutputStream_1_0.java License: GNU General Public License v2.0 | 6 votes |
public void write_Object(org.omg.CORBA.Object ref) { if (ref == null) { IOR nullIOR = IORFactories.makeIOR( orb ) ; nullIOR.write(parent); return; } // IDL to Java formal 01-06-06 1.21.4.2 if (ref instanceof org.omg.CORBA.LocalObject) throw wrapper.writeLocalObject(CompletionStatus.COMPLETED_MAYBE); IOR ior = ORBUtility.connectAndGetIOR( orb, ref ) ; ior.write(parent); return; }
Example #9
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: CDROutputStream_1_0.java License: GNU General Public License v2.0 | 6 votes |
public void write_Object(org.omg.CORBA.Object ref) { if (ref == null) { IOR nullIOR = IORFactories.makeIOR( orb ) ; nullIOR.write(parent); return; } // IDL to Java formal 01-06-06 1.21.4.2 if (ref instanceof org.omg.CORBA.LocalObject) throw wrapper.writeLocalObject(CompletionStatus.COMPLETED_MAYBE); IOR ior = ORBUtility.connectAndGetIOR( orb, ref ) ; ior.write(parent); return; }
Example #10
Source Project: JDKSourceCode1.8 Author: wupeixuan File: CDROutputStream_1_0.java License: MIT License | 6 votes |
public void write_Object(org.omg.CORBA.Object ref) { if (ref == null) { IOR nullIOR = IORFactories.makeIOR( orb ) ; nullIOR.write(parent); return; } // IDL to Java formal 01-06-06 1.21.4.2 if (ref instanceof org.omg.CORBA.LocalObject) throw wrapper.writeLocalObject(CompletionStatus.COMPLETED_MAYBE); IOR ior = ORBUtility.connectAndGetIOR( orb, ref ) ; ior.write(parent); return; }
Example #11
Source Project: jdk1.8-source-analysis Author: raysonfang File: ObjectAdapterBase.java License: Apache License 2.0 | 5 votes |
final public void initializeTemplate( ObjectKeyTemplate oktemp, boolean notifyORB, Policies policies, String codebase, String objectAdapterManagerId, ObjectAdapterId objectAdapterId) { adapterId = oktemp.getAdapterId() ; iortemp = IORFactories.makeIORTemplate(oktemp) ; // This calls acceptors which create profiles and may // add tagged components to those profiles. orb.getCorbaTransportManager().addToIORTemplate( iortemp, policies, codebase, objectAdapterManagerId, objectAdapterId); adapterTemplate = IORFactories.makeObjectReferenceTemplate( orb, iortemp ) ; currentFactory = adapterTemplate ; if (notifyORB) { PIHandler pih = orb.getPIHandler() ; if (pih != null) // This runs the IORInterceptors. pih.objectAdapterCreated( this ) ; } iortemp.makeImmutable() ; }
Example #12
Source Project: JDKSourceCode1.8 Author: wupeixuan File: ORBImpl.java License: MIT License | 5 votes |
/** * Convert an object ref to a string. * @param obj The object to stringify. * @return A stringified object reference. */ public synchronized String object_to_string(org.omg.CORBA.Object obj) { checkShutdownState(); // Handle the null objref case if (obj == null) { IOR nullIOR = IORFactories.makeIOR( this ) ; return nullIOR.stringify(); } IOR ior = null ; try { ior = ORBUtility.connectAndGetIOR( this, obj ) ; } catch (BAD_PARAM bp) { // Throw MARSHAL instead if this is a LOCAL_OBJECT_NOT_ALLOWED error. if (bp.minor == ORBUtilSystemException.LOCAL_OBJECT_NOT_ALLOWED) { throw omgWrapper.notAnObjectImpl( bp ) ; } else // Not a local object problem: just rethrow the exception. // Do not wrap and log this, since it was already logged at its // point of origin. throw bp ; } return ior.stringify() ; }
Example #13
Source Project: jdk1.8-source-analysis Author: raysonfang File: ReplyMessage_1_0.java License: Apache License 2.0 | 5 votes |
public void read(org.omg.CORBA.portable.InputStream istream) { super.read(istream); this.service_contexts = new ServiceContexts((org.omg.CORBA_2_3.portable.InputStream) istream); this.request_id = istream.read_ulong(); this.reply_status = istream.read_long(); isValidReplyStatus(this.reply_status); // raises exception on error // The code below reads the reply body in some cases // SYSTEM_EXCEPTION & LOCATION_FORWARD if (this.reply_status == SYSTEM_EXCEPTION) { String reposId = istream.read_string(); this.exClassName = ORBUtility.classNameOf(reposId); this.minorCode = istream.read_long(); int status = istream.read_long(); switch (status) { case CompletionStatus._COMPLETED_YES: this.completionStatus = CompletionStatus.COMPLETED_YES; break; case CompletionStatus._COMPLETED_NO: this.completionStatus = CompletionStatus.COMPLETED_NO; break; case CompletionStatus._COMPLETED_MAYBE: this.completionStatus = CompletionStatus.COMPLETED_MAYBE; break; default: throw wrapper.badCompletionStatusInReply( CompletionStatus.COMPLETED_MAYBE, new Integer(status) ); } } else if (this.reply_status == USER_EXCEPTION) { // do nothing. The client stub will read the exception from body. } else if (this.reply_status == LOCATION_FORWARD) { CDRInputStream cdr = (CDRInputStream) istream; this.ior = IORFactories.makeIOR( cdr ) ; } }
Example #14
Source Project: jdk1.8-source-analysis Author: raysonfang File: LocateReplyMessage_1_0.java License: Apache License 2.0 | 5 votes |
public void read(org.omg.CORBA.portable.InputStream istream) { super.read(istream); this.request_id = istream.read_ulong(); this.locate_status = istream.read_long(); isValidReplyStatus(this.locate_status); // raises exception on error // The code below reads the reply body if status is OBJECT_FORWARD if (this.locate_status == OBJECT_FORWARD) { CDRInputStream cdr = (CDRInputStream) istream; this.ior = IORFactories.makeIOR( cdr ) ; } }
Example #15
Source Project: jdk1.8-source-analysis Author: raysonfang File: LocateReplyMessage_1_1.java License: Apache License 2.0 | 5 votes |
public void read(org.omg.CORBA.portable.InputStream istream) { super.read(istream); this.request_id = istream.read_ulong(); this.reply_status = istream.read_long(); isValidReplyStatus(this.reply_status); // raises exception on error // The code below reads the reply body if status is OBJECT_FORWARD if (this.reply_status == OBJECT_FORWARD) { CDRInputStream cdr = (CDRInputStream) istream; this.ior = IORFactories.makeIOR( cdr ) ; } }
Example #16
Source Project: openjdk-jdk8u Author: AdoptOpenJDK File: ObjectReferenceFactoryImpl.java License: GNU General Public License v2.0 | 5 votes |
/** Read the data into a (presumably) empty ObjectReferenceFactoryImpl. * This sets the orb to the ORB of the InputStream. */ public void _read( InputStream is ) { org.omg.CORBA_2_3.portable.InputStream istr = (org.omg.CORBA_2_3.portable.InputStream)is ; iorTemplates = IORFactories.makeIORTemplateList( istr ) ; }
Example #17
Source Project: hottub Author: dsrg-uoft File: ObjectReferenceTemplateImpl.java License: GNU General Public License v2.0 | 5 votes |
/** Read the data into a (presumably) empty ORTImpl. This sets the * orb to the ORB of the InputStream. */ public void _read( InputStream is ) { org.omg.CORBA_2_3.portable.InputStream istr = (org.omg.CORBA_2_3.portable.InputStream)is ; iorTemplate = IORFactories.makeIORTemplate( istr ) ; orb = (ORB)(istr.orb()) ; }
Example #18
Source Project: openjdk-jdk8u Author: AdoptOpenJDK File: LocateReplyMessage_1_0.java License: GNU General Public License v2.0 | 5 votes |
public void read(org.omg.CORBA.portable.InputStream istream) { super.read(istream); this.request_id = istream.read_ulong(); this.locate_status = istream.read_long(); isValidReplyStatus(this.locate_status); // raises exception on error // The code below reads the reply body if status is OBJECT_FORWARD if (this.locate_status == OBJECT_FORWARD) { CDRInputStream cdr = (CDRInputStream) istream; this.ior = IORFactories.makeIOR( cdr ) ; } }
Example #19
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: ReplyMessage_1_1.java License: GNU General Public License v2.0 | 5 votes |
public void read(org.omg.CORBA.portable.InputStream istream) { super.read(istream); this.service_contexts = new ServiceContexts((org.omg.CORBA_2_3.portable.InputStream) istream); this.request_id = istream.read_ulong(); this.reply_status = istream.read_long(); isValidReplyStatus(this.reply_status); // raises exception on error // The code below reads the reply body in some cases // SYSTEM_EXCEPTION & LOCATION_FORWARD if (this.reply_status == SYSTEM_EXCEPTION) { String reposId = istream.read_string(); this.exClassName = ORBUtility.classNameOf(reposId); this.minorCode = istream.read_long(); int status = istream.read_long(); switch (status) { case CompletionStatus._COMPLETED_YES: this.completionStatus = CompletionStatus.COMPLETED_YES; break; case CompletionStatus._COMPLETED_NO: this.completionStatus = CompletionStatus.COMPLETED_NO; break; case CompletionStatus._COMPLETED_MAYBE: this.completionStatus = CompletionStatus.COMPLETED_MAYBE; break; default: throw wrapper.badCompletionStatusInReply( CompletionStatus.COMPLETED_MAYBE, new Integer(status) ); } } else if (this.reply_status == USER_EXCEPTION) { // do nothing. The client stub will read the exception from body. } else if (this.reply_status == LOCATION_FORWARD) { CDRInputStream cdr = (CDRInputStream) istream; this.ior = IORFactories.makeIOR(cdr) ; } }
Example #20
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: ORBImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * Convert an object ref to a string. * @param obj The object to stringify. * @return A stringified object reference. */ public synchronized String object_to_string(org.omg.CORBA.Object obj) { checkShutdownState(); // Handle the null objref case if (obj == null) { IOR nullIOR = IORFactories.makeIOR( this ) ; return nullIOR.stringify(); } IOR ior = null ; try { ior = ORBUtility.connectAndGetIOR( this, obj ) ; } catch (BAD_PARAM bp) { // Throw MARSHAL instead if this is a LOCAL_OBJECT_NOT_ALLOWED error. if (bp.minor == ORBUtilSystemException.LOCAL_OBJECT_NOT_ALLOWED) { throw omgWrapper.notAnObjectImpl( bp ) ; } else // Not a local object problem: just rethrow the exception. // Do not wrap and log this, since it was already logged at its // point of origin. throw bp ; } return ior.stringify() ; }
Example #21
Source Project: openjdk-8 Author: bpupadhyaya File: ObjectReferenceProducerBase.java License: GNU General Public License v2.0 | 5 votes |
public org.omg.CORBA.Object make_object (String repositoryId, byte[] objectId) { ObjectId oid = IORFactories.makeObjectId( objectId ) ; IOR ior = getIORFactory().makeIOR( orb, repositoryId, oid ) ; return ORBUtility.makeObjectReference( ior ) ; }
Example #22
Source Project: jdk1.8-source-analysis Author: raysonfang File: ObjectReferenceTemplateImpl.java License: Apache License 2.0 | 5 votes |
/** Read the data into a (presumably) empty ORTImpl. This sets the * orb to the ORB of the InputStream. */ public void _read( InputStream is ) { org.omg.CORBA_2_3.portable.InputStream istr = (org.omg.CORBA_2_3.portable.InputStream)is ; iorTemplate = IORFactories.makeIORTemplate( istr ) ; orb = (ORB)(istr.orb()) ; }
Example #23
Source Project: hottub Author: dsrg-uoft File: ReplyMessage_1_0.java License: GNU General Public License v2.0 | 5 votes |
public void read(org.omg.CORBA.portable.InputStream istream) { super.read(istream); this.service_contexts = new ServiceContexts((org.omg.CORBA_2_3.portable.InputStream) istream); this.request_id = istream.read_ulong(); this.reply_status = istream.read_long(); isValidReplyStatus(this.reply_status); // raises exception on error // The code below reads the reply body in some cases // SYSTEM_EXCEPTION & LOCATION_FORWARD if (this.reply_status == SYSTEM_EXCEPTION) { String reposId = istream.read_string(); this.exClassName = ORBUtility.classNameOf(reposId); this.minorCode = istream.read_long(); int status = istream.read_long(); switch (status) { case CompletionStatus._COMPLETED_YES: this.completionStatus = CompletionStatus.COMPLETED_YES; break; case CompletionStatus._COMPLETED_NO: this.completionStatus = CompletionStatus.COMPLETED_NO; break; case CompletionStatus._COMPLETED_MAYBE: this.completionStatus = CompletionStatus.COMPLETED_MAYBE; break; default: throw wrapper.badCompletionStatusInReply( CompletionStatus.COMPLETED_MAYBE, new Integer(status) ); } } else if (this.reply_status == USER_EXCEPTION) { // do nothing. The client stub will read the exception from body. } else if (this.reply_status == LOCATION_FORWARD) { CDRInputStream cdr = (CDRInputStream) istream; this.ior = IORFactories.makeIOR( cdr ) ; } }
Example #24
Source Project: jdk1.8-source-analysis Author: raysonfang File: IORTemplateListImpl.java License: Apache License 2.0 | 5 votes |
public IORTemplateListImpl( InputStream is ) { this() ; int size = is.read_long() ; for (int ctr=0; ctr<size; ctr++) { IORTemplate iortemp = IORFactories.makeIORTemplate( is ) ; add( iortemp ) ; } makeImmutable() ; }
Example #25
Source Project: jdk1.8-source-analysis Author: raysonfang File: IORImpl.java License: Apache License 2.0 | 5 votes |
/** Construct an IOR from an IORTemplate by applying the same * object id to each TaggedProfileTemplate in the IORTemplate. */ public IORImpl( ORB orb, String typeId, IORTemplate iortemp, ObjectId id) { this( orb, typeId ) ; this.iortemps = IORFactories.makeIORTemplateList() ; this.iortemps.add( iortemp ) ; addTaggedProfiles( iortemp, id ) ; makeImmutable() ; }
Example #26
Source Project: TencentKona-8 Author: Tencent File: ObjectAdapterBase.java License: GNU General Public License v2.0 | 5 votes |
final public void initializeTemplate( ObjectKeyTemplate oktemp, boolean notifyORB, Policies policies, String codebase, String objectAdapterManagerId, ObjectAdapterId objectAdapterId) { adapterId = oktemp.getAdapterId() ; iortemp = IORFactories.makeIORTemplate(oktemp) ; // This calls acceptors which create profiles and may // add tagged components to those profiles. orb.getCorbaTransportManager().addToIORTemplate( iortemp, policies, codebase, objectAdapterManagerId, objectAdapterId); adapterTemplate = IORFactories.makeObjectReferenceTemplate( orb, iortemp ) ; currentFactory = adapterTemplate ; if (notifyORB) { PIHandler pih = orb.getPIHandler() ; if (pih != null) // This runs the IORInterceptors. pih.objectAdapterCreated( this ) ; } iortemp.makeImmutable() ; }
Example #27
Source Project: TencentKona-8 Author: Tencent File: ReplyMessage_1_0.java License: GNU General Public License v2.0 | 5 votes |
public void read(org.omg.CORBA.portable.InputStream istream) { super.read(istream); this.service_contexts = new ServiceContexts((org.omg.CORBA_2_3.portable.InputStream) istream); this.request_id = istream.read_ulong(); this.reply_status = istream.read_long(); isValidReplyStatus(this.reply_status); // raises exception on error // The code below reads the reply body in some cases // SYSTEM_EXCEPTION & LOCATION_FORWARD if (this.reply_status == SYSTEM_EXCEPTION) { String reposId = istream.read_string(); this.exClassName = ORBUtility.classNameOf(reposId); this.minorCode = istream.read_long(); int status = istream.read_long(); switch (status) { case CompletionStatus._COMPLETED_YES: this.completionStatus = CompletionStatus.COMPLETED_YES; break; case CompletionStatus._COMPLETED_NO: this.completionStatus = CompletionStatus.COMPLETED_NO; break; case CompletionStatus._COMPLETED_MAYBE: this.completionStatus = CompletionStatus.COMPLETED_MAYBE; break; default: throw wrapper.badCompletionStatusInReply( CompletionStatus.COMPLETED_MAYBE, new Integer(status) ); } } else if (this.reply_status == USER_EXCEPTION) { // do nothing. The client stub will read the exception from body. } else if (this.reply_status == LOCATION_FORWARD) { CDRInputStream cdr = (CDRInputStream) istream; this.ior = IORFactories.makeIOR( cdr ) ; } }
Example #28
Source Project: TencentKona-8 Author: Tencent File: LocateReplyMessage_1_0.java License: GNU General Public License v2.0 | 5 votes |
public void read(org.omg.CORBA.portable.InputStream istream) { super.read(istream); this.request_id = istream.read_ulong(); this.locate_status = istream.read_long(); isValidReplyStatus(this.locate_status); // raises exception on error // The code below reads the reply body if status is OBJECT_FORWARD if (this.locate_status == OBJECT_FORWARD) { CDRInputStream cdr = (CDRInputStream) istream; this.ior = IORFactories.makeIOR( cdr ) ; } }
Example #29
Source Project: openjdk-8-source Author: keerath File: ORBImpl.java License: GNU General Public License v2.0 | 5 votes |
/** * Convert an object ref to a string. * @param obj The object to stringify. * @return A stringified object reference. */ public synchronized String object_to_string(org.omg.CORBA.Object obj) { checkShutdownState(); // Handle the null objref case if (obj == null) { IOR nullIOR = IORFactories.makeIOR( this ) ; return nullIOR.stringify(); } IOR ior = null ; try { ior = ORBUtility.connectAndGetIOR( this, obj ) ; } catch (BAD_PARAM bp) { // Throw MARSHAL instead if this is a LOCAL_OBJECT_NOT_ALLOWED error. if (bp.minor == ORBUtilSystemException.LOCAL_OBJECT_NOT_ALLOWED) { throw omgWrapper.notAnObjectImpl( bp ) ; } else // Not a local object problem: just rethrow the exception. // Do not wrap and log this, since it was already logged at its // point of origin. throw bp ; } return ior.stringify() ; }
Example #30
Source Project: openjdk-8-source Author: keerath File: LocateReplyMessage_1_1.java License: GNU General Public License v2.0 | 5 votes |
public void read(org.omg.CORBA.portable.InputStream istream) { super.read(istream); this.request_id = istream.read_ulong(); this.reply_status = istream.read_long(); isValidReplyStatus(this.reply_status); // raises exception on error // The code below reads the reply body if status is OBJECT_FORWARD if (this.reply_status == OBJECT_FORWARD) { CDRInputStream cdr = (CDRInputStream) istream; this.ior = IORFactories.makeIOR( cdr ) ; } }