Xamarin Public Jenkins (auto-signing) 6bdd276d05 Imported Upstream version 5.0.0.42
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
2017-04-10 11:41:01 +00:00

323 lines
9.2 KiB
C#

//
// ManagedCompiler.cs: Task for compilers
//
// Author:
// Marek Sieradzki (marek.sieradzki@gmail.com)
//
// (C) 2005 Marek Sieradzki
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Text;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
namespace Microsoft.Build.Tasks {
public abstract class ManagedCompiler : ToolTaskExtension {
protected ManagedCompiler ()
{
}
[MonoTODO]
protected internal override void AddCommandLineCommands (
CommandLineBuilderExtension commandLine)
{
if (NoConfig)
commandLine.AppendSwitch ("/noconfig");
}
[MonoTODO]
protected internal override void AddResponseFileCommands (
CommandLineBuilderExtension commandLine)
{
if (AddModules != null && AddModules.Length > 0)
commandLine.AppendSwitchIfNotNull ("/addmodule:", AddModules, ",");
if (Bag ["CodePage"] != null)
commandLine.AppendSwitchIfNotNull ("/codepage:", CodePage.ToString ());
commandLine.AppendSwitchIfNotNull ("/debug:", DebugType);
if (Bag ["DelaySign"] != null)
if (DelaySign)
commandLine.AppendSwitch ("/delaysign+");
else
commandLine.AppendSwitch ("/delaysign-");
if (Bag ["EmitDebugInformation"] != null)
if (EmitDebugInformation)
commandLine.AppendSwitch ("/debug:portable");
else
commandLine.AppendSwitch ("/debug-");
//fileAlignment
commandLine.AppendSwitchIfNotNull ("/keycontainer:", KeyContainer);
commandLine.AppendSwitchIfNotNull ("/keyfile:", KeyFile);
if (KeyFile != null && !DelaySign)
commandLine.AppendSwitch("/publicsign");
// FIXME: add ids from metadata
if (LinkResources != null)
foreach (ITaskItem item in LinkResources)
commandLine.AppendSwitchIfNotNull ("/linkresource:", item.ItemSpec);
if (NoLogo)
commandLine.AppendSwitch ("/nologo");
if (Bag ["Optimize"] != null)
if (Optimize)
commandLine.AppendSwitch ("/optimize+");
else
commandLine.AppendSwitch ("/optimize-");
if (OutputAssembly != null)
commandLine.AppendSwitchIfNotNull ("/out:", OutputAssembly.ItemSpec);
if (Resources != null)
foreach (ITaskItem item in Resources) {
string logical_name = item.GetMetadata ("LogicalName");
if (logical_name.Length > 0)
commandLine.AppendSwitchIfNotNull ("/resource:",
String.Format ("{0},{1}", item.ItemSpec, logical_name));
else
commandLine.AppendSwitchIfNotNull ("/resource:", item.ItemSpec);
}
if (Sources != null)
foreach (ITaskItem item in Sources)
commandLine.AppendFileNameIfNotNull (item.ItemSpec);
if (TargetType != null)
commandLine.AppendSwitchIfNotNull ("/target:", TargetType);
if (Bag ["TreatWarningsAsErrors"] != null)
if (TreatWarningsAsErrors)
commandLine.AppendSwitch ("/warnaserror+");
else
commandLine.AppendSwitch ("/warnaserror-");
commandLine.AppendSwitchIfNotNull ("/win32icon:", Win32Icon);
}
[MonoTODO]
protected bool CheckAllReferencesExistOnDisk ()
{
if (Bag ["References"] != null)
foreach (ITaskItem item in (ITaskItem[]) Bag ["References"])
if (!File.Exists (item.GetMetadata ("FullPath")))
return false;
return true;
}
[MonoTODO]
protected void CheckHostObjectSupport (string parameterName,
bool resultFromHostObjectSetOperation)
{
}
[MonoTODO]
protected override bool HandleTaskExecutionErrors ()
{
if (!Log.HasLoggedErrors && ExitCode != 0)
Log.LogError ("Compiler crashed with code: {0}.", ExitCode);
return ExitCode == 0 && !Log.HasLoggedErrors;
}
[MonoTODO]
protected bool ListHasNoDuplicateItems (ITaskItem [] itemList,
string parameterName)
{
Dictionary <string, object> items = new Dictionary <string, object> ();
foreach (ITaskItem item in itemList) {
if (!items.ContainsKey (item.ItemSpec))
items.Add (item.ItemSpec, null);
else
return false;
}
return true;
}
protected internal virtual bool UseAlternateCommandLineToolToExecute ()
{
//
// If an alternate tool name or tool path was specified in the project file, then that tool is used
// rather than the host compiler for integrated development environment (IDE) builds.
//
return !string.IsNullOrEmpty (ToolPath) || ToolName != ToolExe;
}
[MonoTODO]
protected override bool ValidateParameters ()
{
return true;
}
public string[] AdditionalLibPaths {
get { return (string[]) Bag ["AdditionalLibPaths"]; }
set { Bag ["AdditionalLibPaths"] = value; }
}
public string[] AddModules {
get { return (string[]) Bag ["AddModules"]; }
set { Bag ["AddModules"] = value; }
}
public int CodePage {
get { return GetIntParameterWithDefault ("CodePage", 0); }
set { Bag ["CodePage"] = value; }
}
public string DebugType {
get { return (string) Bag ["DebugType"]; }
set { Bag ["DebugType"] = value; }
}
public string DefineConstants {
get { return (string) Bag ["DefineConstants"]; }
set { Bag ["DefineConstants"] = value; }
}
public bool DelaySign {
get { return GetBoolParameterWithDefault ("DelaySign", false); }
set { Bag ["DelaySign"] = value; }
}
public bool EmitDebugInformation {
get { return GetBoolParameterWithDefault ("EmitDebugInformation", false); }
set { Bag ["EmitDebugInformation"] = value; }
}
public int FileAlignment {
get { return GetIntParameterWithDefault ("FileAlignment", 0); }
set { Bag ["FileAlignment"] = value; }
}
protected bool HostCompilerSupportsAllParameters {
get { return true; }
set { Bag ["HostCompilerSupportsAllParameters"] = value; }
}
public string KeyContainer {
get { return (string) Bag ["KeyContainer"]; }
set { Bag ["KeyContainer"] = value; }
}
public string KeyFile {
get { return (string) Bag ["KeyFile"]; }
set { Bag ["KeyFile"] = value; }
}
public ITaskItem[] LinkResources {
get { return (ITaskItem[]) Bag ["LinkResources"]; }
set { Bag ["LinkResources"] = value; }
}
public string MainEntryPoint {
get { return (string) Bag ["MainEntryPoint"]; }
set { Bag ["MainEntryPoint"] = value; }
}
public bool NoConfig {
get { return GetBoolParameterWithDefault ("NoConfig", false); }
set { Bag ["NoConfig"] = value; }
}
public bool NoLogo {
get { return GetBoolParameterWithDefault ("NoLogo", false); }
set { Bag ["NoLogo"] = value; }
}
public bool Optimize {
get { return GetBoolParameterWithDefault ("Optimize", false); }
set { Bag ["Optimize"] = value; }
}
[Output]
public ITaskItem OutputAssembly {
get { return (ITaskItem) Bag ["OutputAssembly"]; }
set { Bag ["OutputAssembly"] = value; }
}
public ITaskItem[] References {
get { return (ITaskItem[]) Bag ["References"]; }
set { Bag ["References"] = value; }
}
public ITaskItem[] Resources {
get { return (ITaskItem[]) Bag ["Resources"]; }
set { Bag ["Resources"] = value; }
}
public ITaskItem[] ResponseFiles {
get { return (ITaskItem[]) Bag ["ResponseFiles"]; }
set { Bag ["ResponseFiles"] = value; }
}
public ITaskItem[] Sources {
get { return (ITaskItem[]) Bag ["Sources"]; }
set {
Bag ["Sources"] = value;
if (Bag ["OutputAssembly"] == null && value != null && value.Length >= 1)
Bag ["OutputAssembly"] = new TaskItem (String.Format ("{0}.exe", value [0].ItemSpec));
}
}
protected override Encoding StandardOutputEncoding {
get { return Console.Error.Encoding; }
}
public string TargetType {
get {
if (Bag.Contains ("TargetType")) {
string s = (string) Bag ["TargetType"];
return s.ToLowerInvariant ();
} else
return null;
}
set { Bag ["TargetType"] = value; }
}
public bool TreatWarningsAsErrors {
get { return GetBoolParameterWithDefault ("TreatWarningsAsErrors", false); }
set { Bag ["TreatWarningsAsErrors"] = value; }
}
public bool Utf8Output {
get { return GetBoolParameterWithDefault ("Utf8Output", false); }
set { Bag ["Utf8Output"] = value; }
}
public string Win32Icon {
get { return (string) Bag ["Win32Icon"]; }
set { Bag ["Win32Icon"] = value; }
}
public string Win32Resource {
get { return (string) Bag ["Win32Resource"]; }
set { Bag ["Win32Resource"] = value; }
}
}
}