Java tutorial
/** * Copyright (C) 2010-2013 Alibaba Group Holding Limited * * 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. */ package com.ict.dtube.tools.command; import java.util.ArrayList; import java.util.List; import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.Options; import org.apache.commons.cli.PosixParser; import org.slf4j.LoggerFactory; import ch.qos.logback.classic.LoggerContext; import ch.qos.logback.classic.joran.JoranConfigurator; import ch.qos.logback.core.joran.spi.JoranException; import com.ict.dtube.common.MQVersion; import com.ict.dtube.common.MixAll; import com.ict.dtube.remoting.protocol.RemotingCommand; import com.ict.dtube.srvutil.ServerUtil; import com.ict.dtube.tools.command.broker.BrokerStatsSubCommand; import com.ict.dtube.tools.command.broker.CleanExpiredCQSubCommand; import com.ict.dtube.tools.command.broker.UpdateBrokerConfigSubCommand; import com.ict.dtube.tools.command.cluster.ClusterListSubCommand; import com.ict.dtube.tools.command.connection.ConsumerConnectionSubCommand; import com.ict.dtube.tools.command.connection.ProducerConnectionSubCommand; import com.ict.dtube.tools.command.consumer.ConsumerProgressSubCommand; import com.ict.dtube.tools.command.consumer.DeleteSubscriptionGroupCommand; import com.ict.dtube.tools.command.consumer.StartMonitoringSubCommand; import com.ict.dtube.tools.command.consumer.UpdateSubGroupSubCommand; import com.ict.dtube.tools.command.message.PrintMessageSubCommand; import com.ict.dtube.tools.command.message.QueryMsgByIdSubCommand; import com.ict.dtube.tools.command.message.QueryMsgByKeySubCommand; import com.ict.dtube.tools.command.message.QueryMsgByOffsetSubCommand; import com.ict.dtube.tools.command.namesrv.DeleteKvConfigCommand; import com.ict.dtube.tools.command.namesrv.DeleteProjectGroupCommand; import com.ict.dtube.tools.command.namesrv.GetProjectGroupCommand; import com.ict.dtube.tools.command.namesrv.UpdateKvConfigCommand; import com.ict.dtube.tools.command.namesrv.UpdateProjectGroupCommand; import com.ict.dtube.tools.command.namesrv.WipeWritePermSubCommand; import com.ict.dtube.tools.command.offset.GetConsumerStatusCommand; import com.ict.dtube.tools.command.offset.ResetOffsetByTimeCommand; import com.ict.dtube.tools.command.topic.DeleteTopicSubCommand; import com.ict.dtube.tools.command.topic.TopicListSubCommand; import com.ict.dtube.tools.command.topic.TopicRouteSubCommand; import com.ict.dtube.tools.command.topic.TopicStatsSubCommand; import com.ict.dtube.tools.command.topic.UpdateOrderConfCommand; import com.ict.dtube.tools.command.topic.UpdateTopicSubCommand; /** * mqadmin?? * * @author shijia.wxr<vintage.wang@gmail.com> * @since 2013-7-25 */ public class MQAdminStartup { protected static List<SubCommand> subCommandList = new ArrayList<SubCommand>(); static { subCommandList.add(new UpdateTopicSubCommand()); subCommandList.add(new DeleteTopicSubCommand()); subCommandList.add(new UpdateSubGroupSubCommand()); subCommandList.add(new DeleteSubscriptionGroupCommand()); subCommandList.add(new UpdateBrokerConfigSubCommand()); subCommandList.add(new TopicRouteSubCommand()); subCommandList.add(new TopicStatsSubCommand()); subCommandList.add(new BrokerStatsSubCommand()); subCommandList.add(new QueryMsgByIdSubCommand()); subCommandList.add(new QueryMsgByKeySubCommand()); subCommandList.add(new QueryMsgByOffsetSubCommand()); subCommandList.add(new PrintMessageSubCommand()); subCommandList.add(new ProducerConnectionSubCommand()); subCommandList.add(new ConsumerConnectionSubCommand()); subCommandList.add(new ConsumerProgressSubCommand()); subCommandList.add(new ClusterListSubCommand()); subCommandList.add(new TopicListSubCommand()); subCommandList.add(new UpdateKvConfigCommand()); subCommandList.add(new DeleteKvConfigCommand()); subCommandList.add(new UpdateProjectGroupCommand()); subCommandList.add(new DeleteProjectGroupCommand()); subCommandList.add(new GetProjectGroupCommand()); subCommandList.add(new WipeWritePermSubCommand()); subCommandList.add(new ResetOffsetByTimeCommand()); subCommandList.add(new GetConsumerStatusCommand()); subCommandList.add(new UpdateOrderConfCommand()); subCommandList.add(new CleanExpiredCQSubCommand()); subCommandList.add(new StartMonitoringSubCommand()); } public static void main(String[] args) { System.setProperty(RemotingCommand.RemotingVersionKey, Integer.toString(MQVersion.CurrentVersion)); try { initLogback(); switch (args.length) { case 0: printHelp(); break; case 2: if (args[0].equals("help")) { SubCommand cmd = findSubCommand(args[1]); if (cmd != null) { Options options = ServerUtil.buildCommandlineOptions(new Options()); options = cmd.buildCommandlineOptions(options); if (options != null) { ServerUtil.printCommandLineHelp("mqadmin " + cmd.commandName(), options); } } else { System.out.println("The sub command \'" + args[1] + "\' not exist."); } break; } case 1: default: SubCommand cmd = findSubCommand(args[0]); if (cmd != null) { // mainargs?args? String[] subargs = parseSubArgs(args); // ? Options options = ServerUtil.buildCommandlineOptions(new Options()); final CommandLine commandLine = ServerUtil.parseCmdLine("mqadmin " + cmd.commandName(), subargs, cmd.buildCommandlineOptions(options), new PosixParser()); if (null == commandLine) { System.exit(-1); return; } if (commandLine.hasOption('n')) { String namesrvAddr = commandLine.getOptionValue('n'); System.setProperty(MixAll.NAMESRV_ADDR_PROPERTY, namesrvAddr); } cmd.execute(commandLine, options); } else { System.out.println("The sub command \'" + args[0] + "\' not exist."); } break; } } catch (Exception e) { e.printStackTrace(); } } private static void initLogback() throws JoranException { String dtubeHome = System.getProperty(MixAll.DTUBE_HOME_PROPERTY, System.getenv(MixAll.DTUBE_HOME_ENV)); // ?Logback LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory(); JoranConfigurator configurator = new JoranConfigurator(); configurator.setContext(lc); lc.reset(); configurator.doConfigure(dtubeHome + "/conf/logback_tools.xml"); } private static String[] parseSubArgs(String[] args) { if (args.length > 1) { String[] result = new String[args.length - 1]; for (int i = 0; i < args.length - 1; i++) { result[i] = args[i + 1]; } return result; } return null; } private static SubCommand findSubCommand(final String name) { for (SubCommand cmd : subCommandList) { if (cmd.commandName().toUpperCase().equals(name.toUpperCase())) { return cmd; } } return null; } private static void printHelp() { System.out.println("The most commonly used mqadmin commands are:"); for (SubCommand cmd : subCommandList) { System.out.printf(" %-20s %s\n", cmd.commandName(), cmd.commandDesc()); } System.out.println("\nSee 'mqadmin help <command>' for more information on a specific command."); } }