org.omg.CORBA.OctetSeqHelper Java Examples

The following examples show how to use org.omg.CORBA.OctetSeqHelper. 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 File: ServiceContexts.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Given the input stream, this fills our service
 * context map.  See the definition of scMap for
 * details.  Creates a HashMap.
 *
 * Note that we don't actually unmarshal the
 * bytes of the service contexts here.  That is
 * done when they are actually requested via
 * get(int).
 */
private void createMapFromInputStream(InputStream is)
{
    orb = (ORB)(is.orb()) ;
    if (orb.serviceContextDebugFlag)
        dprint( "Constructing ServiceContexts from input stream" ) ;

    int numValid = is.read_long() ;

    if (orb.serviceContextDebugFlag)
        dprint("Number of service contexts = " + numValid);

    for (int ctr = 0; ctr < numValid; ctr++) {
        int scId = is.read_long();

        if (orb.serviceContextDebugFlag)
            dprint("Reading service context id " + scId);

        byte[] data = OctetSeqHelper.read(is);

        if (orb.serviceContextDebugFlag)
            dprint("Service context" + scId + " length: " + data.length);

        scMap.put(new Integer(scId), data);
    }
}
 
Example #2
Source File: ServiceContexts.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Write the given entry from the scMap to the OutputStream.
 * See note on giopVersion.  The service context should
 * know the GIOP version it is meant for.
 */
private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) {

    // If it's still in byte[] form, we don't need to
    // unmarshal it here, just copy the bytes into
    // the new stream.

    if (scObj instanceof byte[]) {
        if (isDebugging(os))
            dprint( "Writing service context bytes for id " + id);

        OctetSeqHelper.write(os, (byte[])scObj);

    } else {

        // We actually unmarshaled it into a ServiceContext
        // at some point.
        ServiceContext sc = (ServiceContext)scObj;

        if (isDebugging(os))
            dprint( "Writing service context " + sc ) ;

        sc.write(os, gv);
    }
}
 
Example #3
Source File: ServiceContexts.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Given the input stream, this fills our service
 * context map.  See the definition of scMap for
 * details.  Creates a HashMap.
 *
 * Note that we don't actually unmarshal the
 * bytes of the service contexts here.  That is
 * done when they are actually requested via
 * get(int).
 */
private void createMapFromInputStream(InputStream is)
{
    orb = (ORB)(is.orb()) ;
    if (orb.serviceContextDebugFlag)
        dprint( "Constructing ServiceContexts from input stream" ) ;

    int numValid = is.read_long() ;

    if (orb.serviceContextDebugFlag)
        dprint("Number of service contexts = " + numValid);

    for (int ctr = 0; ctr < numValid; ctr++) {
        int scId = is.read_long();

        if (orb.serviceContextDebugFlag)
            dprint("Reading service context id " + scId);

        byte[] data = OctetSeqHelper.read(is);

        if (orb.serviceContextDebugFlag)
            dprint("Service context" + scId + " length: " + data.length);

        scMap.put(new Integer(scId), data);
    }
}
 
Example #4
Source File: ServiceContexts.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Write the given entry from the scMap to the OutputStream.
 * See note on giopVersion.  The service context should
 * know the GIOP version it is meant for.
 */
private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) {

    // If it's still in byte[] form, we don't need to
    // unmarshal it here, just copy the bytes into
    // the new stream.

    if (scObj instanceof byte[]) {
        if (isDebugging(os))
            dprint( "Writing service context bytes for id " + id);

        OctetSeqHelper.write(os, (byte[])scObj);

    } else {

        // We actually unmarshaled it into a ServiceContext
        // at some point.
        ServiceContext sc = (ServiceContext)scObj;

        if (isDebugging(os))
            dprint( "Writing service context " + sc ) ;

        sc.write(os, gv);
    }
}
 
Example #5
Source File: ServiceContexts.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Given the input stream, this fills our service
 * context map.  See the definition of scMap for
 * details.  Creates a HashMap.
 *
 * Note that we don't actually unmarshal the
 * bytes of the service contexts here.  That is
 * done when they are actually requested via
 * get(int).
 */
private void createMapFromInputStream(InputStream is)
{
    orb = (ORB)(is.orb()) ;
    if (orb.serviceContextDebugFlag)
        dprint( "Constructing ServiceContexts from input stream" ) ;

    int numValid = is.read_long() ;

    if (orb.serviceContextDebugFlag)
        dprint("Number of service contexts = " + numValid);

    for (int ctr = 0; ctr < numValid; ctr++) {
        int scId = is.read_long();

        if (orb.serviceContextDebugFlag)
            dprint("Reading service context id " + scId);

        byte[] data = OctetSeqHelper.read(is);

        if (orb.serviceContextDebugFlag)
            dprint("Service context" + scId + " length: " + data.length);

        scMap.put(new Integer(scId), data);
    }
}
 
Example #6
Source File: ServiceContexts.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Write the given entry from the scMap to the OutputStream.
 * See note on giopVersion.  The service context should
 * know the GIOP version it is meant for.
 */
private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) {

    // If it's still in byte[] form, we don't need to
    // unmarshal it here, just copy the bytes into
    // the new stream.

    if (scObj instanceof byte[]) {
        if (isDebugging(os))
            dprint( "Writing service context bytes for id " + id);

        OctetSeqHelper.write(os, (byte[])scObj);

    } else {

        // We actually unmarshaled it into a ServiceContext
        // at some point.
        ServiceContext sc = (ServiceContext)scObj;

        if (isDebugging(os))
            dprint( "Writing service context " + sc ) ;

        sc.write(os, gv);
    }
}
 
Example #7
Source File: ServiceContexts.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Given the input stream, this fills our service
 * context map.  See the definition of scMap for
 * details.  Creates a HashMap.
 *
 * Note that we don't actually unmarshal the
 * bytes of the service contexts here.  That is
 * done when they are actually requested via
 * get(int).
 */
private void createMapFromInputStream(InputStream is)
{
    orb = (ORB)(is.orb()) ;
    if (orb.serviceContextDebugFlag)
        dprint( "Constructing ServiceContexts from input stream" ) ;

    int numValid = is.read_long() ;

    if (orb.serviceContextDebugFlag)
        dprint("Number of service contexts = " + numValid);

    for (int ctr = 0; ctr < numValid; ctr++) {
        int scId = is.read_long();

        if (orb.serviceContextDebugFlag)
            dprint("Reading service context id " + scId);

        byte[] data = OctetSeqHelper.read(is);

        if (orb.serviceContextDebugFlag)
            dprint("Service context" + scId + " length: " + data.length);

        scMap.put(new Integer(scId), data);
    }
}
 
Example #8
Source File: ServiceContexts.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Write the given entry from the scMap to the OutputStream.
 * See note on giopVersion.  The service context should
 * know the GIOP version it is meant for.
 */
private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) {

    // If it's still in byte[] form, we don't need to
    // unmarshal it here, just copy the bytes into
    // the new stream.

    if (scObj instanceof byte[]) {
        if (isDebugging(os))
            dprint( "Writing service context bytes for id " + id);

        OctetSeqHelper.write(os, (byte[])scObj);

    } else {

        // We actually unmarshaled it into a ServiceContext
        // at some point.
        ServiceContext sc = (ServiceContext)scObj;

        if (isDebugging(os))
            dprint( "Writing service context " + sc ) ;

        sc.write(os, gv);
    }
}
 
Example #9
Source File: ServiceContexts.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Given the input stream, this fills our service
 * context map.  See the definition of scMap for
 * details.  Creates a HashMap.
 *
 * Note that we don't actually unmarshal the
 * bytes of the service contexts here.  That is
 * done when they are actually requested via
 * get(int).
 */
private void createMapFromInputStream(InputStream is)
{
    orb = (ORB)(is.orb()) ;
    if (orb.serviceContextDebugFlag)
        dprint( "Constructing ServiceContexts from input stream" ) ;

    int numValid = is.read_long() ;

    if (orb.serviceContextDebugFlag)
        dprint("Number of service contexts = " + numValid);

    for (int ctr = 0; ctr < numValid; ctr++) {
        int scId = is.read_long();

        if (orb.serviceContextDebugFlag)
            dprint("Reading service context id " + scId);

        byte[] data = OctetSeqHelper.read(is);

        if (orb.serviceContextDebugFlag)
            dprint("Service context" + scId + " length: " + data.length);

        scMap.put(new Integer(scId), data);
    }
}
 
Example #10
Source File: ServiceContexts.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Write the given entry from the scMap to the OutputStream.
 * See note on giopVersion.  The service context should
 * know the GIOP version it is meant for.
 */
private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) {

    // If it's still in byte[] form, we don't need to
    // unmarshal it here, just copy the bytes into
    // the new stream.

    if (scObj instanceof byte[]) {
        if (isDebugging(os))
            dprint( "Writing service context bytes for id " + id);

        OctetSeqHelper.write(os, (byte[])scObj);

    } else {

        // We actually unmarshaled it into a ServiceContext
        // at some point.
        ServiceContext sc = (ServiceContext)scObj;

        if (isDebugging(os))
            dprint( "Writing service context " + sc ) ;

        sc.write(os, gv);
    }
}
 
Example #11
Source File: ServiceContexts.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
/**
 * Given the input stream, this fills our service
 * context map.  See the definition of scMap for
 * details.  Creates a HashMap.
 *
 * Note that we don't actually unmarshal the
 * bytes of the service contexts here.  That is
 * done when they are actually requested via
 * get(int).
 */
private void createMapFromInputStream(InputStream is)
{
    orb = (ORB)(is.orb()) ;
    if (orb.serviceContextDebugFlag)
        dprint( "Constructing ServiceContexts from input stream" ) ;

    int numValid = is.read_long() ;

    if (orb.serviceContextDebugFlag)
        dprint("Number of service contexts = " + numValid);

    for (int ctr = 0; ctr < numValid; ctr++) {
        int scId = is.read_long();

        if (orb.serviceContextDebugFlag)
            dprint("Reading service context id " + scId);

        byte[] data = OctetSeqHelper.read(is);

        if (orb.serviceContextDebugFlag)
            dprint("Service context" + scId + " length: " + data.length);

        scMap.put(new Integer(scId), data);
    }
}
 
Example #12
Source File: ServiceContexts.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Write the given entry from the scMap to the OutputStream.
 * See note on giopVersion.  The service context should
 * know the GIOP version it is meant for.
 */
private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) {

    // If it's still in byte[] form, we don't need to
    // unmarshal it here, just copy the bytes into
    // the new stream.

    if (scObj instanceof byte[]) {
        if (isDebugging(os))
            dprint( "Writing service context bytes for id " + id);

        OctetSeqHelper.write(os, (byte[])scObj);

    } else {

        // We actually unmarshaled it into a ServiceContext
        // at some point.
        ServiceContext sc = (ServiceContext)scObj;

        if (isDebugging(os))
            dprint( "Writing service context " + sc ) ;

        sc.write(os, gv);
    }
}
 
Example #13
Source File: ServiceContexts.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Given the input stream, this fills our service
 * context map.  See the definition of scMap for
 * details.  Creates a HashMap.
 *
 * Note that we don't actually unmarshal the
 * bytes of the service contexts here.  That is
 * done when they are actually requested via
 * get(int).
 */
private void createMapFromInputStream(InputStream is)
{
    orb = (ORB)(is.orb()) ;
    if (orb.serviceContextDebugFlag)
        dprint( "Constructing ServiceContexts from input stream" ) ;

    int numValid = is.read_long() ;

    if (orb.serviceContextDebugFlag)
        dprint("Number of service contexts = " + numValid);

    for (int ctr = 0; ctr < numValid; ctr++) {
        int scId = is.read_long();

        if (orb.serviceContextDebugFlag)
            dprint("Reading service context id " + scId);

        byte[] data = OctetSeqHelper.read(is);

        if (orb.serviceContextDebugFlag)
            dprint("Service context" + scId + " length: " + data.length);

        scMap.put(new Integer(scId), data);
    }
}
 
Example #14
Source File: ServiceContexts.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
/**
 * Write the given entry from the scMap to the OutputStream.
 * See note on giopVersion.  The service context should
 * know the GIOP version it is meant for.
 */
private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) {

    // If it's still in byte[] form, we don't need to
    // unmarshal it here, just copy the bytes into
    // the new stream.

    if (scObj instanceof byte[]) {
        if (isDebugging(os))
            dprint( "Writing service context bytes for id " + id);

        OctetSeqHelper.write(os, (byte[])scObj);

    } else {

        // We actually unmarshaled it into a ServiceContext
        // at some point.
        ServiceContext sc = (ServiceContext)scObj;

        if (isDebugging(os))
            dprint( "Writing service context " + sc ) ;

        sc.write(os, gv);
    }
}
 
Example #15
Source File: ServiceContexts.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
/**
 * Given the input stream, this fills our service
 * context map.  See the definition of scMap for
 * details.  Creates a HashMap.
 *
 * Note that we don't actually unmarshal the
 * bytes of the service contexts here.  That is
 * done when they are actually requested via
 * get(int).
 */
private void createMapFromInputStream(InputStream is)
{
    orb = (ORB)(is.orb()) ;
    if (orb.serviceContextDebugFlag)
        dprint( "Constructing ServiceContexts from input stream" ) ;

    int numValid = is.read_long() ;

    if (orb.serviceContextDebugFlag)
        dprint("Number of service contexts = " + numValid);

    for (int ctr = 0; ctr < numValid; ctr++) {
        int scId = is.read_long();

        if (orb.serviceContextDebugFlag)
            dprint("Reading service context id " + scId);

        byte[] data = OctetSeqHelper.read(is);

        if (orb.serviceContextDebugFlag)
            dprint("Service context" + scId + " length: " + data.length);

        scMap.put(new Integer(scId), data);
    }
}
 
Example #16
Source File: ServiceContexts.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Write the given entry from the scMap to the OutputStream.
 * See note on giopVersion.  The service context should
 * know the GIOP version it is meant for.
 */
private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) {

    // If it's still in byte[] form, we don't need to
    // unmarshal it here, just copy the bytes into
    // the new stream.

    if (scObj instanceof byte[]) {
        if (isDebugging(os))
            dprint( "Writing service context bytes for id " + id);

        OctetSeqHelper.write(os, (byte[])scObj);

    } else {

        // We actually unmarshaled it into a ServiceContext
        // at some point.
        ServiceContext sc = (ServiceContext)scObj;

        if (isDebugging(os))
            dprint( "Writing service context " + sc ) ;

        sc.write(os, gv);
    }
}
 
Example #17
Source File: ServiceContexts.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Given the input stream, this fills our service
 * context map.  See the definition of scMap for
 * details.  Creates a HashMap.
 *
 * Note that we don't actually unmarshal the
 * bytes of the service contexts here.  That is
 * done when they are actually requested via
 * get(int).
 */
private void createMapFromInputStream(InputStream is)
{
    orb = (ORB)(is.orb()) ;
    if (orb.serviceContextDebugFlag)
        dprint( "Constructing ServiceContexts from input stream" ) ;

    int numValid = is.read_long() ;

    if (orb.serviceContextDebugFlag)
        dprint("Number of service contexts = " + numValid);

    for (int ctr = 0; ctr < numValid; ctr++) {
        int scId = is.read_long();

        if (orb.serviceContextDebugFlag)
            dprint("Reading service context id " + scId);

        byte[] data = OctetSeqHelper.read(is);

        if (orb.serviceContextDebugFlag)
            dprint("Service context" + scId + " length: " + data.length);

        scMap.put(new Integer(scId), data);
    }
}
 
Example #18
Source File: ServiceContexts.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Write the given entry from the scMap to the OutputStream.
 * See note on giopVersion.  The service context should
 * know the GIOP version it is meant for.
 */
private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) {

    // If it's still in byte[] form, we don't need to
    // unmarshal it here, just copy the bytes into
    // the new stream.

    if (scObj instanceof byte[]) {
        if (isDebugging(os))
            dprint( "Writing service context bytes for id " + id);

        OctetSeqHelper.write(os, (byte[])scObj);

    } else {

        // We actually unmarshaled it into a ServiceContext
        // at some point.
        ServiceContext sc = (ServiceContext)scObj;

        if (isDebugging(os))
            dprint( "Writing service context " + sc ) ;

        sc.write(os, gv);
    }
}
 
Example #19
Source File: ServiceContexts.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Given the input stream, this fills our service
 * context map.  See the definition of scMap for
 * details.  Creates a HashMap.
 *
 * Note that we don't actually unmarshal the
 * bytes of the service contexts here.  That is
 * done when they are actually requested via
 * get(int).
 */
private void createMapFromInputStream(InputStream is)
{
    orb = (ORB)(is.orb()) ;
    if (orb.serviceContextDebugFlag)
        dprint( "Constructing ServiceContexts from input stream" ) ;

    int numValid = is.read_long() ;

    if (orb.serviceContextDebugFlag)
        dprint("Number of service contexts = " + numValid);

    for (int ctr = 0; ctr < numValid; ctr++) {
        int scId = is.read_long();

        if (orb.serviceContextDebugFlag)
            dprint("Reading service context id " + scId);

        byte[] data = OctetSeqHelper.read(is);

        if (orb.serviceContextDebugFlag)
            dprint("Service context" + scId + " length: " + data.length);

        scMap.put(new Integer(scId), data);
    }
}
 
Example #20
Source File: ServiceContexts.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
/**
 * Write the given entry from the scMap to the OutputStream.
 * See note on giopVersion.  The service context should
 * know the GIOP version it is meant for.
 */
private void writeMapEntry(OutputStream os, Integer id, Object scObj, GIOPVersion gv) {

    // If it's still in byte[] form, we don't need to
    // unmarshal it here, just copy the bytes into
    // the new stream.

    if (scObj instanceof byte[]) {
        if (isDebugging(os))
            dprint( "Writing service context bytes for id " + id);

        OctetSeqHelper.write(os, (byte[])scObj);

    } else {

        // We actually unmarshaled it into a ServiceContext
        // at some point.
        ServiceContext sc = (ServiceContext)scObj;

        if (isDebugging(os))
            dprint( "Writing service context " + sc ) ;

        sc.write(os, gv);
    }
}