io.fabric8.forge.camel.commands.jolokia.ContextInflightCommand Maven / Gradle / Ivy
/**
* Copyright 2005-2015 Red Hat, Inc.
*
* Red Hat 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 io.fabric8.forge.camel.commands.jolokia;
import javax.inject.Inject;
import org.jboss.forge.addon.ui.context.UIBuilder;
import org.jboss.forge.addon.ui.context.UIContext;
import org.jboss.forge.addon.ui.context.UIExecutionContext;
import org.jboss.forge.addon.ui.input.UIInput;
import org.jboss.forge.addon.ui.metadata.UICommandMetadata;
import org.jboss.forge.addon.ui.metadata.WithAttributes;
import org.jboss.forge.addon.ui.result.Result;
import org.jboss.forge.addon.ui.result.Results;
import org.jboss.forge.addon.ui.util.Categories;
import org.jboss.forge.addon.ui.util.Metadata;
public class ContextInflightCommand extends AbstractJolokiaCommand {
@Inject
@WithAttributes(label = "name", required = true, description = "The name of the Camel context")
private UIInput name;
@Inject
@WithAttributes(label = "route", required = true, description = "The name of the Camel route")
private UIInput route;
@Inject
@WithAttributes(label = "limit", required = false, defaultValue = "0", description = "To limit the number of exchanges shown")
private UIInput limit;
@Inject
@WithAttributes(label = "sortByLongestDuration", required = false, defaultValue = "false", description = "true = sort by longest duration, false = sort by exchange id")
private UIInput sortByLongestDuration;
@Override
public UICommandMetadata getMetadata(UIContext context) {
return Metadata.forCommand(ConnectCommand.class).name(
"camel-context-inflight").category(Categories.create(CATEGORY))
.description("List inflight exchanges.");
}
@Override
public void initializeUI(UIBuilder builder) throws Exception {
name.setCompleter(new CamelContextCompleter(getController()));
builder.add(name).add(route).add(limit).add(sortByLongestDuration);
}
@Override
public Result execute(UIExecutionContext context) throws Exception {
String url = getJolokiaUrl();
if (url == null) {
return Results.fail("Not connected to remote jolokia agent. Use camel-connect command first");
}
Boolean value = sortByLongestDuration.getValue();
boolean flag = value != null && value.booleanValue();
org.apache.camel.commands.ContextInflightCommand command = new org.apache.camel.commands.ContextInflightCommand(name.getValue(), route.getValue(), limit.getValue(), flag);
command.execute(getController(), getOutput(context), getError(context));
return Results.success();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy