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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
|
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) ZenJu (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#include "format_unit.h"
#include <zen/basic_math.h>
#include <zen/i18n.h>
#include <zen/time.h>
#include <cwchar> //swprintf
#include <ctime>
#include <cstdio>
#ifdef FFS_WIN
#include <zen/win.h> //includes "windows.h"
#include <zen/win_ver.h>
#elif defined FFS_LINUX
#include <clocale> //thousands separator
#include <zen/utf.h> //
#endif
using namespace zen;
std::wstring zen::filesizeToShortString(Int64 size)
{
//if (size < 0) return _("Error"); -> really? there's at least one exceptional case: a failed rename operation falls-back to copy + delete, reducing "bytes transferred" to potentially < 0!
if (numeric::abs(size) <= 999)
return replaceCpy(_P("1 Byte", "%x Bytes", to<int>(size)),
L"%x",
numberTo<std::wstring>(size));
else
{
double filesize = to<double>(size);
filesize /= 1024;
std::wstring output = _("%x KB");
if (numeric::abs(filesize) > 999)
{
filesize /= 1024;
output = _("%x MB");
if (numeric::abs(filesize) > 999)
{
filesize /= 1024;
output = _("%x GB");
if (numeric::abs(filesize) > 999)
{
filesize /= 1024;
output = _("%x TB");
if (numeric::abs(filesize) > 999)
{
filesize /= 1024;
output = _("%x PB");
}
}
}
}
//print just three significant digits: 0,01 | 0,11 | 1,11 | 11,1 | 111
const size_t fullunits = static_cast<size_t>(numeric::abs(filesize));
const int precisionDigits = fullunits < 10 ? 2 : fullunits < 100 ? 1 : 0; //sprintf requires "int"
wchar_t buffer[50];
#ifdef __MINGW32__
int charsWritten = ::snwprintf(buffer, 50, L"%.*f", precisionDigits, filesize); //MinGW does not comply to the C standard here
#else
int charsWritten = std::swprintf(buffer, 50, L"%.*f", precisionDigits, filesize);
#endif
return charsWritten > 0 ? replaceCpy(output, L"%x", std::wstring(buffer, charsWritten)) : _("Error");
}
}
enum UnitRemTime
{
URT_SEC,
URT_MIN,
URT_HOUR,
URT_DAY
};
std::wstring zen::remainingTimeToShortString(double timeInSec)
{
double remainingTime = timeInSec;
//determine preferred unit
UnitRemTime unit = URT_SEC;
if (remainingTime > 59)
{
unit = URT_MIN;
remainingTime /= 60;
if (remainingTime > 59)
{
unit = URT_HOUR;
remainingTime /= 60;
if (remainingTime > 23)
{
unit = URT_DAY;
remainingTime /= 24;
}
}
}
int formattedTime = numeric::round(remainingTime);
//reduce precision to 5 seconds
if (unit == URT_SEC)
formattedTime = static_cast<int>(std::ceil(formattedTime / 5.0) * 5);
//generate output message
std::wstring output;
switch (unit)
{
case URT_SEC:
output = _P("1 sec", "%x sec", formattedTime);
break;
case URT_MIN:
output = _P("1 min", "%x min", formattedTime);
break;
case URT_HOUR:
output = _P("1 hour", "%x hours", formattedTime);
break;
case URT_DAY:
output = _P("1 day", "%x days", formattedTime);
break;
}
return replaceCpy(output, L"%x", zen::numberTo<std::wstring>(formattedTime));
}
std::wstring zen::fractionToShortString(double fraction)
{
//return replaceCpy(_("%x%"), L"%x", printNumber<std::wstring>(L"%3.2f", fraction * 100.0), false);
return printNumber<std::wstring>(L"%3.2f", fraction * 100.0) + L'%'; //no need to internationalize fraction!?
}
#ifdef FFS_WIN
namespace
{
bool getUserSetting(LCTYPE lt, UINT& setting)
{
return ::GetLocaleInfo(LOCALE_USER_DEFAULT, //__in LCID Locale,
lt | LOCALE_RETURN_NUMBER, //__in LCTYPE LCType,
reinterpret_cast<LPTSTR>(&setting), //__out LPTSTR lpLCData,
sizeof(setting) / sizeof(TCHAR)) > 0; //__in int cchData
}
bool getUserSetting(LCTYPE lt, std::wstring& setting)
{
int bufferSize = ::GetLocaleInfo(LOCALE_USER_DEFAULT, lt, nullptr, 0);
if (bufferSize > 0)
{
std::vector<wchar_t> buffer(bufferSize);
if (::GetLocaleInfo(LOCALE_USER_DEFAULT, //__in LCID Locale,
lt, //__in LCTYPE LCType,
&buffer[0], //__out LPTSTR lpLCData,
bufferSize) > 0) //__in int cchData
{
setting = &buffer[0]; //GetLocaleInfo() returns char count *including* 0-termination!
return true;
}
}
return false;
}
class IntegerFormat
{
public:
static const NUMBERFMT& get() { return getInst().fmt; }
static bool isValid() { return getInst().valid_; }
private:
static const IntegerFormat& getInst()
{
static IntegerFormat inst; //not threadsafe in MSVC until C++11, but not required right now
return inst;
}
IntegerFormat() : fmt(), valid_(false)
{
//all we want is default NUMBERFMT, but set NumDigits to 0
fmt.NumDigits = 0;
//what a disgrace:
std::wstring grouping;
if (getUserSetting(LOCALE_ILZERO, fmt.LeadingZero) &&
getUserSetting(LOCALE_SGROUPING, grouping) &&
getUserSetting(LOCALE_SDECIMAL, decimalSep) &&
getUserSetting(LOCALE_STHOUSAND, thousandSep) &&
getUserSetting(LOCALE_INEGNUMBER, fmt.NegativeOrder))
{
fmt.lpDecimalSep = &decimalSep[0]; //not used
fmt.lpThousandSep = &thousandSep[0];
//convert LOCALE_SGROUPING to Grouping: http://blogs.msdn.com/b/oldnewthing/archive/2006/04/18/578251.aspx
replace(grouping, L';', L"");
if (endsWith(grouping, L'0'))
grouping.resize(grouping.size() - 1);
else
grouping += L'0';
fmt.Grouping = stringTo<UINT>(grouping);
valid_ = true;
}
}
NUMBERFMT fmt;
std::wstring thousandSep;
std::wstring decimalSep;
bool valid_;
};
}
#endif
std::wstring zen::ffs_Impl::includeNumberSeparator(const std::wstring& number)
{
#ifdef FFS_WIN
if (IntegerFormat::isValid())
{
int bufferSize = ::GetNumberFormat(LOCALE_USER_DEFAULT, 0, number.c_str(), &IntegerFormat::get(), nullptr, 0);
if (bufferSize > 0)
{
std::vector<wchar_t> buffer(bufferSize);
if (::GetNumberFormat(LOCALE_USER_DEFAULT, //__in LCID Locale,
0, //__in DWORD dwFlags,
number.c_str(), //__in LPCTSTR lpValue,
&IntegerFormat::get(), //__in_opt const NUMBERFMT *lpFormat,
&buffer[0], //__out_opt LPTSTR lpNumberStr,
bufferSize) > 0) //__in int cchNumber
return &buffer[0]; //GetNumberFormat() returns char count *including* 0-termination!
}
}
return number;
#else
//we have to include thousands separator ourselves; this doesn't work for all countries (e.g india), but is better than nothing
//::setlocale (LC_ALL, ""); -> implicitly called by wxLocale
const lconv* localInfo = ::localeconv(); //always bound according to doc
const std::wstring& thousandSep = utfCvrtTo<std::wstring>(localInfo->thousands_sep);
// THOUSANDS_SEPARATOR = std::use_facet<std::numpunct<wchar_t> >(std::locale("")).thousands_sep(); - why not working?
// DECIMAL_POINT = std::use_facet<std::numpunct<wchar_t> >(std::locale("")).decimal_point();
std::wstring output(number);
size_t i = output.size();
for (;;)
{
if (i <= 3)
break;
i -= 3;
if (!isDigit(output[i - 1]))
break;
output.insert(i, thousandSep);
}
return output;
#endif
}
/*
#include <wx/scrolwin.h>
void zen::scrollToBottom(wxScrolledWindow* scrWindow)
{
int height = 0;
scrWindow->GetClientSize(nullptr, &height);
int pixelPerLine = 0;
scrWindow->GetScrollPixelsPerUnit(nullptr, &pixelPerLine);
if (height > 0 && pixelPerLine > 0)
{
const int scrollLinesTotal = scrWindow->GetScrollLines(wxVERTICAL);
const int scrollLinesOnScreen = height / pixelPerLine;
const int scrollPosBottom = scrollLinesTotal - scrollLinesOnScreen;
if (0 <= scrollPosBottom)
scrWindow->Scroll(0, scrollPosBottom);
}
}
*/
#ifdef FFS_WIN
namespace
{
const bool useNewLocalTimeCalculation = zen::vistaOrLater();
}
#endif
std::wstring zen::utcToLocalTimeString(Int64 utcTime)
{
auto errorMsg = [&] { return _("Error") + L" (time_t: " + numberTo<std::wstring>(utcTime) + L")"; };
#ifdef FFS_WIN
FILETIME lastWriteTimeUtc = tofiletime(utcTime); //convert ansi C time to FILETIME
SYSTEMTIME systemTimeLocal = {};
if (useNewLocalTimeCalculation) //use DST setting from source date (like in Windows 7, see http://msdn.microsoft.com/en-us/library/ms724277(VS.85).aspx)
{
SYSTEMTIME systemTimeUtc = {};
if (!::FileTimeToSystemTime(&lastWriteTimeUtc, //__in const FILETIME *lpFileTime,
&systemTimeUtc)) //__out LPSYSTEMTIME lpSystemTime
return errorMsg();
if (!::SystemTimeToTzSpecificLocalTime(nullptr, //__in_opt LPTIME_ZONE_INFORMATION lpTimeZone,
&systemTimeUtc, //__in LPSYSTEMTIME lpUniversalTime,
&systemTimeLocal)) //__out LPSYSTEMTIME lpLocalTime
return errorMsg();
}
else //use DST setting (like in Windows 2000 and XP)
{
FILETIME fileTimeLocal = {};
if (!::FileTimeToLocalFileTime(&lastWriteTimeUtc, //pointer to UTC file time to convert
&fileTimeLocal)) //pointer to converted file time
return errorMsg();
if (!::FileTimeToSystemTime(&fileTimeLocal, //pointer to file time to convert
&systemTimeLocal)) //pointer to structure to receive system time
return errorMsg();
}
zen::TimeComp loc;
loc.year = systemTimeLocal.wYear;
loc.month = systemTimeLocal.wMonth;
loc.day = systemTimeLocal.wDay;
loc.hour = systemTimeLocal.wHour;
loc.minute = systemTimeLocal.wMinute;
loc.second = systemTimeLocal.wSecond;
#elif defined FFS_LINUX
zen::TimeComp loc = zen::localTime(to<time_t>(utcTime));
#endif
std::wstring dateString = formatTime<std::wstring>(L"%x %X", loc);
return !dateString.empty() ? dateString : errorMsg();
}
|