This file is indexed.

/usr/include/facter/util/string.hpp is in facter-dev 3.10.0-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
/**
 * @file
 * Declares the utility functions for parsing and manipulating strings.
 */
#pragma once

#include "../export.h"
#include <boost/optional.hpp>
#include <string>
#include <vector>
#include <functional>
#include <initializer_list>
#include <cctype>
#include <cstdint>

namespace facter { namespace util {

    /**
     * Converts the given bytes to a hexadecimal string.
     * @param bytes The pointer to the bytes to convert.
     * @param length The number of bytes to convert.
     * @param uppercase True if the hexadecimal string should be uppercase or false if it should be lowercase.
     * @return Returns the hexadecimal string.
     */
    std::string to_hex(uint8_t const* bytes, size_t length, bool uppercase = false);

    /**
     * Reads each line from the given string.
     * @param s The string to read.
     * @param callback The callback function that is passed each line in the string.
     */
    void each_line(std::string const& s, std::function<bool(std::string&)> callback);

   /**
     * Converts a size, in bytes, to a corresponding string using SI-prefixed units.
     * @param size The size in bytes.
     * @return Returns the size in largest SI unit greater than 1 (e.g. 4.05 GiB, 5.20 MiB, etc).
     */
    std::string si_string(uint64_t size);

    /**
     * Converts an amount used to a percentage.
     * @param used The amount used out of the total.
     * @param total The total amount.
     * @return Returns the percentage (e.g. "41.53%"), to two decimal places, as a string.
     */
    std::string percentage(uint64_t used, uint64_t total);

    /**
     * Converts the given frequency, in Hz, to a string.
     * @param freq The frequency to convert, in Hz.
     * @return Returns the frequency as a string (e.g. "1.24 GHz").
     */
    std::string frequency(int64_t freq);

    /**
     * Checks to see if the given string definitely needs to be quoted for YAML.
     * This exists as a workaround to yaml-cpp's poor handling of maintaining numerical string types in the output.
     * @param str The string to check.
     * @return Returns true if the string needs to be quoted or false if it may not need to be.
     */
    bool needs_quotation(std::string const& str);

    /**
     * Converts the given string to an integer, if it is a valid integer.
     * @param str The string to convert.
     * @return Returns the converted string if the string is a valid integer,
     * otherwise it returns "nothing"
     */
    boost::optional<int> maybe_stoi(std::string const& str);

}}  // namespace facter::util