blob: 31a5cfb7dbb143c9451f76ed25f85007495ed525 [file] [log] [blame]
/*
* =========================================================================
* Copyright (c) 2012-2014 Pivotal Software, Inc. All Rights Reserved.
* This product is protected by U.S. and international copyright
* and intellectual property laws. Pivotal products are covered by
* more patents listed at http://www.pivotal.io/patents.
* ========================================================================
*/
package com.vmware.gemfire.tools.pulse.internal.service;
import javax.servlet.http.HttpServletRequest;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;
import com.vmware.gemfire.tools.pulse.internal.data.Cluster;
import com.vmware.gemfire.tools.pulse.internal.data.Repository;
import com.vmware.gemfire.tools.pulse.internal.json.JSONArray;
import com.vmware.gemfire.tools.pulse.internal.json.JSONException;
import com.vmware.gemfire.tools.pulse.internal.json.JSONObject;
import com.vmware.gemfire.tools.pulse.internal.util.StringUtils;
/**
* Class MemberAsynchEventQueuesService
*
* This class contains implementations of getting Asynchronous Event Queues
* details of Cluster Member.
*
* @author Sachin K
* @since version 7.5
*/
@Component
@Service("MemberAsynchEventQueues")
@Scope("singleton")
public class MemberAsynchEventQueuesService implements PulseService {
public JSONObject execute(final HttpServletRequest request) throws Exception {
// get cluster object
Cluster cluster = Repository.get().getCluster();
// json object to be sent as response
JSONObject responseJSON = new JSONObject();
try {
JSONObject requestDataJSON = new JSONObject(
request.getParameter("pulseData"));
String memberName = requestDataJSON.getJSONObject(
"MemberAsynchEventQueues").getString("memberName");
Cluster.Member clusterMember = cluster.getMember(StringUtils
.makeCompliantName(memberName));
if (clusterMember != null) {
// response
Cluster.AsyncEventQueue[] asyncEventQueues = clusterMember
.getMemberAsyncEventQueueList();
JSONArray asyncEventQueueJsonList = new JSONArray();
if (asyncEventQueues != null && asyncEventQueues.length > 0) {
responseJSON.put("isAsyncEventQueuesPresent", true);
for (Cluster.AsyncEventQueue asyncEventQueue : asyncEventQueues) {
JSONObject asyncEventQueueJSON = new JSONObject();
asyncEventQueueJSON.put("id", asyncEventQueue.getId());
asyncEventQueueJSON.put("primary", asyncEventQueue.getPrimary());
asyncEventQueueJSON.put("senderType", asyncEventQueue.isParallel());
asyncEventQueueJSON
.put("batchSize", asyncEventQueue.getBatchSize());
asyncEventQueueJSON.put("batchTimeInterval",
asyncEventQueue.getBatchTimeInterval());
asyncEventQueueJSON.put("batchConflationEnabled",
asyncEventQueue.isBatchConflationEnabled());
asyncEventQueueJSON.put("asyncEventListener",
asyncEventQueue.getAsyncEventListener());
asyncEventQueueJSON.put("queueSize",
asyncEventQueue.getEventQueueSize());
asyncEventQueueJsonList.put(asyncEventQueueJSON);
}
responseJSON.put("asyncEventQueues", asyncEventQueueJsonList);
} else {
responseJSON.put("isAsyncEventQueuesPresent", false);
}
}
// Send json response
return responseJSON;
} catch (JSONException e) {
throw new Exception(e);
}
}
}