Search in sources :

Example 1 with WireFormatInfo

use of io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo in project fabric8 by jboss-fuse.

the class WireFormatInfoMarshaller method tightUnmarshal.

/**
 * Un-marshal an object instance from the data input stream
 *
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void tightUnmarshal(OpenWireFormat wireFormat, Object o, DataByteArrayInputStream dataIn, BooleanStream bs) throws IOException {
    super.tightUnmarshal(wireFormat, o, dataIn, bs);
    WireFormatInfo info = (WireFormatInfo) o;
    info.beforeUnmarshall(wireFormat);
    info.setMagic(tightUnmarshalConstByteArray(dataIn, bs, 8));
    info.setVersion(dataIn.readInt());
    info.setMarshalledProperties(tightUnmarshalBuffer(dataIn, bs));
    info.afterUnmarshall(wireFormat);
}
Also used : WireFormatInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo)

Example 2 with WireFormatInfo

use of io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo in project fabric8 by jboss-fuse.

the class WireFormatInfoMarshaller method tightMarshal2.

/**
 * Write a object instance to data output stream
 *
 * @param o the instance to be marshaled
 * @param dataOut the output stream
 * @throws IOException thrown if an error occurs
 */
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataByteArrayOutputStream dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    WireFormatInfo info = (WireFormatInfo) o;
    tightMarshalConstByteArray2(info.getMagic(), dataOut, bs, 8);
    dataOut.writeInt(info.getVersion());
    tightMarshalBuffer2(info.getMarshalledProperties(), dataOut, bs);
    info.afterMarshall(wireFormat);
}
Also used : WireFormatInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo)

Example 3 with WireFormatInfo

use of io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo in project fabric8 by jboss-fuse.

the class WireFormatInfoMarshaller method tightMarshal1.

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    WireFormatInfo info = (WireFormatInfo) o;
    info.beforeMarshall(wireFormat);
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalConstByteArray1(info.getMagic(), bs, 8);
    rc += tightMarshalBuffer1(info.getMarshalledProperties(), bs);
    return rc + 4;
}
Also used : WireFormatInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo)

Example 4 with WireFormatInfo

use of io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo in project fabric8 by jboss-fuse.

the class WireFormatInfoMarshaller method looseMarshal.

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataByteArrayOutputStream dataOut) throws IOException {
    WireFormatInfo info = (WireFormatInfo) o;
    info.beforeMarshall(wireFormat);
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalConstByteArray(wireFormat, info.getMagic(), dataOut, 8);
    dataOut.writeInt(info.getVersion());
    looseMarshalBuffer(wireFormat, info.getMarshalledProperties(), dataOut);
}
Also used : WireFormatInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo)

Example 5 with WireFormatInfo

use of io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo in project fabric8 by jboss-fuse.

the class WireFormatInfoMarshaller method looseUnmarshal.

/**
 * Un-marshal an object instance from the data input stream
 *
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataByteArrayInputStream dataIn) throws IOException {
    super.looseUnmarshal(wireFormat, o, dataIn);
    WireFormatInfo info = (WireFormatInfo) o;
    info.beforeUnmarshall(wireFormat);
    info.setMagic(looseUnmarshalConstByteArray(dataIn, 8));
    info.setVersion(dataIn.readInt());
    info.setMarshalledProperties(looseUnmarshalBuffer(dataIn));
    info.afterUnmarshall(wireFormat);
}
Also used : WireFormatInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo)

Aggregations

WireFormatInfo (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.WireFormatInfo)6 Command (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.Command)1 ConnectionParameters (io.fabric8.gateway.handlers.loadbalancer.ConnectionParameters)1 IOException (java.io.IOException)1