Package org.nfctools.examples.nfcip

Source Code of org.nfctools.examples.nfcip.NfcInitiator

/**
* 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.examples.nfcip;

import java.text.DecimalFormat;

import org.nfctools.nfcip.NFCIPConnection;
import org.nfctools.nfcip.NFCIPManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class NfcInitiator implements Runnable {

  private Logger log = LoggerFactory.getLogger(getClass());
  private DecimalFormat df = new DecimalFormat("#.###");
  private NFCIPManager nfcipManager;
  private final int RUNS = 5;

  public NfcInitiator(NFCIPManager nfcipManager) {
    this.nfcipManager = nfcipManager;
  }

  @Override
  public void run() {
    try {

      while (true) {
        log.info("Waiting for connection");
        NFCIPConnection nfcipConnection = nfcipManager.connectAsInitiator();

        log.info("Connected, sending data...");

        long time = System.currentTimeMillis();
        int totalSend = 0;

        byte[] data = new byte[200];
        for (int k = 0; k < data.length; k++)
          data[k] = (byte)(255 - k);

        for (int runs = 0; runs < RUNS; runs++) {

          log.trace("Start of Run: " + runs);
          nfcipConnection.send(data);
          totalSend += data.length;
          log.info("Send: " + data.length + " Runs: " + runs);
          byte[] receive = nfcipConnection.receive();
          log.info("Response: " + receive.length);
          log.trace("End of Run: " + runs);
        }

        nfcipConnection.send(new byte[0]);
        nfcipConnection.receive();

        double timeNeeded = (double)(System.currentTimeMillis() - time) / 1000.0;
        log.info("DONE in " + timeNeeded + "sec, " + df.format(((double)totalSend / 1024) / timeNeeded)
            + " kb/s");

        log.info("Closing connection");
        nfcipConnection.close();
      }
    }
    catch (Exception e) {
      e.printStackTrace();
    }
  }
}
TOP

Related Classes of org.nfctools.examples.nfcip.NfcInitiator

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.