File: Utils.cpp

package info (click to toggle)
kwave 25.04.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,272 kB
  • sloc: cpp: 56,173; xml: 817; perl: 688; sh: 57; makefile: 11
file content (211 lines) | stat: -rw-r--r-- 6,460 bytes parent folder | download
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/***************************************************************************
              Utils.cpp  -  some commonly used utility functions
                             -------------------
    begin                : Sun Mar 27 2011
    copyright            : (C) 2011 by Thomas Eschenbacher
    email                : Thomas.Eschenbacher@gmx.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include "config.h"

#include <math.h>
#include <pthread.h>
#include <string.h>

#include <QDate>
#include <QDateTime>
#include <QDir>
#include <QLatin1Char>
#include <QLocale>
#include <QString>
#include <QThread>
#include <QtGlobal>

#include <KLocalizedString>

#include "libkwave/String.h"
#include "libkwave/Utils.h"

//***************************************************************************
void Kwave::yield()
{
    pthread_testcancel();
    QThread::yieldCurrentThread();
}

//***************************************************************************
QString Kwave::zoom2string(double percent)
{
    QString result;

    if (percent < 1000.0) {
        int digits;

        if (percent < 1.0)
            digits = Kwave::toInt(ceil(1.0 - log10(percent)));
        else if (percent < 10.0)
            digits = 1;
        else
            digits = 0;
        result.setNum(percent, 'f', digits);
        result += _(" %");
    } else {
        result.setNum(Kwave::toInt(rint(percent / 100.0)));
        result.prepend(_("x "));
    }
    return result;
}

//***************************************************************************
QString Kwave::ms2string(double ms, int precision)
{
    QString result;

    if (ms < 1.0) {
        // limit precision, use 0.0 for exact zero
        int digits = (ms != 0.0) ? Kwave::toInt(ceil(1.0 - log10(ms))) : 1;
        if ( (digits < 0) || (digits > precision)) digits = precision;

        result = _("%1 ms").arg(ms, 0, 'f', digits);
    } else if (ms < 1000.0) {
        result = _("%1 ms").arg(ms, 0, 'f', 1);
    } else {
        int s = Kwave::toInt(round(ms / 1000.0));
        int m = Kwave::toInt(floor(s / 60.0));

        if (m < 1) {
            int digits = Kwave::toInt(
                ceil(static_cast<double>(precision + 1) - log10(ms)));
            result = _("%1 s").arg(
                static_cast<double>(ms) / 1000.0, 0, 'f', digits);
        } else {
            result = _("%1:%2 min").arg(
                m,      2, 10, QLatin1Char('0')).arg(
                s % 60, 2, 10, QLatin1Char('0'));
        }
    }

    return result;
}

//***************************************************************************
QString Kwave::samples2string(sample_index_t samples)
{
    return QLocale().toString(Kwave::toUint(samples));
}

//***************************************************************************
QString Kwave::ms2hms(double ms)
{
    unsigned int t, h, m, s, tms;
    t = static_cast<unsigned int>(rint(ms * 10.0));
    tms = t % 10000;
    t /= 10000;
    s = t % 60;
    t /= 60;
    m = t % 60;
    t /= 60;
    h = t;

    return i18nc(
        "time of label tooltip, %1=hour, %2=minute, %3=second, %4=milliseconds",
        "%1:%2:%3.%4",
        QString::asprintf("%02u", h),
        QString::asprintf("%02u", m),
        QString::asprintf("%02u", s),
        QString::asprintf("%04u", tms)
    );
}

//***************************************************************************
QString Kwave::string2date(const QString &str)
{
    const Qt::DateFormat formats[] = {
        Qt::ISODate,
        Qt::TextDate,
    };
    const unsigned int fmt_count =
        sizeof(formats) / sizeof(formats[0]);
    QDateTime dt;

    // try ID3 full date/time
    dt = QDateTime::fromString(str, _("yyyy-MM-ddThh:mm:ss"));
    if (dt.isValid())
        return str; // already in complete date/time format

    // type ID3 date without time
    dt = QDateTime::fromString(str, _("yyyy-MM-dd"));
    if (dt.isValid())
        return str; // already a valid date

    // try all date/time formats supported by Qt
    dt = QLocale().toDateTime(str, QLocale::ShortFormat);
    if (dt.isValid()) {
        return dt.toString(_("yyyy-MM-ddThh:mm:ss"));
    }
    dt = QLocale().toDateTime(str, QLocale::LongFormat);
    if (dt.isValid()) {
        return dt.toString(_("yyyy-MM-ddThh:mm:ss"));
    }
    dt = QLocale::system().toDateTime(str, QLocale::ShortFormat);
    if (dt.isValid()) {
        return dt.toString(_("yyyy-MM-ddThh:mm:ss"));
    }
    dt = QLocale::system().toDateTime(str, QLocale::LongFormat);
    if (dt.isValid()) {
        return dt.toString(_("yyyy-MM-ddThh:mm:ss"));
    }
    for (unsigned int i = 0; i < fmt_count; i++) {
        Qt::DateFormat fmt = formats[i];
        QString s;

        dt = QDateTime::fromString(str, fmt);

        if (dt.isValid()) {
            // full timestamp, including time
            s = dt.toString(_("yyyy-MM-ddThh:mm:ss"));
        }
        if (!s.length()) {
            // date only, without time
            dt = QDateTime(QDate::fromString(str), QTime(0,0));
            s = dt.toString(_("yyyy-MM-dd"));
        }

        if (s.length()) {
            return s;
        }
    }

    return QString();
}

//***************************************************************************
QUrl Kwave::URLfromUserInput(const QString &path)
{
    return QUrl::fromUserInput(path, QDir::currentPath(),
                               QUrl::AssumeLocalFile);
}

//***************************************************************************
QString Kwave::urlScheme()
{
    return _("kwave");
}

//***************************************************************************
quint64 Kwave::undoLimit()
{
    return 2048;
}

//***************************************************************************
//***************************************************************************