All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gemstone.gemfire.internal.admin.remote.BridgeServerResponse Maven / Gradle / Ivy

/*
 * Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
 *
 * 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. See accompanying
 * LICENSE file.
 */
package com.gemstone.gemfire.internal.admin.remote;

import com.gemstone.gemfire.CancelException;
import com.gemstone.gemfire.DataSerializer;
import com.gemstone.gemfire.cache.CacheFactory;
import com.gemstone.gemfire.distributed.internal.DistributionManager;
import com.gemstone.gemfire.internal.Assert;
import com.gemstone.gemfire.internal.cache.BridgeServerImpl;
import com.gemstone.gemfire.internal.cache.GemFireCacheImpl;
import java.io.*;
import java.util.*;

/**
 * A message that is sent in response to a {@link
 * BridgeServerResponse}.  It perform an operation on a bridge server
 * and returns the result to the sender.
 *
 * @author David Whitlock
 * @since 4.0
 */
public final class BridgeServerResponse extends AdminResponse {

  /** Information about the bridge server that was operated on */
  private RemoteBridgeServer bridgeInfo;

  /** An exception thrown while performing the operation */
  private Exception exception;

  //////////////////////  Static Methods  //////////////////////

  /**
   * Creates a BridgeServerResponse in response to the
   * given request.
   */
  static BridgeServerResponse create(DistributionManager dm,
                                     BridgeServerRequest request) {
    BridgeServerResponse m = new BridgeServerResponse();
    m.setRecipient(request.getSender());

    try {
      GemFireCacheImpl cache =
        (GemFireCacheImpl) CacheFactory.getInstanceCloseOk(dm.getSystem());

      if (request.getCacheId() != System.identityHashCode(cache)) {
        m.bridgeInfo = null;

      } else {
        int operation = request.getOperation();
        switch (operation) {
        case BridgeServerRequest.ADD_OPERATION: {
          BridgeServerImpl bridge =
            (BridgeServerImpl) cache.addBridgeServer();
          m.bridgeInfo = new RemoteBridgeServer(bridge);
          break;
        }

        case BridgeServerRequest.INFO_OPERATION: {
          int id = request.getBridgeId();
          // Note that since this is only an informational request
          // it is not necessary to synchronize on allBridgeServersLock
          for (Iterator iter = cache.getBridgeServers().iterator();
               iter.hasNext(); ) {
            BridgeServerImpl bridge = (BridgeServerImpl) iter.next();
            if (System.identityHashCode(bridge) == id) {
              m.bridgeInfo = new RemoteBridgeServer(bridge);
              break;

            } else {
              m.bridgeInfo = null;
            }
          }
          break;
        }

        case BridgeServerRequest.START_OPERATION: {
          RemoteBridgeServer config = request.getBridgeInfo();
          for (Iterator iter = cache.getBridgeServers().iterator();
               iter.hasNext(); ) {
            BridgeServerImpl bridge = (BridgeServerImpl) iter.next();
            if (System.identityHashCode(bridge) == config.getId()) {
              bridge.configureFrom(config);
              bridge.start();
              m.bridgeInfo = new RemoteBridgeServer(bridge);
              break;

            } else {
              m.bridgeInfo = null;
            }
          }
          break;
        }

        case BridgeServerRequest.STOP_OPERATION: {
          RemoteBridgeServer config = request.getBridgeInfo();
          for (Iterator iter = cache.getBridgeServers().iterator();
               iter.hasNext(); ) {
            BridgeServerImpl bridge = (BridgeServerImpl) iter.next();
            if (System.identityHashCode(bridge) == config.getId()) {
              bridge.stop();
              m.bridgeInfo = new RemoteBridgeServer(bridge);
              break;

            } else {
              m.bridgeInfo = null;
            }
          }
          break;
        }

        default:
          Assert.assertTrue(false, "Unknown bridge server operation: " +
                            operation);
        }

      }

    } catch (CancelException ex) {
      m.bridgeInfo = null;

    } catch (Exception ex) {
      m.exception = ex;
      m.bridgeInfo = null;
    }
    return m;
  }

  //////////////////////  Instance Methods  //////////////////////

  /**
   * Returns information about the bridge operated on
   */
  public RemoteBridgeServer getBridgeInfo() {
    return this.bridgeInfo;
  }

  /**
   * Returns an exception that was thrown while processing the
   * request.
   */
  public Exception getException() {
    return this.exception;
  }

  public int getDSFID() {
    return BRIDGE_SERVER_RESPONSE;
  }

  @Override
  public void toData(DataOutput out) throws IOException {
    super.toData(out);
    DataSerializer.writeObject(this.bridgeInfo, out);
    DataSerializer.writeObject(this.exception, out);
  }

  @Override
  public void fromData(DataInput in)
    throws IOException, ClassNotFoundException {
    super.fromData(in);
    this.bridgeInfo =
      (RemoteBridgeServer) DataSerializer.readObject(in);
    this.exception =
      (Exception) DataSerializer.readObject(in);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy