blob: 702319a2e7b198b8ad6784a7d2d22da413b7d539 (
plain)
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
|
// file : tests/progress/driver.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef _WIN32
# include <thread> // this_thread::sleep_for()
#else
# include <libbutl/win32-utility.hxx>
#endif
#include <cstddef> // size_t
#include <iostream>
#include <libbutl/diagnostics.hxx>
using namespace std;
using namespace butl;
int
main ()
{
auto sleep = [] (size_t ms = 100)
{
// MINGW GCC 4.9 doesn't implement this_thread so use Win32 Sleep().
//
#ifndef _WIN32
this_thread::sleep_for (chrono::milliseconds (ms));
#else
Sleep (static_cast<DWORD> (ms));
#endif
};
for (size_t i (100); i != 0; --i)
{
if (i % 10 == 0)
diag_stream_lock () << "Line " << i / 10 << endl;
{
diag_progress_lock l;
diag_progress = " " + to_string (i) + "%";
}
sleep ();
}
sleep (1000);
// Test that the progress line is restored by the diag_stream_lock.
//
diag_stream_lock () << "Printed to diag_stream" << endl;
sleep (1000);
// Test that the progress line is restored after printing to cerr.
//
{
cerr << "Printed to std::cerr" << endl;
diag_progress_lock ();
}
sleep (1000);
}
|