blob: a3655c5d055d912f280aa274210cccb62a784d5d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You 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.apache.geode.management.internal.cli.functions;
import org.apache.geode.cache.Cache;
import org.apache.geode.cache.execute.FunctionContext;
import org.apache.geode.cache.query.CqQuery;
import org.apache.geode.cache.query.internal.CqQueryVsdStats;
import org.apache.geode.cache.query.internal.cq.CqService;
import org.apache.geode.cache.query.internal.cq.InternalCqQuery;
import org.apache.geode.internal.cache.execute.InternalFunction;
import org.apache.geode.internal.cache.tier.sockets.CacheClientNotifier;
import org.apache.geode.internal.cache.tier.sockets.CacheClientProxy;
import org.apache.geode.management.internal.cli.CliUtils;
import org.apache.geode.management.internal.functions.CliFunctionResult;
import org.apache.geode.management.internal.i18n.CliStrings;
/***
* Function to get subscription-queue-size
*
*/
public class GetSubscriptionQueueSizeFunction implements InternalFunction<String[]> {
private static final long serialVersionUID = 1L;
private static final String ID =
"org.apache.geode.management.internal.cli.functions.GetSubscriptionQueueSizeFunction";
@Override
public String getId() {
return ID;
}
@Override
public void execute(FunctionContext<String[]> context) {
final Cache cache = context.getCache();
final String memberNameOrId =
CliUtils.getMemberNameOrId(cache.getDistributedSystem().getDistributedMember());
String[] args = context.getArguments();
String durableClientId = args[0];
String cqName = args[1];
context.getResultSender()
.lastResult(createFunctionResult(memberNameOrId, durableClientId, cqName));
}
private CliFunctionResult createFunctionResult(String memberNameOrId, String durableClientId,
String cqName) {
try {
CacheClientNotifier cacheClientNotifier = CacheClientNotifier.getInstance();
if (cacheClientNotifier == null) {
return new CliFunctionResult(memberNameOrId, CliFunctionResult.StatusState.ERROR,
CliStrings.NO_CLIENT_FOUND);
}
CacheClientProxy cacheClientProxy = cacheClientNotifier.getClientProxy(durableClientId);
// Check if the client is present or not
if (cacheClientProxy == null) {
return new CliFunctionResult(memberNameOrId, CliFunctionResult.StatusState.ERROR,
CliStrings.format(CliStrings.NO_CLIENT_FOUND_WITH_CLIENT_ID, durableClientId));
}
if (cqName == null || cqName.isEmpty()) {
return new CliFunctionResult(memberNameOrId, CliFunctionResult.StatusState.OK,
Integer.toString(cacheClientNotifier.getDurableClientHAQueueSize(durableClientId)));
}
CqService cqService = cacheClientProxy.getCache().getCqService();
if (cqService == null) {
return new CliFunctionResult(memberNameOrId, CliFunctionResult.StatusState.ERROR,
CliStrings.COUNT_DURABLE_CQ_EVENTS__NO__CQS__REGISTERED);
}
CqQuery cqQuery = cqService.getClientCqFromServer(cacheClientProxy.getProxyID(), cqName);
if (cqQuery == null) {
return new CliFunctionResult(memberNameOrId, CliFunctionResult.StatusState.ERROR,
CliStrings.format(CliStrings.COUNT_DURABLE_CQ_EVENTS__DURABLE_CQ_NOT_FOUND,
durableClientId, cqName));
}
CqQueryVsdStats cqVsdStats = ((InternalCqQuery) cqQuery).getVsdStats();
if (cqVsdStats == null) {
return new CliFunctionResult(memberNameOrId, CliFunctionResult.StatusState.ERROR,
CliStrings.format(
CliStrings.COUNT_DURABLE_CQ_EVENTS__DURABLE_CQ_STATS_NOT_FOUND,
durableClientId, cqName));
}
long queueSize = cqVsdStats.getNumHAQueuedEvents();
return new CliFunctionResult(memberNameOrId, CliFunctionResult.StatusState.OK,
Long.toString(queueSize));
} catch (Exception e) {
return new CliFunctionResult(memberNameOrId, CliFunctionResult.StatusState.ERROR,
e.getMessage());
}
}
}