Branch data Line data Source code
1 : : /* RAII class for managing FILE * for diagnostic formats.
2 : : Copyright (C) 2024 Free Software Foundation, Inc.
3 : : Contributed by David Malcolm <dmalcolm@redhat.com>.
4 : :
5 : : This file is part of GCC.
6 : :
7 : : GCC is free software; you can redistribute it and/or modify it under
8 : : the terms of the GNU General Public License as published by the Free
9 : : Software Foundation; either version 3, or (at your option) any later
10 : : version.
11 : :
12 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 : : for more details.
16 : :
17 : : You should have received a copy of the GNU General Public License
18 : : along with GCC; see the file COPYING3. If not see
19 : : <http://www.gnu.org/licenses/>. */
20 : :
21 : : #ifndef GCC_DIAGNOSTIC_OUTPUT_FILE_H
22 : : #define GCC_DIAGNOSTIC_OUTPUT_FILE_H
23 : :
24 : : /* RAII class for wrapping a FILE * that could be borrowed or owned,
25 : : along with the underlying filename. */
26 : :
27 : : class diagnostic_output_file
28 : : {
29 : : public:
30 : 6 : diagnostic_output_file ()
31 : 6 : : m_outf (nullptr),
32 : 6 : m_owned (false),
33 : 6 : m_filename ()
34 : : {
35 : : }
36 : 92 : diagnostic_output_file (FILE *outf, bool owned, label_text filename)
37 : 92 : : m_outf (outf),
38 : 92 : m_owned (owned),
39 : 92 : m_filename (std::move (filename))
40 : : {
41 : 92 : gcc_assert (m_filename.get ());
42 : 92 : if (m_owned)
43 : 92 : gcc_assert (m_outf);
44 : 92 : }
45 : 288 : ~diagnostic_output_file ()
46 : : {
47 : 288 : if (m_owned)
48 : : {
49 : 92 : gcc_assert (m_outf);
50 : 92 : fclose (m_outf);
51 : : }
52 : 288 : }
53 : : diagnostic_output_file (const diagnostic_output_file &other) = delete;
54 : 190 : diagnostic_output_file (diagnostic_output_file &&other)
55 : 190 : : m_outf (other.m_outf),
56 : 190 : m_owned (other.m_owned),
57 : 190 : m_filename (std::move (other.m_filename))
58 : : {
59 : 190 : other.m_outf = nullptr;
60 : 190 : other.m_owned = false;
61 : :
62 : 190 : gcc_assert (m_filename.get ());
63 : 190 : if (m_owned)
64 : 190 : gcc_assert (m_outf);
65 : 190 : }
66 : : diagnostic_output_file &
67 : : operator= (const diagnostic_output_file &other) = delete;
68 : : diagnostic_output_file &
69 : 6 : operator= (diagnostic_output_file &&other)
70 : : {
71 : 6 : if (m_owned)
72 : : {
73 : 0 : gcc_assert (m_outf);
74 : 0 : fclose (m_outf);
75 : : }
76 : :
77 : 6 : m_outf = other.m_outf;
78 : 6 : other.m_outf = nullptr;
79 : :
80 : 6 : m_owned = other.m_owned;
81 : 6 : other.m_owned = false;
82 : :
83 : 6 : m_filename = std::move (other.m_filename);
84 : :
85 : 6 : if (m_owned)
86 : 6 : gcc_assert (m_outf);
87 : 6 : return *this;
88 : : }
89 : :
90 : 6 : operator bool () const { return m_outf != nullptr; }
91 : 184 : FILE *get_open_file () const { return m_outf; }
92 : 92 : const char *get_filename () const { return m_filename.get (); }
93 : :
94 : : private:
95 : : FILE *m_outf;
96 : : bool m_owned;
97 : : label_text m_filename;
98 : : };
99 : :
100 : : #endif /* ! GCC_DIAGNOSTIC_OUTPUT_FILE_H */
|