-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathio.cpp
61 lines (49 loc) · 1.19 KB
/
io.cpp
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
/* Input/Output functions.
*
* Copyright (C) 2023 Markus Wallerberger and others
* SPDX-License-Identifier: MIT
*/
#include "xprec/ddouble.hpp"
#include <array>
#include <iostream>
#include <sstream>
#ifndef XPREC_API_EXPORT
#define XPREC_API_EXPORT
#endif
namespace xprec {
class FormatSentry {
public:
explicit FormatSentry(std::ostream &str) : stream_(str), saved_(nullptr)
{
saved_.copyfmt(stream_);
}
~FormatSentry() { stream_.copyfmt(saved_); }
operator bool() const { return stream_.good(); }
private:
// make it non-copyable and -movable
FormatSentry(const FormatSentry &) = delete;
FormatSentry &operator=(const FormatSentry &) = delete;
std::ostream &stream_;
std::ios saved_;
};
XPREC_API_EXPORT
std::ostream &dump(std::ostream &out, DDouble x)
{
FormatSentry s(out);
if (!s)
return out;
out.width(0);
out.precision(16);
out.setf(std::ios_base::scientific);
out << "DDouble(" << x.hi() << "," << x.lo() << ")";
return out;
}
XPREC_API_EXPORT
std::ostream &operator<<(std::ostream &out, DDouble x)
{
// XXX this needs some work
dump(out, x);
// Return stream
return out;
}
} /* namespace xprec */