/* * 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 io.brooklyn.ambari; import java.util.Arrays; import org.apache.brooklyn.cli.Main; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.common.base.Objects.ToStringHelper; import io.airlift.airline.Command; import io.airlift.airline.Option; /** * This class provides a static main entry point for launching a custom Brooklyn-based app. * <p> * It inherits the standard Brooklyn CLI options from {@link brooklyn.cli.Main}, plus adds a few more shortcuts for * favourite blueprints to the {@link LaunchCommand}. */ public class AmbariMain extends Main { private static final Logger log = LoggerFactory.getLogger(AmbariMain.class); public static void main(String... args) { log.debug("CLI invoked with args " + Arrays.asList(args)); new AmbariMain().execCli(args); } @Override protected String cliScriptName() { return "start.sh"; } @Override protected Class<? extends BrooklynCommand> cliLaunchCommand() { return LaunchCommand.class; } @Command(name = "launch", description = "Starts a brooklyn server, and optionally an application.") public static class LaunchCommand extends Main.LaunchCommand { @Option(name = {"--ambari"}, description = "Launch an Ambari application") public boolean ambari; @Override public Void call() throws Exception { // process our CLI arguments if (ambari) { setAppToLaunch(AmbariCluster.class.getCanonicalName()); } // now process the standard launch arguments return super.call(); } @Override public ToStringHelper string() { return super.string() .add("ambari", ambari); } } }