Package org.nfctools.llcp

Source Code of org.nfctools.llcp.LlcpSocket

/**
* Copyright 2011-2012 Adrian Stabiszewski, as@nfctools.org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*       http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.nfctools.llcp;

import org.nfctools.llcp.pdu.AbstractProtocolDataUnit;
import org.nfctools.llcp.pdu.Disconnect;
import org.nfctools.llcp.pdu.DisconnectedMode;
import org.nfctools.llcp.pdu.Information;
import org.nfctools.llcp.pdu.ReceiveReady;
import org.nfctools.llcp.pdu.Symmetry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class LlcpSocket {

  private Logger log = LoggerFactory.getLogger(getClass());

  private AddressPair addressPair;

  private int receivedSequence;
  private int sendSequence;

  private int maximumInformationUnitExtension = 0;

  private AbstractProtocolDataUnit messageToSend;
  private ServiceAccessPoint serviceAccessPoint;

  public LlcpSocket(AddressPair addressPair, ServiceAccessPoint serviceAccessPoint) {
    this.addressPair = addressPair;
    this.serviceAccessPoint = serviceAccessPoint;
  }

  public void setMaximumInformationUnitExtension(int maximumInformationUnitExtension) {
    this.maximumInformationUnitExtension = maximumInformationUnitExtension;
  }

  public void incReceivedSequence() {
    receivedSequence = ++receivedSequence % 16;
  }

  public void incSendSequence() {
    sendSequence = ++sendSequence % 16;
  }

  public int getReceivedSequence() {
    return receivedSequence;
  }

  public int getSendSequence() {
    return sendSequence;
  }

  public void sendMessage(byte[] message) {
    if (message.length > getMaximumInformationUnit())
      throw new IllegalArgumentException("Message too long. Maximum Information Unit is "
          + getMaximumInformationUnit());

    messageToSend = new Information(addressPair.getRemote(), addressPair.getLocal(), getReceivedSequence(),
        getSendSequence(), message);
    incSendSequence();
  }

  public void onSendConfirmed(int received) {
    if (sendSequence != received)
      log.warn("sequences do not match myS: " + sendSequence + " myR: " + receivedSequence + " hisR: " + received);

    serviceAccessPoint.onSendSucceeded(this);
  }

  protected AbstractProtocolDataUnit getMessageToSend() {
    if (messageToSend == null)
      return new Symmetry();
    AbstractProtocolDataUnit pdu = messageToSend;
    messageToSend = null;
    return pdu;
  }

  public int getMaximumInformationUnit() {
    return maximumInformationUnitExtension + LlcpConstants.DEFAULT_MIU;
  }

  public void disconnect() {
    messageToSend = new Disconnect(addressPair.getRemote(), addressPair.getLocal());
  }

  public void onInformation(int received, int send, byte[] serviceDataUnit) {
    if (send != receivedSequence)
      log.warn("sequences do not match myS: " + sendSequence + " myR: " + receivedSequence + " hisS: " + send
          + " Msg-Length: " + serviceDataUnit.length);

    byte[] information = serviceAccessPoint.onInformation(serviceDataUnit);

    incReceivedSequence();

    if (information != null) {
      sendMessage(information);
    }
    else
      messageToSend = new ReceiveReady(addressPair.getRemote(), addressPair.getLocal(), getReceivedSequence());
  }

  public void onConnectSucceeded() {
    serviceAccessPoint.onConnectSucceeded(this);
  }

  public void onDisconnect() {
    serviceAccessPoint.onDisconnect();
    messageToSend = new DisconnectedMode(addressPair.getRemote(), addressPair.getLocal(), 0);
  }

  public void onDisconnectSucceeded() {
    serviceAccessPoint.onDisconnect();

  }

  public void onConnectFailed(int reason) {
    serviceAccessPoint.onConnectFailed();
  }

  public void onConnectionActive() {
    serviceAccessPoint.onConnectionActive(this);
  }

  public boolean equalsAddress(AddressPair addressPair) {
    return this.addressPair.equals(addressPair);
  }
}
TOP

Related Classes of org.nfctools.llcp.LlcpSocket

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.