DecodeSignal: Support unitsize > 1 for logic output
[pulseview.git] / pv / util.cpp
blobdfb8c72b43504a95ad1f107c66a16e289858ba82
1 /*
2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "util.hpp"
22 #include <extdef.h>
24 #include <algorithm>
25 #include <cassert>
26 #include <sstream>
28 #include <QDebug>
29 #include <QTextStream>
31 using std::fixed;
32 using std::max;
33 using std::ostringstream;
34 using std::setfill;
35 using std::setprecision;
36 using std::showpos;
37 using std::string;
39 using namespace Qt;
41 namespace pv {
42 namespace util {
44 static QTextStream& operator<<(QTextStream& stream, SIPrefix prefix)
46 switch (prefix) {
47 case SIPrefix::yocto: return stream << 'y';
48 case SIPrefix::zepto: return stream << 'z';
49 case SIPrefix::atto: return stream << 'a';
50 case SIPrefix::femto: return stream << 'f';
51 case SIPrefix::pico: return stream << 'p';
52 case SIPrefix::nano: return stream << 'n';
53 case SIPrefix::micro: return stream << QChar(0x03BC);
54 case SIPrefix::milli: return stream << 'm';
55 case SIPrefix::kilo: return stream << 'k';
56 case SIPrefix::mega: return stream << 'M';
57 case SIPrefix::giga: return stream << 'G';
58 case SIPrefix::tera: return stream << 'T';
59 case SIPrefix::peta: return stream << 'P';
60 case SIPrefix::exa: return stream << 'E';
61 case SIPrefix::zetta: return stream << 'Z';
62 case SIPrefix::yotta: return stream << 'Y';
64 default: return stream;
68 int exponent(SIPrefix prefix)
70 return 3 * (static_cast<int>(prefix) - static_cast<int>(SIPrefix::none));
73 static SIPrefix successor(SIPrefix prefix)
75 assert(prefix != SIPrefix::yotta);
76 return static_cast<SIPrefix>(static_cast<int>(prefix) + 1);
79 // Insert the timestamp value into the stream in fixed-point notation
80 // (and honor the precision)
81 static QTextStream& operator<<(QTextStream& stream, const Timestamp& t)
83 // The multiprecision types already have a function and a stream insertion
84 // operator to convert them to a string, however these functions abuse a
85 // precision value of zero to print all available decimal places instead of
86 // none, and the boost authors refuse to fix this because they don't want
87 // to break buggy code that relies on this bug.
88 // (https://svn.boost.org/trac/boost/ticket/10103)
89 // Therefore we have to work around the case where precision is zero.
91 int precision = stream.realNumberPrecision();
93 ostringstream ss;
94 ss << fixed;
96 if (stream.numberFlags() & QTextStream::ForceSign)
97 ss << showpos;
99 if (0 == precision)
100 ss << setprecision(1) << round(t);
101 else
102 ss << setprecision(precision) << t;
104 string str(ss.str());
105 if (0 == precision) {
106 // remove the separator and the unwanted decimal place
107 str.resize(str.size() - 2);
110 return stream << QString::fromStdString(str);
113 SIPrefix determine_value_prefix(double v)
115 SIPrefix prefix;
117 if (v == 0) {
118 prefix = SIPrefix::none;
119 } else {
120 int exp = exponent(SIPrefix::yotta);
121 prefix = SIPrefix::yocto;
122 while ((fabs(v) * pow(10, exp)) > 999 &&
123 prefix < SIPrefix::yotta) {
124 prefix = successor(prefix);
125 exp -= 3;
129 return prefix;
132 QString format_time_si(const Timestamp& v, SIPrefix prefix,
133 unsigned int precision, QString unit, bool sign)
135 if (prefix == SIPrefix::unspecified)
136 prefix = determine_value_prefix(v.convert_to<double>());
138 assert(prefix >= SIPrefix::yocto);
139 assert(prefix <= SIPrefix::yotta);
141 const Timestamp multiplier = pow(Timestamp(10), -exponent(prefix));
143 QString s;
144 QTextStream ts(&s);
145 if (sign && !v.is_zero())
146 ts.setNumberFlags(ts.numberFlags() | QTextStream::ForceSign);
147 ts << qSetRealNumberPrecision(precision) << (v * multiplier);
148 ts << ' ' << prefix << unit;
150 return s;
153 QString format_value_si(double v, SIPrefix prefix, unsigned precision,
154 QString unit, bool sign)
156 if (prefix == SIPrefix::unspecified) {
157 prefix = determine_value_prefix(v);
159 const int prefix_order = -exponent(prefix);
160 precision = (prefix >= SIPrefix::none) ? max((int)(precision + prefix_order), 0) :
161 max((int)(precision - prefix_order), 0);
164 assert(prefix >= SIPrefix::yocto);
165 assert(prefix <= SIPrefix::yotta);
167 const double multiplier = pow(10.0, -exponent(prefix));
169 QString s;
170 QTextStream ts(&s);
171 if (sign && (v != 0))
172 ts.setNumberFlags(ts.numberFlags() | QTextStream::ForceSign);
173 ts.setRealNumberNotation(QTextStream::FixedNotation);
174 ts.setRealNumberPrecision(precision);
175 ts << (v * multiplier) << ' ' << prefix << unit;
177 return s;
180 QString format_time_si_adjusted(const Timestamp& t, SIPrefix prefix,
181 unsigned precision, QString unit, bool sign)
183 // The precision is always given without taking the prefix into account
184 // so we need to deduct the number of decimals the prefix might imply
185 const int prefix_order = -exponent(prefix);
187 const unsigned int relative_prec =
188 (prefix >= SIPrefix::none) ? precision :
189 max((int)(precision - prefix_order), 0);
191 return format_time_si(t, prefix, relative_prec, unit, sign);
194 // Helper for 'format_time_minutes()'.
195 static QString pad_number(unsigned int number, int length)
197 return QString("%1").arg(number, length, 10, QChar('0'));
200 QString format_time_minutes(const Timestamp& t, signed precision, bool sign)
202 const Timestamp whole_seconds = floor(abs(t));
203 const Timestamp days = floor(whole_seconds / (60 * 60 * 24));
204 const unsigned int hours = fmod(whole_seconds / (60 * 60), 24).convert_to<uint>();
205 const unsigned int minutes = fmod(whole_seconds / 60, 60).convert_to<uint>();
206 const unsigned int seconds = fmod(whole_seconds, 60).convert_to<uint>();
208 QString s;
209 QTextStream ts(&s);
211 if (t < 0)
212 ts << "-";
213 else if (sign)
214 ts << "+";
216 bool use_padding = false;
218 // DD
219 if (days) {
220 ts << days.str().c_str() << ":";
221 use_padding = true;
224 // HH
225 if (hours || days) {
226 ts << pad_number(hours, use_padding ? 2 : 0) << ":";
227 use_padding = true;
230 // MM
231 ts << pad_number(minutes, use_padding ? 2 : 0);
233 ts << ":";
235 // SS
236 ts << pad_number(seconds, 2);
238 if (precision) {
239 ts << ".";
241 const Timestamp fraction = fabs(t) - whole_seconds;
243 ostringstream ss;
244 ss << fixed << setprecision(precision) << setfill('0') << fraction;
245 string fs = ss.str();
247 // Copy all digits, inserting spaces as unit separators
248 for (int i = 1; i <= precision; i++) {
249 // Start at index 2 to skip the "0." at the beginning
250 ts << fs.at(1 + i);
252 if ((i > 0) && (i % 3 == 0) && (i != precision))
253 ts << " ";
257 return s;
261 * Split a string into tokens at occurences of the separator.
263 * @param[in] text The input string to split.
264 * @param[in] separator The delimiter between tokens.
266 * @return A vector of broken down tokens.
268 vector<string> split_string(string text, string separator)
270 vector<string> result;
271 size_t pos;
273 while ((pos = text.find(separator)) != std::string::npos) {
274 result.push_back(text.substr(0, pos));
275 text = text.substr(pos + separator.length());
277 result.push_back(text);
279 return result;
283 * Return the width of a string in a given font.
285 * @param[in] metric metrics of the font
286 * @param[in] string the string whose width should be determined
288 * @return width of the string in pixels
290 std::streamsize text_width(const QFontMetrics &metric, const QString &string)
292 #if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
293 return metric.horizontalAdvance(string);
294 #else
295 return metric.width(string);
296 #endif
299 } // namespace util
300 } // namespace pv