This repository was archived by the owner on Oct 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 271
Expand file tree
/
Copy pathCssCompress.cs
More file actions
227 lines (203 loc) · 8.62 KB
/
CssCompress.cs
File metadata and controls
227 lines (203 loc) · 8.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
#region Copyright © 2005 Paul Welter. All rights reserved.
/*
Copyright © 2005 Paul Welter. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#endregion
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.IO;
using Microsoft.Build.Utilities;
using Microsoft.Build.Framework;
using MSBuild.Community.Tasks.Properties;
using System.Text.RegularExpressions;
namespace MSBuild.Community.Tasks.JavaScript
{
/// <summary>
/// MSBuild task to minimize the size of a css file.
/// </summary>
public class CssCompress : Task
{
#region Properties
// Properties
private ITaskItem[] compressedFiles;
/// <summary>
/// Gets the items that were successfully compressed.
/// </summary>
/// <value>The compressed files.</value>
[Output]
public ITaskItem[] CompressedFiles
{
get { return this.compressedFiles; }
}
private ITaskItem[] destinationFiles;
/// <summary>
/// Gets or sets the list of files to compressed the source files to.
/// </summary>
/// <remarks>
/// This list is expected to be a one-to-one mapping with the
/// list specified in the SourceFiles parameter. That is, the
/// first file specified in SourceFiles will be compressed to the
/// first location specified in DestinationFiles, and so forth.
/// </remarks>
/// <value>The destination files.</value>
[Output]
public ITaskItem[] DestinationFiles
{
get { return this.destinationFiles; }
set { this.destinationFiles = value; }
}
private ITaskItem destinationFolder;
/// <summary>
/// Gets or sets the directory to which you want to compress the files.
/// </summary>
/// <value>The destination folder.</value>
public ITaskItem DestinationFolder
{
get { return this.destinationFolder; }
set { this.destinationFolder = value; }
}
private ITaskItem[] sourceFiles;
/// <summary>
/// Gets or sets the source files to compress.
/// </summary>
/// <value>The source files to compress.</value>
[Required]
public ITaskItem[] SourceFiles
{
get { return this.sourceFiles; }
set { this.sourceFiles = value; }
}
#endregion
/// <summary>
/// When overridden in a derived class, executes the task.
/// </summary>
/// <returns>
/// true if the task successfully executed; otherwise, false.
/// </returns>
public override bool Execute()
{
bool result = true;
if ((this.sourceFiles == null) || (this.sourceFiles.Length == 0))
{
this.destinationFiles = new TaskItem[0];
this.compressedFiles = new TaskItem[0];
return true;
}
if ((this.destinationFiles == null) && (this.destinationFolder == null))
{
Log.LogError("No destination specified for compression. Please supply either '{0}' or '{1}'.", "DestinationFiles", "DestinationDirectory");
return false;
}
if ((this.destinationFiles != null) && (this.destinationFolder != null))
{
Log.LogError(Resources.ExactlyOneTypeOfDestination, "DestinationFiles", "DestinationDirectory");
return false;
}
if ((this.destinationFiles != null) && (this.destinationFiles.Length != this.sourceFiles.Length))
{
Log.LogError(Resources.TwoVectorsMustHaveSameLength,
this.destinationFiles.Length,
this.sourceFiles.Length,
"DestinationFiles",
"SourceFiles");
return false;
}
// create destination array
if (this.destinationFiles == null)
{
this.destinationFiles = new ITaskItem[this.sourceFiles.Length];
for (int x = 0; x < this.sourceFiles.Length; x++)
{
string newPath;
try
{
newPath = Path.Combine(this.destinationFolder.ItemSpec, Path.GetFileName(this.sourceFiles[x].ItemSpec));
}
catch (ArgumentException ex)
{
this.destinationFiles = new ITaskItem[0];
Log.LogError(Resources.MoveError,
this.sourceFiles[x].ItemSpec,
this.destinationFolder.ItemSpec,
ex.Message);
return false;
}
this.destinationFiles[x] = new TaskItem(newPath);
this.sourceFiles[x].CopyMetadataTo(this.destinationFiles[x]);
}
}
ArrayList compressedList = new ArrayList();
for (int x = 0; x < this.sourceFiles.Length; x++)
{
string sourceFile = this.sourceFiles[x].ItemSpec;
string destinationFile = this.destinationFiles[x].ItemSpec;
try
{
if (Directory.Exists(destinationFile))
{
Log.LogError(Resources.TaskDestinationIsDirectory, sourceFile, destinationFile);
return false;
}
if (Directory.Exists(sourceFile))
{
Log.LogError(Resources.TaskSourceIsDirectory, sourceFile, "CssCompress");
return false;
}
string buffer = File.ReadAllText(sourceFile);
buffer = Compress(buffer);
File.WriteAllText(destinationFile, buffer);
this.sourceFiles[x].CopyMetadataTo(this.destinationFiles[x]);
compressedList.Add(this.destinationFiles[x]);
}
catch (Exception ex)
{
Log.LogError(Resources.MoveError,
sourceFile,
destinationFile,
ex.Message);
result = false;
}
}
this.compressedFiles = (ITaskItem[])compressedList.ToArray(typeof(ITaskItem));
return result;
}
private string Compress(string source)
{
string body = source;
body = body.Replace(" ", string.Empty);
body = body.Replace(Environment.NewLine, string.Empty);
body = body.Replace("\t", string.Empty);
body = body.Replace(" {", "{");
body = body.Replace(" :", ":");
body = body.Replace(": ", ":");
body = body.Replace(", ", ",");
body = body.Replace("; ", ";");
body = body.Replace(";}", "}");
body = Regex.Replace(body, @"/\*[^\*]*\*+([^/\*]*\*+)*/", "$1");
body = Regex.Replace(body, @"(?<=[>])\s{2,}(?=[<])|(?<=[>])\s{2,}(?= )|(?<=&ndsp;)\s{2,}(?=[<])", string.Empty);
return body;
}
}
}