A library to allow using printf
style strings in more places.
The code is essentially an extracted version of printf.fs
where the environement can not only decide
what to do with the final blocks that compose the string (printf put them on the console, sprintf in a buffer, ...)
but also what to do with the parameters passed for each format specifier.
module MyModule =
open System.Text
open BlackFox.MasterOfFoo
type private MySprintfEnv() =
inherit PrintfEnv<unit, string, string>()
let buf = StringBuilder()
override this.Finalize() = buf.ToString ()
override this.Write(s : PrintableElement) = ignore(buf.Append(s.FormatAsPrintF()))
override this.WriteT(s : string) = ignore(buf.Append(s))
let mysprintf (format: Format<'T, unit, string, string>) =
doPrintfFromEnv format (MySprintfEnv())
MyModule.mysprintf "Hello %s." "World"
PrintableElement
represent an element in a string, for example sprintf "Foo %s bar" "x"
produce 3
PrintableElement
, the first contains the string "Foo "
the second is a format specifier 's'
with an associated
string value "x"
and then there is the string the string " Bar"
.
Members :
ElementType
: Tell your if this is a string or a format specifier.Value
: give the value if it was a format specifier.ValueType
: give the type of value expected by the format specifier.StarWidth
: The width if specified via another parameter as in "%*i".StarPrecision
: The precision if specified via another parameter as in "%.*f".FormatAsPrintF()
: Get the string representation that printf would have normally generated.Specifier
: The format specification for format specifiers.
PrintfEnv
is the type to implement to create a printf variant it has 3 type parameters:
'State
: The state of the printer, passed as argument when using '%t'.'Residue
: The type that methods passed to '%t' must return.'Result
: The final result type for the printer.
Members:
Finalize
: Create the final result for this printerWrite
: Write an element from the format string to the printerWriteT
: Write the result of the method provided by %t to the printer.
doPrintfFromEnv
: Take a format and aPrintfEnv
to create a printf-like functiondoPrintf
: Same asdoPrintfFromEnv
but allow to know the number of elements when thePrintfEnv
is created.
- Generating complex object that aren't only a string like an
SqlCommand
or structured logging. - Escaping parts in strings, like an
xmlprintf
that would escape<
to<
in parameters but not in the format string.
The main limitation is that the F# compiler allow a strict set of things an you can't go differently.
The function signature that is the first argument to Format<_,_,_,_,>
is generated from rules in the compiler and no
library can change them.
The consequence is that we're limited to what is present in the F# compiler, can't add a %Z
or allow %0s
to work.
ksprintf
allow you to run code on the final generated result, essentially allowing you to run code during
PrintfEnv.Finalize
but you can't manipualte the format specifiers or their parameters.
When *
is specified for either the width or the precision an additional parameter is taken by the format to get the
value.
> sprintf "%*.*f";;
val it : (int -> int -> float -> string) = <fun:it@1>
The details of string interpolation internals are specified in F# RFC FS-1001 - String Interpolation.
They appear as follow in this library:
- Type-checked "printf-style" fills behave exactly as they do in
sprintf
and friends. - Unchecked ".NET-style" fills appear with a
Specifier.TypeChar
of'P'
and the .NET format string inSpecifier.InteropHoleDotNetFormat
.
- ColoredPrintf: A small library that I created to add colored parts to printf strings.
If you use it somewhere, ping me on the fediverse @[email protected] so I can add you.
module ColorPrintf =
open System
open System.Text
open BlackFox.MasterOfFoo
type private Colorize<'Result>(k) =
inherit PrintfEnv<unit, string, 'Result>()
override this.Finalize() : 'Result = k()
override this.Write(s : PrintableElement) =
match s.ElementType with
| PrintableElementType.FromFormatSpecifier ->
let color = Console.ForegroundColor
Console.ForegroundColor <- ConsoleColor.Blue
Console.Write(s.FormatAsPrintF())
Console.ForegroundColor <- color
| _ -> Console.Write(s.FormatAsPrintF())
override this.WriteT(s : string) =
let color = Console.ForegroundColor
Console.ForegroundColor <- ConsoleColor.Red
Console.Write(s)
Console.ForegroundColor <- color
let colorprintf (format: Format<'T, unit, string, unit>) =
doPrintfFromEnv format (Colorize id)
ColorPrintf.colorprintf "%s est %t" "La vie" (fun _ -> "belle !")