-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathHelpText.cs
765 lines (659 loc) · 30.8 KB
/
HelpText.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
// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See doc/License.md in the project root for license information.
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using CommandLine.Infrastructure;
using CommandLine.Core;
namespace CommandLine.Text
{
/// <summary>
/// Provides means to format an help screen.
/// You can assign it in place of a <see cref="System.String"/> instance.
/// </summary>
public class HelpText
{
private const int BuilderCapacity = 128;
private const int DefaultMaximumLength = 80; // default console width
private readonly StringBuilder preOptionsHelp;
private readonly StringBuilder postOptionsHelp;
private readonly SentenceBuilder sentenceBuilder;
private int? maximumDisplayWidth;
private string heading;
private string copyright;
private bool additionalNewLineAfterOption;
private StringBuilder optionsHelp;
private bool addDashesToOption;
private bool addEnumValuesToHelpText;
/// <summary>
/// Initializes a new instance of the <see cref="CommandLine.Text.HelpText"/> class.
/// </summary>
public HelpText()
: this(SentenceBuilder.CreateDefault(), string.Empty, string.Empty)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="CommandLine.Text.HelpText"/> class
/// specifying the sentence builder.
/// </summary>
/// <param name="sentenceBuilder">
/// A <see cref="SentenceBuilder"/> instance.
/// </param>
public HelpText(SentenceBuilder sentenceBuilder)
: this(sentenceBuilder, string.Empty, string.Empty)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="CommandLine.Text.HelpText"/> class
/// specifying heading string.
/// </summary>
/// <param name="heading">An heading string or an instance of <see cref="CommandLine.Text.HeadingInfo"/>.</param>
/// <exception cref="System.ArgumentException">Thrown when parameter <paramref name="heading"/> is null or empty string.</exception>
public HelpText(string heading)
: this(SentenceBuilder.CreateDefault(), heading, string.Empty)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="CommandLine.Text.HelpText"/> class
/// specifying the sentence builder and heading string.
/// </summary>
/// <param name="sentenceBuilder">A <see cref="SentenceBuilder"/> instance.</param>
/// <param name="heading">A string with heading or an instance of <see cref="CommandLine.Text.HeadingInfo"/>.</param>
public HelpText(SentenceBuilder sentenceBuilder, string heading)
: this(sentenceBuilder, heading, string.Empty)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="CommandLine.Text.HelpText"/> class
/// specifying heading and copyright strings.
/// </summary>
/// <param name="heading">A string with heading or an instance of <see cref="CommandLine.Text.HeadingInfo"/>.</param>
/// <param name="copyright">A string with copyright or an instance of <see cref="CommandLine.Text.CopyrightInfo"/>.</param>
/// <exception cref="System.ArgumentNullException">Thrown when one or more parameters are null or empty strings.</exception>
public HelpText(string heading, string copyright)
: this(SentenceBuilder.CreateDefault(), heading, copyright)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="CommandLine.Text.HelpText"/> class
/// specifying heading and copyright strings.
/// </summary>
/// <param name="sentenceBuilder">A <see cref="SentenceBuilder"/> instance.</param>
/// <param name="heading">A string with heading or an instance of <see cref="CommandLine.Text.HeadingInfo"/>.</param>
/// <param name="copyright">A string with copyright or an instance of <see cref="CommandLine.Text.CopyrightInfo"/>.</param>
/// <exception cref="System.ArgumentNullException">Thrown when one or more parameters are null or empty strings.</exception>
public HelpText(SentenceBuilder sentenceBuilder, string heading, string copyright)
{
if (sentenceBuilder == null) throw new ArgumentNullException("sentenceBuilder");
if (heading == null) throw new ArgumentNullException("heading");
if (copyright == null) throw new ArgumentNullException("copyright");
this.preOptionsHelp = new StringBuilder(BuilderCapacity);
this.postOptionsHelp = new StringBuilder(BuilderCapacity);
this.sentenceBuilder = sentenceBuilder;
this.heading = heading;
this.copyright = copyright;
}
/// <summary>
/// Gets or sets the heading string.
/// You can directly assign a <see cref="CommandLine.Text.HeadingInfo"/> instance.
/// </summary>
public string Heading
{
get
{
return this.heading;
}
set
{
if (value == null) throw new ArgumentNullException("value");
this.heading = value;
}
}
/// <summary>
/// Gets or sets the copyright string.
/// You can directly assign a <see cref="CommandLine.Text.CopyrightInfo"/> instance.
/// </summary>
public string Copyright
{
get
{
return this.copyright;
}
set
{
if (value == null) throw new ArgumentNullException("value");
this.copyright = value;
}
}
/// <summary>
/// Gets or sets the maximum width of the display. This determines word wrap when displaying the text.
/// </summary>
/// <value>The maximum width of the display.</value>
public int MaximumDisplayWidth
{
get { return this.maximumDisplayWidth.HasValue ? this.maximumDisplayWidth.Value : DefaultMaximumLength; }
set { this.maximumDisplayWidth = value; }
}
/// <summary>
/// Gets or sets a value indicating whether the format of options should contain dashes.
/// It modifies behavior of <see cref="AddOptions{T}(T)"/> method.
/// </summary>
public bool AddDashesToOption
{
get { return this.addDashesToOption; }
set { this.addDashesToOption = value; }
}
/// <summary>
/// Gets or sets a value indicating whether to add an additional line after the description of the option.
/// </summary>
public bool AdditionalNewLineAfterOption
{
get { return this.additionalNewLineAfterOption; }
set { this.additionalNewLineAfterOption = value; }
}
/// <summary>
/// Gets or sets a value indicating whether to add the values of an enum after the description of the option.
/// </summary>
public bool AddEnumValuesToHelpText
{
get { return this.addEnumValuesToHelpText; }
set { this.addEnumValuesToHelpText = value; }
}
/// <summary>
/// Gets the <see cref="SentenceBuilder"/> instance specified in constructor.
/// </summary>
public SentenceBuilder SentenceBuilder
{
get { return this.sentenceBuilder; }
}
/// <summary>
/// Creates a new instance of the <see cref="CommandLine.Text.HelpText"/> class using common defaults.
/// </summary>
/// <returns>
/// An instance of <see cref="CommandLine.Text.HelpText"/> class.
/// </returns>
/// <param name='parserResult'>The <see cref="CommandLine.ParserResult{T}"/> containing the instance that collected command line arguments parsed with <see cref="CommandLine.Parser"/> class.</param>
/// <param name='onError'>A delegate used to customize the text block of reporting parsing errors text block.</param>
/// <param name="verbsIndex">If true the output style is consistent with verb commands (no dashes), otherwise it outputs options.</param>
/// <remarks>The parameter <paramref name="verbsIndex"/> is not ontly a metter of formatting, it controls whether to handle verbs or options.</remarks>
public static HelpText AutoBuild<T>(ParserResult<T> parserResult, Func<HelpText, HelpText> onError, bool verbsIndex = false)
{
var auto = new HelpText
{
Heading = HeadingInfo.Default,
Copyright = CopyrightInfo.Default,
AdditionalNewLineAfterOption = true,
AddDashesToOption = !verbsIndex
};
if (onError != null)
{
if (FilterMeaningfulErrors(parserResult.Errors).Any())
{
auto = onError(auto);
}
}
var license = ReflectionHelper.GetAttribute<AssemblyLicenseAttribute>();
if (license.IsJust())
{
license.FromJust().AddToHelpText(auto, true);
}
var usage = ReflectionHelper.GetAttribute<AssemblyUsageAttribute>();
if (usage.IsJust())
{
usage.FromJust().AddToHelpText(auto, true);
}
if (verbsIndex && parserResult.VerbTypes.IsJust())
{
auto.AddVerbs(parserResult.VerbTypes.FromJust().ToArray());
}
else
{
auto.AddOptions(parserResult.Value);
}
return auto;
}
/// <summary>
/// Creates a new instance of the <see cref="CommandLine.Text.HelpText"/> class,
/// automatically handling verbs or options scenario.
/// </summary>
/// <param name='parserResult'>The <see cref="CommandLine.ParserResult{T}"/> containing the instance that collected command line arguments parsed with <see cref="CommandLine.Parser"/> class.</param>
/// <returns>
/// An instance of <see cref="CommandLine.Text.HelpText"/> class.
/// </returns>
/// <remarks>This feature is meant to be invoked automatically by the parser, setting the HelpWriter property
/// of <see cref="CommandLine.ParserSettings"/>.</remarks>
public static HelpText AutoBuild<T>(ParserResult<T> parserResult)
{
switch (parserResult.Tag)
{
case ParserResultType.Options:
return HelpText.AutoBuild(parserResult, current => HelpText.DefaultParsingErrorsHandler(parserResult, current));
case ParserResultType.Verbs:
var helpVerbErr = parserResult.Errors.OfType<HelpVerbRequestedError>();
if (helpVerbErr.Any())
{
var err = helpVerbErr.Single();
if (err.Matched)
{
var pr = ParserResult.Create(ParserResultType.Options, Activator.CreateInstance(err.Type), Enumerable.Empty<Error>());
return HelpText.AutoBuild(pr, current => HelpText.DefaultParsingErrorsHandler(pr, current));
}
}
return HelpText.AutoBuild(parserResult, current => HelpText.DefaultParsingErrorsHandler(parserResult, current), true);
default:
throw new InvalidOperationException();
}
}
/// <summary>
/// Supplies a default parsing error handler implementation.
/// </summary>
/// <param name='parserResult'>The <see cref="CommandLine.ParserResult{T}"/> containing the instance that collected command line arguments parsed with <see cref="CommandLine.Parser"/> class.</param>
/// <param name="current">The <see cref="CommandLine.Text.HelpText"/> instance.</param>
public static HelpText DefaultParsingErrorsHandler<T>(ParserResult<T> parserResult, HelpText current)
{
if (parserResult == null) throw new ArgumentNullException("parserResult");
if (current == null) throw new ArgumentNullException("current");
if (FilterMeaningfulErrors(parserResult.Errors).Empty())
{
return current;
}
var errors = HelpText.RenderParsingErrorsText(parserResult, current.SentenceBuilder.FormatError, 2); // indent with two spaces
if (string.IsNullOrEmpty(errors))
{
return current;
}
current.AddPreOptionsLine(string.Concat(Environment.NewLine, current.SentenceBuilder.ErrorsHeadingText()));
var lines = errors.Split(new[] { Environment.NewLine }, StringSplitOptions.None);
foreach (var line in lines)
{
current.AddPreOptionsLine(line);
}
return current;
}
/// <summary>
/// Converts the help instance to a <see cref="System.String"/>.
/// </summary>
/// <param name="info">This <see cref="CommandLine.Text.HelpText"/> instance.</param>
/// <returns>The <see cref="System.String"/> that contains the help screen.</returns>
public static implicit operator string(HelpText info)
{
return info.ToString();
}
/// <summary>
/// Adds a text line after copyright and before options usage strings.
/// </summary>
/// <param name="value">A <see cref="System.String"/> instance.</param>
/// <exception cref="System.ArgumentNullException">Thrown when parameter <paramref name="value"/> is null or empty string.</exception>
public HelpText AddPreOptionsLine(string value)
{
return this.AddPreOptionsLine(value, MaximumDisplayWidth);
}
/// <summary>
/// Adds a text line at the bottom, after options usage string.
/// </summary>
/// <param name="value">A <see cref="System.String"/> instance.</param>
/// <exception cref="System.ArgumentNullException">Thrown when parameter <paramref name="value"/> is null or empty string.</exception>
public HelpText AddPostOptionsLine(string value)
{
return this.AddLine(this.postOptionsHelp, value);
}
/// <summary>
/// Adds a text block with options usage string.
/// </summary>
/// <param name="options">The instance that collected command line arguments parsed with <see cref="Parser"/> class.</param>
/// <exception cref="System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
public HelpText AddOptions<T>(T options)
{
if (object.Equals(options, default(T))) throw new ArgumentNullException("options");
return this.AddOptionsImpl(this.GetOptionListFromType(options), SentenceBuilder.RequiredWord(), MaximumDisplayWidth);
}
/// <summary>
/// Adds a text block with verbs usage string.
/// </summary>
/// <param name="types">The array of <see cref="System.Type"/> with verb commands.</param>
/// <exception cref="System.ArgumentNullException">Thrown when parameter <paramref name="types"/> is null.</exception>
/// <exception cref="System.ArgumentOutOfRangeException">Thrown if <paramref name="types"/> array is empty.</exception>
public HelpText AddVerbs(params Type[] types)
{
if (types == null) throw new ArgumentNullException("types");
if (types.Length == 0) throw new ArgumentOutOfRangeException("types");
return this.AddOptionsImpl(this.AdaptVerbListToOptionList(types), SentenceBuilder.RequiredWord(), MaximumDisplayWidth);
}
/// <summary>
/// Adds a text block with options usage string.
/// </summary>
/// <param name="maximumLength">The maximum length of the help screen.</param>
/// <param name="options">The instance that collected command line arguments parsed with the <see cref="Parser"/> class.</param>
/// <exception cref="System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
public HelpText AddOptions<T>(int maximumLength, T options)
{
if (object.Equals(options, default(T))) throw new ArgumentNullException("options");
return this.AddOptionsImpl(this.GetOptionListFromType(options), SentenceBuilder.RequiredWord(), maximumLength);
}
/// <summary>
/// Adds a text block with verbs usage string.
/// </summary>
/// <param name="maximumLength">The maximum length of the help screen.</param>
/// <param name="types">The array of <see cref="System.Type"/> with verb commands.</param>
/// <exception cref="System.ArgumentNullException">Thrown when parameter <paramref name="types"/> is null.</exception>
/// <exception cref="System.ArgumentOutOfRangeException">Thrown if <paramref name="types"/> array is empty.</exception>
public HelpText AddVerbs(int maximumLength, params Type[] types)
{
if (types == null) throw new ArgumentNullException("types");
if (types.Length == 0) throw new ArgumentOutOfRangeException("types");
return this.AddOptionsImpl(this.AdaptVerbListToOptionList(types), SentenceBuilder.RequiredWord(), maximumLength);
}
/// <summary>
/// Builds a string that contains a parsing error message.
/// </summary>
/// <param name='parserResult'>The <see cref="CommandLine.ParserResult{T}"/> containing the instance that collected command line arguments parsed with <see cref="CommandLine.Parser"/> class.</param>
/// <param name="formatError">The error formatting delegate.</param>
/// <param name="indent">Number of spaces used to indent text.</param>
/// <returns>The <see cref="System.String"/> that contains the parsing error message.</returns>
public static string RenderParsingErrorsText<T>(ParserResult<T> parserResult, Func<Error, string> formatError, int indent)
{
if (parserResult == null) throw new ArgumentNullException("parserResult");
var meaningfulErrors = FilterMeaningfulErrors(parserResult.Errors);
if (meaningfulErrors.Empty())
{
return string.Empty;
}
var text = new StringBuilder();
foreach (var error in meaningfulErrors)
{
var line = new StringBuilder();
line.Append(indent.Spaces());
line.Append(formatError(error));
text.AppendLine(line.ToString());
}
return text.ToString();
}
/// <summary>
/// Returns the help screen as a <see cref="System.String"/>.
/// </summary>
/// <returns>The <see cref="System.String"/> that contains the help screen.</returns>
public override string ToString()
{
const int ExtraLength = 10;
var builder = new StringBuilder(GetLength(this.heading) + GetLength(this.copyright) +
GetLength(this.preOptionsHelp) + GetLength(this.optionsHelp) + ExtraLength);
builder.Append(this.heading);
if (!string.IsNullOrEmpty(this.copyright))
{
builder.Append(Environment.NewLine);
builder.Append(this.copyright);
}
if (this.preOptionsHelp.Length > 0)
{
builder.Append(Environment.NewLine);
builder.Append(this.preOptionsHelp);
}
if (this.optionsHelp != null && this.optionsHelp.Length > 0)
{
builder.Append(Environment.NewLine);
builder.Append(Environment.NewLine);
builder.Append(this.optionsHelp);
}
if (this.postOptionsHelp.Length > 0)
{
builder.Append(Environment.NewLine);
builder.Append(this.postOptionsHelp);
}
return builder.ToString();
}
private static IEnumerable<Error> FilterMeaningfulErrors(IEnumerable<Error> errors)
{
return errors.Where(
e => e.Tag != ErrorType.HelpRequestedError && e.Tag != ErrorType.HelpVerbRequestedError);
}
private static int GetLength(string value)
{
return value == null ? 0 : value.Length;
}
private static int GetLength(StringBuilder value)
{
return value == null ? 0 : value.Length;
}
private static void AddLine(StringBuilder builder, string value, int maximumLength)
{
if (builder.Length > 0)
{
builder.Append(Environment.NewLine);
}
do
{
var wordBuffer = 0;
var words = value.Split(new[] { ' ' });
for (var i = 0; i < words.Length; i++)
{
if (words[i].Length < (maximumLength - wordBuffer))
{
builder.Append(words[i]);
wordBuffer += words[i].Length;
if ((maximumLength - wordBuffer) > 1 && i != words.Length - 1)
{
builder.Append(" ");
wordBuffer++;
}
}
else if (words[i].Length >= maximumLength && wordBuffer == 0)
{
builder.Append(words[i].Substring(0, maximumLength));
wordBuffer = maximumLength;
break;
}
else
{
break;
}
}
value = value.Substring(Math.Min(wordBuffer, value.Length));
if (value.Length > 0)
{
builder.Append(Environment.NewLine);
}
}
while (value.Length > maximumLength);
builder.Append(value);
}
private IEnumerable<OptionSpecification> GetOptionListFromType<T>(T options)
{
return options.GetType().GetSpecifications(pi => Specification.FromProperty(pi))
.OfType<OptionSpecification>()
.Concat(new[] { this.CreateHelpEntry() });
}
private IEnumerable<OptionSpecification> AdaptVerbListToOptionList(IEnumerable<Type> types)
{
return (from verbTuple in Verb.SelectFromTypes(types)
select new OptionSpecification(
string.Empty,
verbTuple.Item1.Name,
false,
string.Empty,
-1,
-1,
'\0',
Maybe.Nothing<object>(),
typeof(bool),
verbTuple.Item1.HelpText,
string.Empty,
new List<string>()))
.Concat(new[] { this.CreateHelpEntry() });
}
private HelpText AddOptionsImpl(IEnumerable<OptionSpecification> optionList, string requiredWord, int maximumLength)
{
var maxLength = GetMaxLength(optionList);
this.optionsHelp = new StringBuilder(BuilderCapacity);
var remainingSpace = maximumLength - (maxLength + 6);
foreach (var option in optionList)
{
AddOption(requiredWord, maxLength, option, remainingSpace);
}
return this;
}
private OptionSpecification CreateHelpEntry()
{
return new OptionSpecification(string.Empty, "help", false, string.Empty, -1, -1, '\0', Maybe.Nothing<object>(), typeof(bool),
this.sentenceBuilder.HelpCommandText(this.AddDashesToOption), string.Empty, new List<string>());
}
private HelpText AddPreOptionsLine(string value, int maximumLength)
{
AddLine(this.preOptionsHelp, value, maximumLength);
return this;
}
private HelpText AddOption(string requiredWord, int maxLength, OptionSpecification option, int widthOfHelpText)
{
this.optionsHelp.Append(" ");
var optionName = new StringBuilder(maxLength);
if (option.ShortName.Length > 0)
{
if (this.addDashesToOption)
{
optionName.Append('-');
}
optionName.AppendFormat("{0}", option.ShortName);
if (option.MetaValue.Length > 0)
{
optionName.AppendFormat(" {0}", option.MetaValue);
}
if (option.LongName.Length > 0)
{
optionName.Append(", ");
}
}
if (option.LongName.Length > 0)
{
if (this.addDashesToOption)
{
optionName.Append("--");
}
optionName.AppendFormat("{0}", option.LongName);
if (option.MetaValue.Length > 0)
{
optionName.AppendFormat("={0}", option.MetaValue);
}
}
this.optionsHelp.Append(optionName.Length < maxLength ?
optionName.ToString().PadRight(maxLength) :
optionName.ToString());
this.optionsHelp.Append(" ");
var optionHelpText = option.HelpText;
if (this.addEnumValuesToHelpText && option.EnumValues.Any())
{
optionHelpText += " Valid values: " + string.Join(", ", option.EnumValues);
}
if (option.DefaultValue.IsJust())
{
optionHelpText = "(Default: {0}) ".FormatLocal(option.DefaultValue.FromJust()) + optionHelpText;
}
if (option.Required)
{
optionHelpText = "{0} ".FormatInvariant(requiredWord) + optionHelpText;
}
if (!string.IsNullOrEmpty(optionHelpText))
{
// This uses explicit \r\n and \n values instead of Environment.NewLine (that is either one or the other) to make HelpText creation easier for the developer
var paragraphs = optionHelpText.Split(new[] { "\r\n", "\n" }, StringSplitOptions.None);
for (var p = 0; p < paragraphs.Length; p++)
{
var paragraph = paragraphs[p].Trim();
if (paragraph.Length > 0)
{
do
{
var wordBuffer = 0;
var words = paragraph.Split(new[] { ' ' });
for (var i = 0; i < words.Length; i++)
{
if (words[i].Length < (widthOfHelpText - wordBuffer))
{
this.optionsHelp.Append(words[i]);
wordBuffer += words[i].Length;
if ((widthOfHelpText - wordBuffer) > 1 && i != words.Length - 1)
{
this.optionsHelp.Append(" ");
wordBuffer++;
}
}
else if (words[i].Length >= widthOfHelpText && wordBuffer == 0)
{
this.optionsHelp.Append(words[i].Substring(0, widthOfHelpText));
wordBuffer = widthOfHelpText;
break;
}
else
{
break;
}
}
paragraph = paragraph.Substring(
Math.Min(wordBuffer, paragraph.Length)).Trim();
if (paragraph.Length > 0)
{
this.optionsHelp.Append(Environment.NewLine);
this.optionsHelp.Append(new string(' ', maxLength + 6));
}
}
while (paragraph.Length > widthOfHelpText);
this.optionsHelp.Append(paragraph);
}
if (p < paragraphs.Length - 1)
{
this.optionsHelp.Append(Environment.NewLine);
this.optionsHelp.Append(new string(' ', maxLength + 6));
}
}
}
this.optionsHelp.Append(Environment.NewLine);
if (this.additionalNewLineAfterOption)
{
this.optionsHelp.Append(Environment.NewLine);
}
return this;
}
private HelpText AddLine(StringBuilder builder, string value)
{
AddLine(builder, value, MaximumDisplayWidth);
return this;
}
private int GetMaxLength(IEnumerable<OptionSpecification> optionList)
{
var length = 0;
foreach (var option in optionList)
{
var optionLength = 0;
var hasShort = option.ShortName.Length > 0;
var hasLong = option.LongName.Length > 0;
var metaLength = 0;
if (option.MetaValue.Length > 0)
{
metaLength = option.MetaValue.Length + 1;
}
if (hasShort)
{
++optionLength;
if (this.AddDashesToOption)
{
++optionLength;
}
optionLength += metaLength;
}
if (hasLong)
{
optionLength += option.LongName.Length;
if (this.AddDashesToOption)
{
optionLength += 2;
}
optionLength += metaLength;
}
if (hasShort && hasLong)
{
optionLength += 2; // ", "
}
length = Math.Max(length, optionLength);
}
return length;
}
}
}