Package org.apache.servicemix.kernel.gshell.activemq

Source Code of org.apache.servicemix.kernel.gshell.activemq.AdministrationCommand

/*
* 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.servicemix.kernel.gshell.activemq;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;

import org.apache.activemq.console.command.Command;
import org.apache.activemq.console.formatter.CommandShellOutputFormatter;
import org.apache.activemq.console.CommandContext;
import org.apache.geronimo.gshell.clp.Argument;
import org.apache.geronimo.gshell.command.Arguments;
import org.apache.servicemix.kernel.gshell.core.OsgiCommandSupport;

/**
* @version $Rev: 708763 $ $Date: 2008-10-29 04:40:35 +0100 (Wed, 29 Oct 2008) $
*/
public class AdministrationCommand extends OsgiCommandSupport {

    private Command command;

    @Argument(index=0, multiValued=true, required=true)
    private Collection<String> arguments = null;

  protected Object doExecute() throws Exception {
    final String[] args = Arguments.toStringArray(arguments.toArray());

    CommandContext context2 = new CommandContext();
    context2.setFormatter(new CommandShellOutputFormatter(io.outputStream));
    Command currentCommand = command.getClass().newInstance();

    try {
        currentCommand.setCommandContext(context2);
        currentCommand.execute(new ArrayList<String>(Arrays.asList(args)));
        return null;
    } catch (Throwable e) {
        Throwable cur = e;
        while (cur.getCause() != null) {
            cur = cur.getCause();
        }
        if (cur instanceof java.net.ConnectException) {
            context2
                .print("\n"
                       + "Could not connect to JMX server.  This command requires that the remote JMX server be enabled.\n"
                       + "This is typically done by adding the following JVM arguments: \n"
                       + "   -Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.authenticate=false \n"
                       + "   -Dcom.sun.management.jmxremote.ssl=false \n" + "\n"
                       + "The connection error was: " + cur + "\n");
        } else {
            if (e instanceof Exception) {
                throw (Exception)e;
            } else {
                throw new RuntimeException(e);
            }

        }
    }
    return null;

  }

  public Command getCommand() {
        return command;
    }

    public void setCommand(Command command) {
        this.command = command;
    }
}
TOP

Related Classes of org.apache.servicemix.kernel.gshell.activemq.AdministrationCommand

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.