mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-24 14:56:15 +02:00
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
|
#pragma once
|
||
|
/**
|
||
|
* @file
|
||
|
* @brief Options for printing Nix values.
|
||
|
*/
|
||
|
|
||
|
#include <limits>
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
/**
|
||
|
* Options for printing Nix values.
|
||
|
*/
|
||
|
struct PrintOptions
|
||
|
{
|
||
|
/**
|
||
|
* If true, output ANSI color sequences.
|
||
|
*/
|
||
|
bool ansiColors = false;
|
||
|
/**
|
||
|
* If true, force values.
|
||
|
*/
|
||
|
bool force = false;
|
||
|
/**
|
||
|
* If true and `force` is set, print derivations as
|
||
|
* `«derivation /nix/store/...»` instead of as attribute sets.
|
||
|
*/
|
||
|
bool derivationPaths = false;
|
||
|
/**
|
||
|
* If true, track which values have been printed and skip them on
|
||
|
* subsequent encounters. Useful for self-referential values.
|
||
|
*/
|
||
|
bool trackRepeated = true;
|
||
|
/**
|
||
|
* Maximum depth to evaluate to.
|
||
|
*/
|
||
|
size_t maxDepth = std::numeric_limits<size_t>::max();
|
||
|
/**
|
||
|
* Maximum number of attributes in an attribute set to print.
|
||
|
*/
|
||
|
size_t maxAttrs = std::numeric_limits<size_t>::max();
|
||
|
/**
|
||
|
* Maximum number of list items to print.
|
||
|
*/
|
||
|
size_t maxListItems = std::numeric_limits<size_t>::max();
|
||
|
/**
|
||
|
* Maximum string length to print.
|
||
|
*/
|
||
|
size_t maxStringLength = std::numeric_limits<size_t>::max();
|
||
|
};
|
||
|
|
||
|
}
|