This repository has been archived by the owner on Oct 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathSlnFile.cs
1050 lines (916 loc) · 28.1 KB
/
SlnFile.cs
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// SlnFile.cs
//
// Author:
// Lluis Sanchez Gual <[email protected]>
//
// Copyright (c) 2016 Xamarin, Inc (http://www.xamarin.com)
//
// 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.Generic;
using System.Linq;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.IO;
using System.Collections;
using MonoDevelop.Core;
using MonoDevelop.Projects.Text;
using System.Text.RegularExpressions;
using System.Globalization;
namespace MonoDevelop.Projects.MSBuild
{
public class SlnFile
{
SlnProjectCollection projects = new SlnProjectCollection ();
SlnSectionCollection sections = new SlnSectionCollection ();
SlnPropertySet metadata = new SlnPropertySet (true);
int prefixBlankLines = 1;
TextFormatInfo format = new TextFormatInfo { NewLine = "\r\n" };
public string FormatVersion { get; set; }
public string ProductDescription { get; set; }
public string VisualStudioVersion {
get { return metadata.GetValue ("VisualStudioVersion"); }
set { metadata.SetValue ("VisualStudioVersion", value); }
}
public string MinimumVisualStudioVersion {
get { return metadata.GetValue ("MinimumVisualStudioVersion"); }
set { metadata.SetValue ("MinimumVisualStudioVersion", value); }
}
public SlnFile ()
{
projects.ParentFile = this;
sections.ParentFile = this;
}
/// <summary>
/// Gets the sln format version of the provided solution file
/// </summary>
/// <returns>The file version.</returns>
/// <param name="file">File.</param>
public static string GetFileVersion (string file)
{
string strVersion;
using (var reader = new StreamReader (file)) {
var strInput = reader.ReadLine();
while (string.IsNullOrWhiteSpace (strInput)) {
if (strInput == null)
return null;
strInput = reader.ReadLine ();
}
var match = slnVersionRegex.Match (strInput);
if (!match.Success) {
strInput = reader.ReadLine();
if (strInput == null)
return null;
match = slnVersionRegex.Match (strInput);
if (!match.Success)
return null;
}
strVersion = match.Groups[1].Value;
return strVersion;
}
}
static Regex slnVersionRegex = new Regex (@"Microsoft Visual Studio Solution File, Format Version (\d?\d.\d\d)");
/// <summary>
/// The directory to be used as base for converting absolute paths to relative
/// </summary>
public FilePath BaseDirectory {
get { return FileName.ParentDirectory; }
}
/// <summary>
/// Gets the solution configurations section.
/// </summary>
/// <value>The solution configurations section.</value>
public SlnPropertySet SolutionConfigurationsSection {
get { return sections.GetOrCreateSection ("SolutionConfigurationPlatforms", SlnSectionType.PreProcess).Properties; }
}
/// <summary>
/// Gets the project configurations section.
/// </summary>
/// <value>The project configurations section.</value>
public SlnPropertySetCollection ProjectConfigurationsSection {
get { return sections.GetOrCreateSection ("ProjectConfigurationPlatforms", SlnSectionType.PostProcess).NestedPropertySets; }
}
public SlnSectionCollection Sections {
get { return sections; }
}
public SlnProjectCollection Projects {
get { return projects; }
}
public FilePath FileName { get; set; }
public void Read (string file)
{
FileName = file;
format = FileUtil.GetTextFormatInfo (file);
using (var sr = new StreamReader (file))
Read (sr);
}
public void Read (TextReader reader)
{
string line;
int curLineNum = 0;
bool globalFound = false;
bool productRead = false;
while ((line = reader.ReadLine ()) != null) {
curLineNum++;
line = line.Trim ();
if (line.StartsWith ("Microsoft Visual Studio Solution File", StringComparison.Ordinal)) {
int i = line.LastIndexOf (' ');
if (i == -1)
throw new InvalidSolutionFormatException (curLineNum);
FormatVersion = line.Substring (i + 1);
prefixBlankLines = curLineNum - 1;
}
if (line.StartsWith ("# ", StringComparison.Ordinal)) {
if (!productRead) {
productRead = true;
ProductDescription = line.Substring (2);
}
} else if (line.StartsWith ("Project", StringComparison.Ordinal)) {
SlnProject p = new SlnProject ();
p.Read (reader, line, ref curLineNum);
projects.Add (p);
} else if (line == "Global") {
if (globalFound)
throw new InvalidSolutionFormatException (curLineNum, "Global section specified more than once");
globalFound = true;
while ((line = reader.ReadLine ()) != null) {
curLineNum++;
line = line.Trim ();
if (line == "EndGlobal") {
break;
} else if (line.StartsWith ("GlobalSection", StringComparison.Ordinal)) {
var sec = new SlnSection ();
sec.Read (reader, line, ref curLineNum);
sections.Add (sec);
} else // Ignore text that's out of place
continue;
}
if (line == null)
throw new InvalidSolutionFormatException (curLineNum, "Global section not closed");
} else if (line.IndexOf ('=') != -1) {
metadata.ReadLine (line, curLineNum);
}
}
if (FormatVersion == null)
throw new InvalidSolutionFormatException (curLineNum, "File header is missing");
}
public void Write (string file)
{
FileName = file;
var sw = new StringWriter ();
Write (sw);
TextFile.WriteFile (file, sw.ToString(), format.ByteOrderMark, true);
}
public void Write (TextWriter writer)
{
writer.NewLine = format.NewLine;
for (int n=0; n<prefixBlankLines; n++)
writer.WriteLine ();
writer.WriteLine ("Microsoft Visual Studio Solution File, Format Version " + FormatVersion);
writer.WriteLine ("# " + ProductDescription);
metadata.Write (writer);
foreach (var p in projects)
p.Write (writer);
writer.WriteLine ("Global");
foreach (SlnSection s in sections)
s.Write (writer, "GlobalSection");
writer.WriteLine ("EndGlobal");
}
}
public class SlnProject
{
SlnSectionCollection sections = new SlnSectionCollection ();
SlnFile parentFile;
public SlnFile ParentFile {
get {
return parentFile;
}
internal set {
parentFile = value;
sections.ParentFile = parentFile;
}
}
public string Id { get; set; }
public string TypeGuid { get; set; }
public string Name { get; set; }
public string FilePath { get; set; }
public int Line { get; private set; }
internal bool Processed { get; set; }
public SlnSectionCollection Sections {
get { return sections; }
}
internal void Read (TextReader reader, string line, ref int curLineNum)
{
Line = curLineNum;
int n = 0;
FindNext (curLineNum, line, ref n, '(');
n++;
FindNext (curLineNum, line, ref n, '"');
int n2 = n + 1;
FindNext (curLineNum, line, ref n2, '"');
TypeGuid = line.Substring (n + 1, n2 - n - 1);
n = n2 + 1;
FindNext (curLineNum, line, ref n, ')');
FindNext (curLineNum, line, ref n, '=');
FindNext (curLineNum, line, ref n, '"');
n2 = n + 1;
FindNext (curLineNum, line, ref n2, '"');
Name = line.Substring (n + 1, n2 - n - 1);
n = n2 + 1;
FindNext (curLineNum, line, ref n, ',');
FindNext (curLineNum, line, ref n, '"');
n2 = n + 1;
FindNext (curLineNum, line, ref n2, '"');
FilePath = line.Substring (n + 1, n2 - n - 1);
n = n2 + 1;
FindNext (curLineNum, line, ref n, ',');
FindNext (curLineNum, line, ref n, '"');
n2 = n + 1;
FindNext (curLineNum, line, ref n2, '"');
Id = line.Substring (n + 1, n2 - n - 1);
while ((line = reader.ReadLine ()) != null) {
curLineNum++;
line = line.Trim ();
if (line == "EndProject") {
return;
}
if (line.StartsWith ("ProjectSection", StringComparison.Ordinal)) {
if (sections == null)
sections = new SlnSectionCollection ();
var sec = new SlnSection ();
sections.Add (sec);
sec.Read (reader, line, ref curLineNum);
}
}
throw new InvalidSolutionFormatException (curLineNum, "Project section not closed");
}
void FindNext (int ln, string line, ref int i, char c)
{
i = line.IndexOf (c, i);
if (i == -1)
throw new InvalidSolutionFormatException (ln);
}
public void Write (TextWriter writer)
{
writer.Write ("Project(\"");
writer.Write (TypeGuid);
writer.Write ("\") = \"");
writer.Write (Name);
writer.Write ("\", \"");
writer.Write (FilePath);
writer.Write ("\", \"");
writer.Write (Id);
writer.WriteLine ("\"");
if (sections != null) {
foreach (SlnSection s in sections)
s.Write (writer, "ProjectSection");
}
writer.WriteLine ("EndProject");
}
}
public class SlnSection
{
SlnPropertySetCollection nestedPropertySets;
SlnPropertySet properties;
List<string> sectionLines;
int baseIndex;
public string Id { get; set; }
public int Line { get; private set; }
internal bool Processed { get; set; }
public SlnFile ParentFile { get; internal set; }
public bool IsEmpty {
get {
return (properties == null || properties.Count == 0) && (nestedPropertySets == null || nestedPropertySets.All (t => t.IsEmpty)) && (sectionLines == null || sectionLines.Count == 0);
}
}
/// <summary>
/// If true, this section won't be written to the file if it is empty
/// </summary>
/// <value><c>true</c> if skip if empty; otherwise, <c>false</c>.</value>
public bool SkipIfEmpty { get; set; }
public void Clear ()
{
properties = null;
nestedPropertySets = null;
sectionLines = null;
}
public SlnPropertySet Properties {
get {
if (properties == null) {
properties = new SlnPropertySet ();
properties.ParentSection = this;
if (sectionLines != null) {
foreach (var line in sectionLines)
properties.ReadLine (line, Line);
sectionLines = null;
}
}
return properties;
}
}
public SlnPropertySetCollection NestedPropertySets {
get {
if (nestedPropertySets == null) {
nestedPropertySets = new SlnPropertySetCollection (this);
if (sectionLines != null)
LoadPropertySets ();
}
return nestedPropertySets;
}
}
public void SetContent (IEnumerable<KeyValuePair<string,string>> lines)
{
sectionLines = new List<string> (lines.Select (p => p.Key + " = " + p.Value));
properties = null;
nestedPropertySets = null;
}
public IEnumerable<KeyValuePair<string,string>> GetContent ()
{
if (sectionLines != null)
return sectionLines.Select (li => {
int i = li.IndexOf ('=');
if (i != -1)
return new KeyValuePair<string,string> (li.Substring (0, i).Trim(), li.Substring (i + 1).Trim());
else
return new KeyValuePair<string,string> (li.Trim (), "");
});
else
return new KeyValuePair<string,string> [0];
}
public SlnSectionType SectionType { get; set; }
SlnSectionType ToSectionType (int curLineNum, string s)
{
if (s == "preSolution" || s == "preProject")
return SlnSectionType.PreProcess;
if (s == "postSolution" || s == "postProject")
return SlnSectionType.PostProcess;
throw new InvalidSolutionFormatException (curLineNum, "Invalid section type: " + s);
}
string FromSectionType (bool isProjectSection, SlnSectionType type)
{
if (type == SlnSectionType.PreProcess)
return isProjectSection ? "preProject" : "preSolution";
else
return isProjectSection ? "postProject" : "postSolution";
}
internal void Read (TextReader reader, string line, ref int curLineNum)
{
Line = curLineNum;
int k = line.IndexOf ('(');
if (k == -1)
throw new InvalidSolutionFormatException (curLineNum, "Section id missing");
var tag = line.Substring (0, k).Trim ();
var k2 = line.IndexOf (')', k);
if (k2 == -1)
throw new InvalidSolutionFormatException (curLineNum);
Id = line.Substring (k + 1, k2 - k - 1);
k = line.IndexOf ('=', k2);
SectionType = ToSectionType (curLineNum, line.Substring (k + 1).Trim ());
var endTag = "End" + tag;
sectionLines = new List<string> ();
baseIndex = ++curLineNum;
while ((line = reader.ReadLine()) != null) {
curLineNum++;
line = line.Trim ();
if (line == endTag)
break;
sectionLines.Add (line);
}
if (line == null)
throw new InvalidSolutionFormatException (curLineNum, "Closing section tag not found");
}
void LoadPropertySets ()
{
if (sectionLines != null) {
SlnPropertySet curSet = null;
for (int n = 0; n < sectionLines.Count; n++) {
var line = sectionLines [n];
if (string.IsNullOrEmpty (line.Trim ()))
continue;
var i = line.IndexOf ('.');
if (i == -1)
throw new InvalidSolutionFormatException (baseIndex + n);
var id = line.Substring (0, i);
if (curSet == null || id != curSet.Id) {
curSet = new SlnPropertySet (id);
nestedPropertySets.Add (curSet);
}
curSet.ReadLine (line.Substring (i + 1), baseIndex + n);
}
sectionLines = null;
}
}
internal void Write (TextWriter writer, string sectionTag)
{
if (SkipIfEmpty && IsEmpty)
return;
writer.Write ("\t");
writer.Write (sectionTag);
writer.Write ('(');
writer.Write (Id);
writer.Write (") = ");
writer.WriteLine (FromSectionType (sectionTag == "ProjectSection", SectionType));
if (sectionLines != null) {
foreach (var l in sectionLines)
writer.WriteLine ("\t\t" + l);
} else if (properties != null)
properties.Write (writer);
else if (nestedPropertySets != null) {
foreach (var ps in nestedPropertySets)
ps.Write (writer);
}
writer.WriteLine ("\tEnd" + sectionTag);
}
}
/// <summary>
/// A collection of properties
/// </summary>
public class SlnPropertySet: IDictionary<string,string>
{
OrderedDictionary values = new OrderedDictionary ();
bool isMetadata;
internal bool Processed { get; set; }
public SlnFile ParentFile {
get { return ParentSection != null ? ParentSection.ParentFile : null; }
}
public SlnSection ParentSection { get; set; }
/// <summary>
/// Text file line of this section in the original file
/// </summary>
/// <value>The line.</value>
public int Line { get; private set; }
internal SlnPropertySet ()
{
}
/// <summary>
/// Creates a new property set with the specified ID
/// </summary>
/// <param name="id">Identifier.</param>
public SlnPropertySet (string id)
{
Id = id;
}
internal SlnPropertySet (bool isMetadata)
{
this.isMetadata = isMetadata;
}
/// <summary>
/// Gets a value indicating whether this property set is empty.
/// </summary>
/// <value><c>true</c> if this instance is empty; otherwise, <c>false</c>.</value>
public bool IsEmpty {
get {
return values.Count == 0;
}
}
internal void ReadLine (string line, int currentLine)
{
if (Line == 0)
Line = currentLine;
int k = line.IndexOf ('=');
if (k != -1) {
var name = line.AsSpan (0, k).Trim ();
var val = line.AsSpan (k + 1).Trim ();
values [name.ToString ()] = val.ToString ();
} else {
line = line.Trim ();
if (!string.IsNullOrWhiteSpace (line))
values.Add (line, null);
}
}
internal void Write (TextWriter writer)
{
foreach (DictionaryEntry e in values) {
if (!isMetadata)
writer.Write ("\t\t");
if (Id != null)
writer.Write (Id + ".");
writer.WriteLine (e.Key + " = " + e.Value);
}
}
/// <summary>
/// Gets the identifier of the property set
/// </summary>
/// <value>The identifier.</value>
public string Id { get; private set; }
public string GetValue (string name, string defaultValue = null)
{
string res;
if (TryGetValue (name, out res))
return res;
else
return defaultValue;
}
public FilePath GetPathValue (string name, FilePath defaultValue = default(FilePath), bool relativeToSolution = true, FilePath relativeToPath = default(FilePath))
{
string val;
if (TryGetValue (name, out val)) {
string baseDir = null;
if (relativeToPath != null) {
baseDir = relativeToPath;
} else if (relativeToSolution && ParentFile != null && ParentFile.FileName != null) {
baseDir = ParentFile.FileName.ParentDirectory;
}
return MSBuildProjectService.FromMSBuildPath (baseDir, val);
}
else
return defaultValue;
}
public bool TryGetPathValue (string name, out FilePath value, FilePath defaultValue = default(FilePath), bool relativeToSolution = true, FilePath relativeToPath = default(FilePath))
{
string val;
if (TryGetValue (name, out val)) {
string baseDir = null;
if (relativeToPath != null) {
baseDir = relativeToPath;
} else if (relativeToSolution && ParentFile != null && ParentFile.FileName != null) {
baseDir = ParentFile.FileName.ParentDirectory;
}
string path;
var res = MSBuildProjectService.FromMSBuildPath (baseDir, val, out path);
value = path;
return res;
}
else {
value = defaultValue;
return value != default(FilePath);
}
}
public T GetValue<T> (string name)
{
return (T) GetValue (name, typeof(T), default(T));
}
public T GetValue<T> (string name, T defaultValue)
{
return (T) GetValue (name, typeof(T), defaultValue);
}
public object GetValue (string name, Type t, object defaultValue)
{
string val;
if (TryGetValue (name, out val)) {
if (t == typeof(bool))
return (object) val.Equals ("true", StringComparison.InvariantCultureIgnoreCase);
if (t.IsEnum)
return Enum.Parse (t, val, true);
if (t.IsGenericType && t.GetGenericTypeDefinition () == typeof(Nullable<>)) {
var at = t.GetGenericArguments () [0];
if (string.IsNullOrEmpty (val))
return null;
return Convert.ChangeType (val, at, CultureInfo.InvariantCulture);
}
return Convert.ChangeType (val, t, CultureInfo.InvariantCulture);
}
else
return defaultValue;
}
public void SetValue (string name, string value, string defaultValue = null, bool preserveExistingCase = false)
{
if (value == null && defaultValue == "")
value = "";
if (value == defaultValue) {
// if the value is default, only remove the property if it was not already the default
// to avoid unnecessary project file churn
string res;
if (TryGetValue (name, out res) && !string.Equals (defaultValue ?? "", res, preserveExistingCase ? StringComparison.OrdinalIgnoreCase : StringComparison.Ordinal))
Remove (name);
return;
}
string currentValue;
if (preserveExistingCase && TryGetValue (name, out currentValue) && string.Equals (value, currentValue, StringComparison.OrdinalIgnoreCase))
return;
values [name] = value;
}
public void SetValue (string name, FilePath value, FilePath defaultValue = default(FilePath), bool relativeToSolution = true, FilePath relativeToPath = default(FilePath))
{
var isDefault = value.CanonicalPath == defaultValue.CanonicalPath;
if (isDefault) {
// if the value is default, only remove the property if it was not already the default
// to avoid unnecessary project file churn
if (ContainsKey (name) && (defaultValue == null || defaultValue != GetPathValue (name, relativeToSolution:relativeToSolution, relativeToPath:relativeToPath)))
Remove (name);
return;
}
string baseDir = null;
if (relativeToPath != null) {
baseDir = relativeToPath;
} else if (relativeToSolution && ParentFile != null && ParentFile.FileName != null) {
baseDir = ParentFile.FileName.ParentDirectory;
}
values [name] = MSBuildProjectService.ToMSBuildPath (baseDir, value, false);
}
public void SetValue (string name, object value, object defaultValue = null)
{
var isDefault = object.Equals (value, defaultValue);
if (isDefault) {
// if the value is default, only remove the property if it was not already the default
// to avoid unnecessary project file churn
if (ContainsKey (name) && (defaultValue == null || !object.Equals (defaultValue, GetValue (name, defaultValue.GetType (), null))))
Remove (name);
return;
}
if (value is bool)
values [name] = (bool)value ? "TRUE" : "FALSE";
else
values [name] = Convert.ToString (value, CultureInfo.InvariantCulture);
}
void IDictionary<string,string>.Add (string key, string value)
{
SetValue (key, value);
}
/// <summary>
/// Determines whether the current instance contains an entry with the specified key
/// </summary>
/// <returns><c>true</c>, if key was containsed, <c>false</c> otherwise.</returns>
/// <param name="key">Key.</param>
public bool ContainsKey (string key)
{
return values.Contains (key);
}
/// <summary>
/// Removes a property
/// </summary>
/// <param name="key">Property name</param>
public bool Remove (string key)
{
var wasThere = values.Contains (key);
values.Remove (key);
return wasThere;
}
/// <summary>
/// Tries to get the value of a property
/// </summary>
/// <returns><c>true</c>, if the property exists, <c>false</c> otherwise.</returns>
/// <param name="key">Property name</param>
/// <param name="value">Value.</param>
public bool TryGetValue (string key, out string value)
{
value = (string) values [key];
return value != null;
}
/// <summary>
/// Gets or sets the value of a property
/// </summary>
/// <param name="index">Index.</param>
public string this [string index] {
get {
return (string) values [index];
}
set {
values [index] = value;
}
}
public ICollection<string> Values {
get {
return values.Values.Cast<string>().ToList ();
}
}
public ICollection<string> Keys {
get { return values.Keys.Cast<string> ().ToList (); }
}
void ICollection<KeyValuePair<string, string>>.Add (KeyValuePair<string, string> item)
{
SetValue (item.Key, item.Value);
}
public void Clear ()
{
values.Clear ();
}
internal void ClearExcept (HashSet<string> keys)
{
foreach (var k in values.Keys.Cast<string>().Except (keys).ToArray ())
values.Remove (k);
}
bool ICollection<KeyValuePair<string, string>>.Contains (KeyValuePair<string, string> item)
{
var val = GetValue (item.Key);
return val == item.Value;
}
public void CopyTo (KeyValuePair<string, string>[] array, int arrayIndex)
{
foreach (DictionaryEntry de in values)
array [arrayIndex++] = new KeyValuePair<string, string> ((string)de.Key, (string)de.Value);
}
bool ICollection<KeyValuePair<string, string>>.Remove (KeyValuePair<string, string> item)
{
if (((ICollection<KeyValuePair<string, string>>)this).Contains (item)) {
Remove (item.Key);
return true;
} else
return false;
}
public int Count {
get {
return values.Count;
}
}
internal void SetLines (IEnumerable<KeyValuePair<string,string>> lines)
{
values.Clear ();
foreach (var line in lines)
values [line.Key] = line.Value;
}
bool ICollection<KeyValuePair<string, string>>.IsReadOnly {
get {
return false;
}
}
public IEnumerator<KeyValuePair<string, string>> GetEnumerator ()
{
foreach (DictionaryEntry de in values)
yield return new KeyValuePair<string,string> ((string)de.Key, (string)de.Value);
}
IEnumerator IEnumerable.GetEnumerator ()
{
foreach (DictionaryEntry de in values)
yield return new KeyValuePair<string,string> ((string)de.Key, (string)de.Value);
}
}
public class SlnProjectCollection: Collection<SlnProject>
{
SlnFile parentFile;
internal SlnFile ParentFile {
get {
return parentFile;
}
set {
parentFile = value;
foreach (var it in this)
it.ParentFile = parentFile;
}
}
public SlnProject GetProject (string id)
{
return this.FirstOrDefault (s => s.Id == id);
}
public SlnProject GetOrCreateProject (string id)
{
var p = this.FirstOrDefault (s => s.Id.Equals (id, StringComparison.OrdinalIgnoreCase));
if (p == null) {
p = new SlnProject { Id = id };
Add (p);
}
return p;
}
protected override void InsertItem (int index, SlnProject item)
{
base.InsertItem (index, item);
item.ParentFile = ParentFile;
}
protected override void SetItem (int index, SlnProject item)
{
base.SetItem (index, item);
item.ParentFile = ParentFile;
}
protected override void RemoveItem (int index)
{
var it = this [index];
it.ParentFile = null;
base.RemoveItem (index);
}
protected override void ClearItems ()
{
foreach (var it in this)
it.ParentFile = null;
base.ClearItems ();
}
}
public class SlnSectionCollection: Collection<SlnSection>
{
SlnFile parentFile;
internal SlnFile ParentFile {
get {
return parentFile;
}
set {
parentFile = value;
foreach (var it in this)
it.ParentFile = parentFile;
}
}
public SlnSection GetSection (string id)
{
return this.FirstOrDefault (s => s.Id == id);
}
public SlnSection GetSection (string id, SlnSectionType sectionType)
{
return this.FirstOrDefault (s => s.Id == id && s.SectionType == sectionType);
}
public SlnSection GetOrCreateSection (string id, SlnSectionType sectionType)
{
if (id == null)
throw new ArgumentNullException ("id");
var sec = this.FirstOrDefault (s => s.Id == id);
if (sec == null) {
sec = new SlnSection { Id = id };
sec.SectionType = sectionType;
Add (sec);
}
return sec;
}
public void RemoveSection (string id)
{
if (id == null)
throw new ArgumentNullException ("id");
var s = GetSection (id);
if (s != null)
Remove (s);
}
protected override void InsertItem (int index, SlnSection item)
{
base.InsertItem (index, item);
item.ParentFile = ParentFile;
}
protected override void SetItem (int index, SlnSection item)
{
base.SetItem (index, item);
item.ParentFile = ParentFile;
}
protected override void RemoveItem (int index)
{
var it = this [index];
it.ParentFile = null;
base.RemoveItem (index);
}
protected override void ClearItems ()
{
foreach (var it in this)
it.ParentFile = null;
base.ClearItems ();
}
}
public class SlnPropertySetCollection: Collection<SlnPropertySet>
{
SlnSection parentSection;
internal SlnPropertySetCollection (SlnSection parentSection)
{
this.parentSection = parentSection;
}
public SlnPropertySet GetPropertySet (string id, bool ignoreCase = false)
{
var sc = ignoreCase ? StringComparison.OrdinalIgnoreCase : StringComparison.Ordinal;
return this.FirstOrDefault (s => s.Id.Equals (id, sc));
}
public SlnPropertySet GetOrCreatePropertySet (string id, bool ignoreCase = false)
{
var ps = GetPropertySet (id, ignoreCase);
if (ps == null) {
ps = new SlnPropertySet (id);
Add (ps);