]> sigrok.org Git - pulseview.git/blame - pv/util.cpp
Fix typo
[pulseview.git] / pv / util.cpp
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
2acdb232 20#include "util.hpp"
f0c9f81c
JS
21
22#include <extdef.h>
23
ac981988 24#include <algorithm>
aca9aa83 25#include <cassert>
f52be90d 26#include <sstream>
ac981988 27
f0c9f81c 28#include <QDebug>
aca9aa83 29#include <QTextStream>
f0c9f81c 30
6f925ba9
UH
31using std::fixed;
32using std::max;
33using std::ostringstream;
34using std::setfill;
35using std::setprecision;
36using std::showpos;
37using std::string;
38
f0c9f81c
JS
39using namespace Qt;
40
41namespace pv {
42namespace util {
43
d001f416
JS
44static QTextStream& operator<<(QTextStream& stream, SIPrefix prefix)
45{
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';
63
64 default: return stream;
65 }
66}
67
68int exponent(SIPrefix prefix)
69{
70 return 3 * (static_cast<int>(prefix) - static_cast<int>(SIPrefix::none));
71}
72
73static SIPrefix successor(SIPrefix prefix)
74{
75 assert(prefix != SIPrefix::yotta);
76 return static_cast<SIPrefix>(static_cast<int>(prefix) + 1);
77}
f0c9f81c 78
f52be90d
JS
79// Insert the timestamp value into the stream in fixed-point notation
80// (and honor the precision)
81static QTextStream& operator<<(QTextStream& stream, const Timestamp& t)
82{
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.
90
91 int precision = stream.realNumberPrecision();
92
6f925ba9
UH
93 ostringstream ss;
94 ss << fixed;
f52be90d 95
2ad82c2e 96 if (stream.numberFlags() & QTextStream::ForceSign)
6f925ba9 97 ss << showpos;
f52be90d 98
2ad82c2e 99 if (0 == precision)
6f925ba9 100 ss << setprecision(1) << round(t);
2ad82c2e 101 else
6f925ba9 102 ss << setprecision(precision) << t;
f52be90d 103
6f925ba9 104 string str(ss.str());
f52be90d
JS
105 if (0 == precision) {
106 // remove the separator and the unwanted decimal place
107 str.resize(str.size() - 2);
108 }
109
110 return stream << QString::fromStdString(str);
111}
112
c063290a
UH
113QString format_time_si(const Timestamp& v, SIPrefix prefix,
114 unsigned int precision, QString unit, bool sign)
f0c9f81c 115{
d001f416 116 if (prefix == SIPrefix::unspecified) {
f52be90d
JS
117 // No prefix given, calculate it
118
119 if (v.is_zero()) {
d001f416 120 prefix = SIPrefix::none;
f52be90d 121 } else {
d001f416
JS
122 int exp = exponent(SIPrefix::yotta);
123 prefix = SIPrefix::yocto;
124 while ((fabs(v) * pow(Timestamp(10), exp)) > 999 &&
125 prefix < SIPrefix::yotta) {
126 prefix = successor(prefix);
f52be90d
JS
127 exp -= 3;
128 }
4bc10a91
JH
129 }
130 }
131
d001f416
JS
132 assert(prefix >= SIPrefix::yocto);
133 assert(prefix <= SIPrefix::yotta);
f0c9f81c 134
d001f416 135 const Timestamp multiplier = pow(Timestamp(10), -exponent(prefix));
f0c9f81c
JS
136
137 QString s;
138 QTextStream ts(&s);
f52be90d 139 if (sign && !v.is_zero())
f0c9f81c 140 ts << forcesign;
ef85cfa4 141 ts << qSetRealNumberPrecision(precision) << (v * multiplier);
66279897 142 ts << ' ' << prefix << unit;
f0c9f81c
JS
143
144 return s;
145}
146
0cbadf1c
SA
147QString format_value_si(double v, SIPrefix prefix, unsigned precision,
148 QString unit, bool sign)
149{
150 if (prefix == SIPrefix::unspecified) {
151 // No prefix given, calculate it
152
153 if (v == 0) {
154 prefix = SIPrefix::none;
155 } else {
156 int exp = exponent(SIPrefix::yotta);
157 prefix = SIPrefix::yocto;
158 while ((fabs(v) * pow(Timestamp(10), exp)) > 999 &&
159 prefix < SIPrefix::yotta) {
160 prefix = successor(prefix);
161 exp -= 3;
162 }
163 }
66279897
SA
164
165 const int prefix_order = -exponent(prefix);
166 precision = (prefix >= SIPrefix::none) ? max((int)(precision + prefix_order), 0) :
167 max((int)(precision - prefix_order), 0);
0cbadf1c
SA
168 }
169
170 assert(prefix >= SIPrefix::yocto);
171 assert(prefix <= SIPrefix::yotta);
172
173 const double multiplier = pow(10.0, -exponent(prefix));
174
175 QString s;
176 QTextStream ts(&s);
177 if (sign && (v != 0))
178 ts << forcesign;
179 ts.setRealNumberNotation(QTextStream::FixedNotation);
180 ts.setRealNumberPrecision(precision);
181 ts << (v * multiplier) << ' ' << prefix << unit;
182
183 return s;
184}
185
c063290a
UH
186QString format_time_si_adjusted(const Timestamp& t, SIPrefix prefix,
187 unsigned precision, QString unit, bool sign)
3ccf0f7f
JS
188{
189 // The precision is always given without taking the prefix into account
190 // so we need to deduct the number of decimals the prefix might imply
191 const int prefix_order = -exponent(prefix);
192
193 const unsigned int relative_prec =
194 (prefix >= SIPrefix::none) ? precision :
6f925ba9 195 max((int)(precision - prefix_order), 0);
3ccf0f7f
JS
196
197 return format_time_si(t, prefix, relative_prec, unit, sign);
198}
199
3ccf0f7f 200// Helper for 'format_time_minutes()'.
ac981988
SA
201static QString pad_number(unsigned int number, int length)
202{
203 return QString("%1").arg(number, length, 10, QChar('0'));
204}
205
3ccf0f7f 206QString format_time_minutes(const Timestamp& t, signed precision, bool sign)
ac981988 207{
af95045e
JS
208 const Timestamp whole_seconds = floor(abs(t));
209 const Timestamp days = floor(whole_seconds / (60 * 60 * 24));
210 const unsigned int hours = fmod(whole_seconds / (60 * 60), 24).convert_to<uint>();
211 const unsigned int minutes = fmod(whole_seconds / 60, 60).convert_to<uint>();
212 const unsigned int seconds = fmod(whole_seconds, 60).convert_to<uint>();
ac981988
SA
213
214 QString s;
215 QTextStream ts(&s);
216
3ccf0f7f 217 if (t < 0)
ac981988 218 ts << "-";
3ccf0f7f
JS
219 else if (sign)
220 ts << "+";
ac981988
SA
221
222 bool use_padding = false;
223
3ccf0f7f 224 // DD
ac981988 225 if (days) {
af95045e 226 ts << days.str().c_str() << ":";
ac981988
SA
227 use_padding = true;
228 }
229
3ccf0f7f 230 // HH
ac981988
SA
231 if (hours || days) {
232 ts << pad_number(hours, use_padding ? 2 : 0) << ":";
233 use_padding = true;
234 }
235
3ccf0f7f
JS
236 // MM
237 ts << pad_number(minutes, use_padding ? 2 : 0);
ac981988 238
3ccf0f7f 239 ts << ":";
ac981988 240
3ccf0f7f
JS
241 // SS
242 ts << pad_number(seconds, 2);
ac981988 243
3ccf0f7f
JS
244 if (precision) {
245 ts << ".";
ac981988 246
3ccf0f7f 247 const Timestamp fraction = fabs(t) - whole_seconds;
ac981988 248
6f925ba9
UH
249 ostringstream ss;
250 ss << fixed << setprecision(precision) << setfill('0') << fraction;
251 string fs = ss.str();
ac981988 252
3ccf0f7f
JS
253 // Copy all digits, inserting spaces as unit separators
254 for (int i = 1; i <= precision; i++) {
255 // Start at index 2 to skip the "0." at the beginning
256 ts << fs.at(1 + i);
ac981988 257
3ccf0f7f
JS
258 if ((i > 0) && (i % 3 == 0) && (i != precision))
259 ts << " ";
ac981988
SA
260 }
261 }
262
263 return s;
264}
265
34f4a40b 266/**
3083cda8 267 * Split a string into tokens at occurences of the separator.
34f4a40b 268 *
3083cda8
UH
269 * @param[in] text The input string to split.
270 * @param[in] separator The delimiter between tokens.
34f4a40b 271 *
3083cda8 272 * @return A vector of broken down tokens.
34f4a40b
GS
273 */
274vector<string> split_string(string text, string separator)
275{
276 vector<string> result;
277 size_t pos;
278
279 while ((pos = text.find(separator)) != std::string::npos) {
280 result.push_back(text.substr(0, pos));
281 text = text.substr(pos + separator.length());
282 }
283 result.push_back(text);
284
285 return result;
286}
287
f0c9f81c
JS
288} // namespace util
289} // namespace pv