use of org.opennms.netmgt.vmmgr.InvokerService in project opennms by OpenNMS.
the class Main method main.
@SuppressWarnings({ "static-access", "deprecation" })
public static void main(final String... args) throws Exception {
final Options options = new Options();
options.addOption(OptionBuilder.withDescription("this help").withLongOpt("help").create("h"));
options.addOption(OptionBuilder.hasArg().withArgName("DIRECTORY").withDescription("OpenNMS home directory").withLongOpt("opennms-home").create("o"));
final CommandLineParser parser = new GnuParser();
try {
final CommandLine line = parser.parse(options, args);
if (line.hasOption("help")) {
final HelpFormatter formatter = new HelpFormatter();
formatter.printHelp("syslog-profiler", options, true);
System.exit(1);
}
if (line.hasOption("opennms-home")) {
OPENNMS_HOME = line.getOptionValue("opennms-home");
} else {
final HelpFormatter formatter = new HelpFormatter();
formatter.printHelp("syslog-profiler", "You must specify your OpenNMS home.", options, null);
System.exit(1);
}
} catch (Throwable e) {
LOG.warn("An error occurred trying to parse the command-line.", e);
}
System.out.println("- using " + OPENNMS_HOME + "/etc for configuration files");
System.setProperty("opennms.home", OPENNMS_HOME);
MBeanServer server = ManagementFactory.getPlatformMBeanServer();
List<Invoke> invokes = new ArrayList<Invoke>();
invokes.add((Invoke) CastorUtils.unmarshal(Invoke.class, new StringReader("<invoke at=\"start\" pass=\"0\" method=\"init\"/>")));
invokes.add((Invoke) CastorUtils.unmarshal(Invoke.class, new StringReader("<invoke at=\"start\" pass=\"1\" method=\"start\"/>")));
invokes.add((Invoke) CastorUtils.unmarshal(Invoke.class, new StringReader("<invoke at=\"status\" pass=\"0\" method=\"status\"/>")));
invokes.add((Invoke) CastorUtils.unmarshal(Invoke.class, new StringReader("<invoke at=\"stop\" pass=\"0\" method=\"stop\"/>")));
List<Service> services = new ArrayList<Service>();
Invoker invoker = new Invoker();
invoker.setServer(server);
invoker.setAtType(InvokeAtType.START);
for (final Service s : Invoker.getDefaultServiceConfigFactory().getServices()) {
if (s.getName().contains("Eventd") || s.getName().contains("Syslogd")) {
services.add(s);
}
}
List<InvokerService> invokerServices = InvokerService.createServiceList(services.toArray(new Service[0]));
System.err.println(invokerServices);
invoker.setServices(invokerServices);
invoker.instantiateClasses();
Thread.sleep(10000);
}
Aggregations