Package com.aerospike.client.command

Source Code of com.aerospike.client.command.SyncCommand

/*******************************************************************************
* Copyright 2012-2014 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
******************************************************************************/
package com.aerospike.client.command;

import java.io.IOException;

import com.aerospike.client.AerospikeException;
import com.aerospike.client.Log;
import com.aerospike.client.cluster.Connection;
import com.aerospike.client.cluster.Node;
import com.aerospike.client.policy.Policy;
import com.aerospike.client.util.Util;

public abstract class SyncCommand extends Command {

  public final void execute() throws AerospikeException {
    Policy policy = getPolicy();       
    int remainingMillis = policy.timeout;
    long limit = System.currentTimeMillis() + remainingMillis;
        int failedNodes = 0;
        int failedConns = 0;
        int iterations = 0;

        // Execute command until successful, timed out or maximum iterations have been reached.
    while (true) {
      Node node = null;
      try {   
        node = getNode();
        Connection conn = node.getConnection(remainingMillis);
       
        try {
          // Set command buffer.
          writeBuffer();

          // Reset timeout in send buffer (destined for server) and socket.
          Buffer.intToBytes(remainingMillis, dataBuffer, 22);
         
          // Send command.
          conn.write(dataBuffer, dataOffset);
         
          // Parse results.
          parseResult(conn);
         
          // Reflect healthy status.
          conn.updateLastUsed();
          node.restoreHealth();
         
          // Put connection back in pool.
          node.putConnection(conn);
         
          // Command has completed successfully.  Exit method.
          return;
        }
        catch (AerospikeException ae) {
          // Close socket to flush out possible garbage.  Do not put back in pool.
          conn.close();
          throw ae;
        }
        catch (RuntimeException re) {
          // All runtime exceptions are considered fatal.  Do not retry.
          // Close socket to flush out possible garbage.  Do not put back in pool.
          conn.close();
          throw re;
        }
        catch (IOException ioe) {
          // IO errors are considered temporary anomalies.  Retry.
          // Close socket to flush out possible garbage.  Do not put back in pool.
          conn.close();
         
          if (Log.debugEnabled()) {
            Log.debug("Node " + node + ": " + Util.getErrorMessage(ioe));
          }
          // IO error means connection to server node is unhealthy.
          // Reflect this status.
          node.decreaseHealth();
        }
      }
      catch (AerospikeException.InvalidNode ine) {
        // Node is currently inactive.  Retry.
        failedNodes++;
      }
      catch (AerospikeException.Connection ce) {
        // Socket connection error has occurred. Decrease health and retry.
        node.decreaseHealth();
       
        if (Log.debugEnabled()) {
          Log.debug("Node " + node + ": " + Util.getErrorMessage(ce));
        }
        failedConns++; 
      }

      if (++iterations > policy.maxRetries) {
        break;
      }
     
      // Check for client timeout.
      if (policy.timeout > 0) {
        remainingMillis = (int)(limit - System.currentTimeMillis() - policy.sleepBetweenRetries);
       
        if (remainingMillis <= 0) {
          break;
        }
      }
     
      if (policy.sleepBetweenRetries > 0) {
        // Sleep before trying again.
        Util.sleep(policy.sleepBetweenRetries);
      }
    }
   
    /*
    if (Log.debugEnabled()) {
      Log.debug("Client timeout: timeout=" + policy.timeout + " iterations=" + iterations +
        " failedNodes=" + failedNodes + " failedConns=" + failedConns);
    }*/
    throw new AerospikeException.Timeout(policy.timeout, iterations, failedNodes, failedConns);
  }
   
  protected abstract Node getNode() throws AerospikeException.InvalidNode;
  protected abstract void parseResult(Connection conn) throws AerospikeException, IOException;
}
TOP

Related Classes of com.aerospike.client.command.SyncCommand

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.