All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.prd.mobile.ios.mios.CommandLineBuilder Maven / Gradle / Ivy

Go to download

This plugin is used to run iOS Xcode builds with Maven. It also uses the Maven integration with a central artifact repository and the dependency resolution.

There is a newer version: 1.14.7
Show newest version
/*
 * #%L
 * xcode-maven-plugin
 * %%
 * Copyright (C) 2012 SAP AG
 * %%
 * 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.
 * #L%
 */
package com.sap.prd.mobile.ios.mios;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

class CommandLineBuilder
{

  private final static String XCODEBUILD = "xcodebuild";

  private XCodeContext xcodeContext;

  public CommandLineBuilder(XCodeContext ctx)
  {
    this.xcodeContext = ctx;
  }

  String[] createBuildCall()
  {
    List result = new ArrayList();
    result.add(XCODEBUILD);
    appendOptions(xcodeContext, result);
    for (String buildAction : xcodeContext.getBuildActions()) {
      appendValue(result, buildAction);
    }
    appendSettings(xcodeContext.getSettings(), result);
    return result.toArray(new String[result.size()]);
  }

  private static void appendOptions(XCodeContext xcodeContext, List result)
  {
    Map options = xcodeContext.getOptions().getAllOptions();
    for (Map.Entry entry : options.entrySet()) {
      appendOption(result, entry.getKey(), entry.getValue());
    }
  }

  private static void appendOption(List result, String key, String value)
  {

    CommandLineBuilder.appendKey(result, key);
    if (value != null)
      CommandLineBuilder.appendValue(result, value);
  }

  private static void appendSettings(Settings settings, List result)
  {

    for (Map.Entry entry : settings.getAllSettings().entrySet()) {
      appendSetting(result, entry.getKey(), entry.getValue());
    }
  }

  private static void appendSetting(List result, String key, String value)
  {
    result.add(key + "=" + value);
  }

  static void appendKey(List result, String key)
  {
    check("key", key);
    result.add("-" + key);
  }

  static void appendValue(List result, String value)
  {
    check("value", value);
    result.add(value);
  }

  static void check(final String name, final String forCheck)
  {
    if (forCheck == null || forCheck.isEmpty())
      throw new IllegalStateException("Invalid " + name + ": '" + forCheck + "'. Was null or empty.");
  }

  @Override
  public String toString()
  {
    final StringBuilder sb = new StringBuilder(256);
    boolean first = true;
    for (String part : createBuildCall()) {
      if (!first)
        sb.append(" ");
      else
        first = false;
      sb.append(part);
    }
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy