config.getPassword());
jmxc = conn.getConnector();
mbsc = conn.getMBeanServerConnection();
if (config.checkoptionsetting("r", commandlineoptionparser.getAlloptions()))
{
JMXinfo info = new JMXinfo(jmxc, commandlineoptionparser, mbsc);
ReportGenerator reportgen = new ReportGenerator(config.optionchecker("r", commandlineoptionparser
.getAlloptions()), info);
reportgen.loadproperties();
reportgen.run();
}
/*
* This implementation is for the people who are using the
* interactive mode for one shot this run the user given command
* and exit
*/
for (int i = 0; i < args.length; i++)
{
if (CommandExecutionEngine.getCommands().keySet().contains(args[i]))
{
oneshotmode(args, commandlineoptionparser, jmxc, mbsc);
return;
}
}
}
catch (Exception ex)
{
connectionrefuse(ex);
return;
}
/* In this point connection has been established */
String line;
String[] command;
/* prividing GNU readline features using Jline library */
PrintWriter out = new PrintWriter(System.out);
SimpleCompletor completer = new SimpleCompletor(new String[] {
COMMAND_EXIT, COMMAND_QUIT, OBJECT_QUEUE, OBJECT_EXCHANGE, OBJECT_CONNECTION,
OBJECT_USERMANAGEMENT, OBJECT_VIRTUALHOST});
for (String commandName : CommandExecutionEngine.getCommands().keySet())
{
completer.addCandidateString(commandName);
}
reader.addCompletor(new ArgumentCompletor(completer));
while ((line = reader.readLine("qpid-admin-$ ")) != null)
{
out.flush();
if (removeSpaces(line).equalsIgnoreCase(COMMAND_QUIT) || removeSpaces(line).equalsIgnoreCase(COMMAND_EXIT))
break;
else if (line.length() == 0)
continue;
else
{
command = line.split("\\s+");
commandlineoptionparser = new CommandLineOptionParser(command);
JMXinfo info = new JMXinfo(jmxc, commandlineoptionparser, mbsc);
CommandExecutionEngine engine = new CommandExecutionEngine(info);
if (engine.CommandSelector())
engine.runcommand();
}
}