Package com.google.code.or.io

Examples of com.google.code.or.io.XInputStream.readInt()


    final XInputStream is = this.transport.getInputStream();
    final Context context = new Context(this.binlogFileName);
    while(isRunning()) {
      try {
        // Parse packet
        final int packetLength = is.readInt(3);
        final int packetSequence = is.readInt(1);
        is.setReadLimit(packetLength); // Ensure the packet boundary
       
        //
        final int packetMarker = is.readInt(1);
View Full Code Here


    final Context context = new Context(this.binlogFileName);
    while(isRunning()) {
      try {
        // Parse packet
        final int packetLength = is.readInt(3);
        final int packetSequence = is.readInt(1);
        is.setReadLimit(packetLength); // Ensure the packet boundary
       
        //
        final int packetMarker = is.readInt(1);
        if(packetMarker != OKPacket.PACKET_MARKER) { // 0x00
View Full Code Here

        final int packetLength = is.readInt(3);
        final int packetSequence = is.readInt(1);
        is.setReadLimit(packetLength); // Ensure the packet boundary
       
        //
        final int packetMarker = is.readInt(1);
        if(packetMarker != OKPacket.PACKET_MARKER) { // 0x00
          if((byte)packetMarker == ErrorPacket.PACKET_MARKER) {
            final ErrorPacket packet = ErrorPacket.valueOf(packetLength, packetSequence, packetMarker, is);
            throw new NestableRuntimeException(packet.toString());
          } else if((byte)packetMarker == EOFPacket.PACKET_MARKER) {
View Full Code Here

        }
       
        // Parse the event header
        final BinlogEventV4HeaderImpl header = new BinlogEventV4HeaderImpl();
        header.setTimestamp(is.readLong(4) * 1000L);
        header.setEventType(is.readInt(1));
        header.setServerId(is.readLong(4));
        header.setEventLength(is.readInt(4));
        header.setNextPosition(is.readLong(4));
        header.setFlags(is.readInt(2));
        header.setTimestampOfReceipt(System.currentTimeMillis());
 
View Full Code Here

        // Parse the event header
        final BinlogEventV4HeaderImpl header = new BinlogEventV4HeaderImpl();
        header.setTimestamp(is.readLong(4) * 1000L);
        header.setEventType(is.readInt(1));
        header.setServerId(is.readLong(4));
        header.setEventLength(is.readInt(4));
        header.setNextPosition(is.readLong(4));
        header.setFlags(is.readInt(2));
        header.setTimestampOfReceipt(System.currentTimeMillis());
        if(isVerbose() && LOGGER.isInfoEnabled()) {
          LOGGER.info("received an event, sequence: {}, header: {}", packetSequence, header);
View Full Code Here

        header.setTimestamp(is.readLong(4) * 1000L);
        header.setEventType(is.readInt(1));
        header.setServerId(is.readLong(4));
        header.setEventLength(is.readInt(4));
        header.setNextPosition(is.readLong(4));
        header.setFlags(is.readInt(2));
        header.setTimestampOfReceipt(System.currentTimeMillis());
        if(isVerbose() && LOGGER.isInfoEnabled()) {
          LOGGER.info("received an event, sequence: {}, header: {}", packetSequence, header);
        }
       
View Full Code Here

    final XInputStream is = this.transport.getInputStream();
    final Context context = new Context(this.binlogFileName);
    while(isRunning()) {
      try {
        // Parse packet
        final int packetLength = is.readInt(3);
        final int packetSequence = is.readInt(1);
        is.setReadLimit(packetLength); // Ensure the packet boundary
       
        //
        final int packetMarker = is.readInt(1);
View Full Code Here

    final Context context = new Context(this.binlogFileName);
    while(isRunning()) {
      try {
        // Parse packet
        final int packetLength = is.readInt(3);
        final int packetSequence = is.readInt(1);
        is.setReadLimit(packetLength); // Ensure the packet boundary
       
        //
        final int packetMarker = is.readInt(1);
        if(packetMarker != OKPacket.PACKET_MARKER) { // 0x00
View Full Code Here

        final int packetLength = is.readInt(3);
        final int packetSequence = is.readInt(1);
        is.setReadLimit(packetLength); // Ensure the packet boundary
       
        //
        final int packetMarker = is.readInt(1);
        if(packetMarker != OKPacket.PACKET_MARKER) { // 0x00
          if((byte)packetMarker == ErrorPacket.PACKET_MARKER) {
            final ErrorPacket packet = ErrorPacket.valueOf(packetLength, packetSequence, packetMarker, is);
            throw new RuntimeException(packet.toString());
          } else if((byte)packetMarker == EOFPacket.PACKET_MARKER) {
View Full Code Here

        }
       
        // Parse the event header
        final BinlogEventV4HeaderImpl header = new BinlogEventV4HeaderImpl();
        header.setTimestamp(is.readLong(4) * 1000L);
        header.setEventType(is.readInt(1));
        header.setServerId(is.readLong(4));
        header.setEventLength(is.readInt(4));
        header.setNextPosition(is.readLong(4));
        header.setFlags(is.readInt(2));
        header.setTimestampOfReceipt(System.currentTimeMillis());
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.