4f7a5448d9ef53c4760b0f2a5f1fa7dc6366d5d5
[mono.git] / mcs / class / Moonlight.Build.Tasks / Moonlight.Build.Tasks / Respack.cs
1 //
2 // Respack.cs
3 //
4 // Author:
5 //   Ankit Jain (jankit@novell.com)
6 //
7 // Copyright 2010 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHRespackL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DERespackINGS IN THE SOFTWARE.
27
28 using System;
29 using System.Diagnostics;
30 using System.IO;
31 using Microsoft.Build.Framework;
32 using Microsoft.Build.Tasks;
33 using Microsoft.Build.Utilities;
34 using Mono.XBuild.Utilities;
35
36 namespace Moonlight.Build.Tasks {
37         public class Respack : ToolTask
38         {
39                 public override bool Execute ()
40                 {
41                         if (!ValidateParameters ()) {
42                                 // not generating any resource file
43                                 OutputFile = null;
44                                 return true;
45                         }
46
47                         return base.Execute ();
48                 }
49
50                 void AddCommandLineCommands (CommandLineBuilderExtension commandLine)
51                 {
52                         if (Resources.Length == 0)
53                                 return;
54
55                         commandLine.AppendFileNameIfNotNull (OutputFile);
56
57                         commandLine.AppendFileNamesIfNotNull (Resources, " ");
58                 }
59
60                 protected override string GenerateCommandLineCommands ()
61                 {
62                         CommandLineBuilderExtension clbe = new CommandLineBuilderExtension ();
63                         AddCommandLineCommands (clbe);
64                         return clbe.ToString ();
65                 }
66
67                 protected override string GenerateFullPathToTool ()
68                 {
69                         return Path.Combine (ToolPath, ToolExe);
70                 }
71
72                 protected override bool ValidateParameters()
73                 {
74                         return Resources.Length > 0;
75                 }
76
77                 [Required]
78                 [Output]
79                 public ITaskItem OutputFile {
80                         get; set;
81                 }
82
83                 [Required]
84                 public ITaskItem[] Resources {
85                         get; set;
86                 }
87
88                 protected override string ToolName {
89                         get {
90                                 return RunningOnWindows ? "respack.bat" : "respack";
91                         }
92                 }
93
94                 static bool RunningOnWindows {
95                         get {
96                                 // Code from Mono.GetOptions/Options.cs
97                                 // check for non-Unix platforms - see FAQ for more details
98                                 // http://www.mono-project.com/FAQ:_Technical#How_to_detect_the_execution_platform_.3F
99                                 int platform = (int) Environment.OSVersion.Platform;
100                                 return ((platform != 4) && (platform != 128));
101                         }
102
103                 }
104         }
105 }