]> sigrok.org Git - pulseview.git/blame - pv/util.hpp
Random simplifications, cosmetics/whitespace/consistency fixes.
[pulseview.git] / pv / util.hpp
CommitLineData
f0c9f81c
JS
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
f0c9f81c
JS
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_UTIL_HPP
21#define PULSEVIEW_UTIL_HPP
f0c9f81c 22
d9e71737 23#include <cmath>
f0c9f81c 24
2b68d17c 25#ifndef Q_MOC_RUN
60d9b99a 26#include <boost/multiprecision/cpp_dec_float.hpp>
2b68d17c 27#endif
60d9b99a 28
806d3e1e 29#include <QMetaType>
f0c9f81c
JS
30#include <QString>
31
32namespace pv {
33namespace util {
34
d001f416 35enum class TimeUnit {
96b6316a
SA
36 Time = 1,
37 Samples = 2
38};
39
d001f416
JS
40enum class SIPrefix {
41 unspecified = -1,
42 yocto, zepto,
43 atto, femto, pico,
44 nano, micro, milli,
45 none,
46 kilo, mega, giga,
47 tera, peta, exa,
48 zetta, yotta
49};
50
51/// Returns the exponent that corresponds to a given prefix.
52int exponent(SIPrefix prefix);
53
60d9b99a
JS
54/// Timestamp type providing yoctosecond resolution.
55typedef boost::multiprecision::number<
56 boost::multiprecision::cpp_dec_float<24>,
57 boost::multiprecision::et_off> Timestamp;
58
f0c9f81c 59/**
3ccf0f7f
JS
60 * Formats a given timestamp with the specified SI prefix.
61 *
62 * If 'prefix' is left 'unspecified', the function chooses a prefix so that
63 * the value in front of the decimal point is between 1 and 999.
64 *
65 * The default value "s" for the unit argument makes the most sense when
66 * formatting time values, but a different value can be given if the function
67 * is reused to format a value of another quantity.
68 *
69 * @param t The value to format.
70 * @param prefix The SI prefix to use.
4bc10a91 71 * @param precision The number of digits after the decimal separator.
3ccf0f7f 72 * @param unit The unit of quantity.
4bc10a91
JH
73 * @param sign Whether or not to add a sign also for positive numbers.
74 *
39ccf9c3 75 * @return The formatted value.
4bc10a91 76 */
c063290a
UH
77QString format_time_si(const Timestamp& v,
78 SIPrefix prefix = SIPrefix::unspecified, unsigned precision = 0,
79 QString unit = "s", bool sign = true);
4bc10a91
JH
80
81/**
39ccf9c3 82 * Wrapper around 'format_time_si()' that interprets the given 'precision'
3ccf0f7f 83 * value as the number of decimal places if the timestamp would be formatted
39ccf9c3 84 * without a SI prefix (using 'SIPrefix::none') and adjusts the precision to
3ccf0f7f
JS
85 * match the given 'prefix'
86 *
87 * @param t The value to format.
88 * @param prefix The SI prefix to use.
89 * @param precision The number of digits after the decimal separator if the
90 * 'prefix' would be 'SIPrefix::none', see above for more information.
4bc10a91 91 * @param unit The unit of quantity.
3ccf0f7f 92 * @param sign Whether or not to add a sign also for positive numbers.
f0c9f81c 93 *
39ccf9c3 94 * @return The formatted value.
f0c9f81c 95 */
c063290a
UH
96QString format_time_si_adjusted(const Timestamp& t, SIPrefix prefix,
97 unsigned precision = 0, QString unit = "s", bool sign = true);
f0c9f81c 98
62974f45 99/**
3ccf0f7f
JS
100 * Formats the given timestamp using "[+-]DD:HH:MM:SS.mmm uuu nnn ppp..." format.
101 *
102 * "DD" and "HH" are left out if they would be "00" (but if "DD" is generated,
103 * "HH" is also always generated. The "MM:SS" part is always produced, the
104 * number of subsecond digits can be influenced using the 'precision' parameter.
105 *
106 * @param t The value to format.
107 * @param precision The number of digits after the decimal separator.
108 * @param sign Whether or not to add a sign also for positive numbers.
62974f45 109 *
39ccf9c3 110 * @return The formatted value.
62974f45 111 */
c063290a 112QString format_time_minutes(const Timestamp& t, signed precision = 0,
3ccf0f7f 113 bool sign = true);
62974f45 114
f0c9f81c
JS
115} // namespace util
116} // namespace pv
117
806d3e1e
JS
118Q_DECLARE_METATYPE(pv::util::Timestamp)
119
7a01bd36 120#endif // PULSEVIEW_UTIL_HPP