Package org.jredis.ri.alphazero.connection

Source Code of org.jredis.ri.alphazero.connection.DefaultConnectionFactory

/*
*   Copyright 2010 Joubin Houshyar
*
*   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.jredis.ri.alphazero.connection;

import java.security.ProviderException;

import org.jredis.ClientRuntimeException;
import org.jredis.NotSupportedException;
import org.jredis.connector.Connection;
import org.jredis.connector.Connection.Flag;
import org.jredis.connector.ConnectionSpec;
import org.jredis.ri.alphazero.support.Log;

/**
* [TODO: document me!]
*
* @author  joubin (alphazero@sensesay.net)
* @date    Sep 15, 2010
*
*/

public class DefaultConnectionFactory implements Connection.Factory {

  /* (non-Javadoc) @see org.jredis.connector.Connection.Factory#newConnection(org.jredis.connector.ConnectionSpec) */
    public Connection newConnection (ConnectionSpec spec)
            throws ClientRuntimeException, NotSupportedException
    {
      Connection conn = null;
      switch (spec.getModality()){
      case Monitor:
        throw new ProviderException("NOT IMPLEMENTED!");
      case PubSub:
        throw new ProviderException("NOT IMPLEMENTED!");
      case Asynchronous:
        conn = newAsyncConnection(spec);
        break;
      case Synchronous:
        conn = new SyncConnection(spec);
        break;
      }
      // TODO: factories create completed products --
      // this class needs to set conn settings for ALL connection types
      //
//    if(spec.getConnectionFlag(Flag.CONNECT_IMMEDIATELY)) {
//      ((ConnectionBase)conn).initialize ();
//      }
     
    Log.debug("Created new %s", conn);
      return conn;
    }

  /**
   * Creates a new {@link Connection.Modality#Asynchronous} {@link Connection}
   * per {@link ConnectionSpec} settings.
     * @param spec
     */
    private Connection newAsyncConnection (ConnectionSpec spec) {

      Connection conn = null;
      if(spec.getConnectionFlag(Flag.PIPELINE)){
      conn = new AsyncPipelineConnection(spec); // why not for all asyncs?
      }
      else {
        if(spec.getConnectionFlag(Flag.SHARED)){
            throw new ProviderException("NOT IMPLEMENTED! [Asynch|SHARED|not_PIPELINE]");
        }
        else {
          conn = new AsyncConnection(spec);
//          conn = new AsyncPipelineConnection(spec); // why not for all asyncs?
        }
      }
      return conn;
    }
}
TOP

Related Classes of org.jredis.ri.alphazero.connection.DefaultConnectionFactory

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.