Skip to content

Latest commit

 

History

History
189 lines (151 loc) · 10.5 KB

Utilities.md

File metadata and controls

189 lines (151 loc) · 10.5 KB

Utility types

Ookii.CommandLine comes with a few utilities that it uses internally, but which may be of use to anyone writing console applications. These are the LineWrappingTextWriter class, virtual terminal support, and the TypeConverterBase<T> class.

LineWrappingTextWriter

The LineWrappingTextWriter class is a TextWriter implementation that allows you to write text to another TextWriter, white-space wrapping the text at the specified line length, and supporting hanging indents.

Ookii.CommandLine uses this class to wrap and indent error messages and usage help when writing to the console.

The LineWrappingTextWriter can be created to wrap any TextWriter and with any line length, using its constructor. If you use a line length of less than 1 or greater than ushort.MaxValue, this is treated as an infinite length, and lines will not be wrapped. The LineWrappingTextWriter can still be used to create indented text if you use an unrestricted line length.

Most of the time, you will probably want to use the LineWrappingTextWriter.ForConsoleOut() or LineWrappingTextWriter.ForConsoleError() methods to create a writer for the standard output or error streams, automatically wrapping at the console width.

Both methods actually use Console.WindowWidth - 1 for their maximum line length, because using Console.WindowWidth exactly can lead to extra blank lines if a line is exactly the width of the console.

Lines will be wrapped at white-space characters only. If a line does not have a suitable place to wrap, it will be wrapped at the maximum line length. You can temporarily disable line wrapping by setting the LineWrappingTextWriter.Wrapping property to WrappingMode.Disabled, or disable breaking lines without a suitable place to wrap by setting it to WrappingMode.EnabledNoForce.

If you write virtual terminal sequences to a LineWrappingTextWriter, by default these will not be included when calculating the length of the current line, so inserting VT sequences, e.g. for colors, will not affect how the text is wrapped.

Indentation

The LineWrappingTextWriter class uses hanging indents, also called negative indents, where all lines except the first one are indented. The indentation level can be set using the LineWrappingTextWriter.Indent property, which indicates the number of spaces to indent by.

When this property is set, it will apply to the next line that needs to be indented. The first line of text, and any line after a blank line, is not indented. Indentation is applied both to lines that were wrapped, and lines created by explicit new lines in the text.

You can change the Indent property at any time to change the size of the indentation to use.

Additionally, you can use the LineWrappingTextWriter.ResetIndent() method to indicate you do not want to indent the current line, even if it didn't follow a blank line. Note that the ResetIndent() method will insert a line break if the current line is not empty.

For example:

using var writer = LineWrappingTextWriter.ForConsoleOut();
writer.Indent = 4;
writer.WriteLine("The first line is not indented. This line is pretty long, so it'll probably be wrapped, and the wrapped portion will be indented.");
writer.WriteLine("A line after an explicit line break is also indented.");
writer.WriteLine();
writer.WriteLine("After a blank line, no indentation is used.");
writer.WriteLine("The next line is indented again.");
writer.ResetIndent();
writer.WriteLine("This line is not.");
writer.WriteLine("And this one is.");

This produces the following output:

The first line is not indented. This line is pretty long, so it'll probably be wrapped, and the wrapped portion
    will be indented.
    A line after an explicit line break is also indented.

After a blank line, no indentation is used.
    The next line is indented again.
This line is not.
    And this one is.

Virtual terminal support

Virtual terminal (VT) sequences are a method to manipulate the console utilized, supported by many console applications on many operating systems. It is supported by the console host on recent versions of Windows, by Windows Terminal, and many console applications on other platforms.

A VT sequence consists of an escape character, followed by a string that specifies what action to take. They can be used to set colors and other formatting options, but also to do things like move the cursor.

Ookii.CommandLine uses VT sequences to add color to the usage help and error messages. To let you customize the colors used by the UsageWriter, and to use color in your own console applications, a few types are provided in the Ookii.CommandLine.Terminal namespace.

The VirtualTerminal class allows you to determine whether virtual terminal sequences are supported, and to enable them. The UsageWriter class uses this internally to enable color output when possible.

The TextFormat class provides a number of constants for the predefined background and foreground colors and formats supported by the console, as well as a method to create a VT sequence for any 24-bit color. These can be used to change the default usage help colors, or to apply color to your own text.

For example, you can use the following to write in color when supported:

using var support = VirtualTerminal.EnableColor(StandardStream.Output);
if (support.IsSupported)
{
    Console.Write(TextFormat.ForegroundGreen + TextFormat.Underline);
}

Console.Write("This text is green and underlined.");
if (support.IsSupported)
{
    Console.Write(TextFormat.Default);
}

Console.WriteLine();

On Windows, VT support must be enabled for a process. In addition to checking for support, the EnableVirtualTerminalSequences() and EnableColor() methods also enable it if necessary, and they return a disposable type that will revert the console mode when disposed or garbage collected. On other platforms, it only checks for support and disposing the returned instance does nothing.

TypeConverterBase<T>

If a type does not have a suitable default TypeConverter, Parse() method or constructor, or if you want to use a custom conversion that's different than the default, Ookii.CommandLine requires you to create a TypeConverter that can convert from a string. To make this process easier, the TypeConverterBase<T> class is provided.

This class implements the CanConvertFrom() and ConvertFrom() method for you to check if the source type is a string, and provides strongly typed conversion methods that you can implement.

For example, the following is a custom type converter for booleans that accepts "yes", "no", "1" and "0" in addition to the regular "true" and "false" values.

class YesNoConverter : TypeConverterBase<bool>
{
    protected override bool Convert(ITypeDescriptorContext? context, CultureInfo? culture, string value)
    {
        return value.ToLower(culture) switch
        {
            "yes" or "1" => true,
            "no" or "0" => false,
            _ => bool.Parse(value),
        };
    }
}

You can then use this converter as the custom converter for a boolean (switch) argument using the TypeConverterAttribute.

If you want to customize the conversion to string, you can do this too (it uses ToString() by default), but Ookii.CommandLine never uses this, so it's only relevant if you want to use the converter in other contexts.