Skip to content

Commit f2064df

Browse files
committed
src: de-lint header usage
PR-URL: #26306 Reviewed-By: Gireesh Punathil <[email protected]>
1 parent 9029981 commit f2064df

35 files changed

+148
-151
lines changed

src/async_wrap.cc

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
2020
// USE OR OTHER DEALINGS IN THE SOFTWARE.
2121

22+
#include "async_wrap.h" // NOLINT(build/include_inline)
2223
#include "async_wrap-inl.h"
2324
#include "env-inl.h"
2425
#include "node_errors.h"

src/debug_utils.cc

-5
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@
2222
#include <cstdio>
2323
#endif
2424

25-
#else // __POSIX__
26-
27-
#include <windows.h>
28-
#include <dbghelp.h>
29-
3025
#endif // __POSIX__
3126

3227
#if defined(__linux__) || defined(__sun) || defined(__FreeBSD__)

src/env.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#include "env.h"
2+
13
#include "async_wrap.h"
24
#include "node_buffer.h"
35
#include "node_context_data.h"
@@ -14,9 +16,9 @@
1416
#include "tracing/traced_value.h"
1517
#include "v8-profiler.h"
1618

17-
#include <cstdio>
1819
#include <algorithm>
1920
#include <atomic>
21+
#include <cstdio>
2022

2123
namespace node {
2224

src/inspector/main_thread_interface.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
#include "node_mutex.h"
44
#include "v8-inspector.h"
5+
#include "util-inl.h"
56

6-
#include <functional>
77
#include <unicode/unistr.h>
8-
#include "util-inl.h"
8+
9+
#include <functional>
910

1011
namespace node {
1112
namespace inspector {

src/inspector_agent.cc

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616

1717
#include "libplatform/libplatform.h"
1818

19+
#ifdef __POSIX__
20+
#include <pthread.h>
21+
#include <climits> // PTHREAD_STACK_MIN
22+
#endif // __POSIX__
23+
1924
#include <cstring>
2025
#include <sstream>
2126
#include <unordered_map>
2227
#include <vector>
2328

24-
#ifdef __POSIX__
25-
#include <climits> // PTHREAD_STACK_MIN
26-
#include <pthread.h>
27-
#endif // __POSIX__
28-
2929
namespace node {
3030
namespace inspector {
3131
namespace {

src/inspector_agent.h

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
#ifndef SRC_INSPECTOR_AGENT_H_
2-
#define SRC_INSPECTOR_AGENT_H_
1+
#pragma once
32

43
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
54

6-
#include <memory>
7-
8-
#include <cstddef>
9-
105
#if !HAVE_INSPECTOR
116
#error("This header can only be used when inspector is enabled")
127
#endif
@@ -15,6 +10,9 @@
1510
#include "node_persistent.h"
1611
#include "v8.h"
1712

13+
#include <cstddef>
14+
#include <memory>
15+
1816
namespace v8_inspector {
1917
class StringView;
2018
} // namespace v8_inspector
@@ -143,5 +141,3 @@ class Agent {
143141
} // namespace node
144142

145143
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
146-
147-
#endif // SRC_INSPECTOR_AGENT_H_

src/inspector_io.h

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
#ifndef SRC_INSPECTOR_IO_H_
2-
#define SRC_INSPECTOR_IO_H_
1+
#pragma once
32

43
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
54

5+
#if !HAVE_INSPECTOR
6+
#error("This header can only be used when inspector is enabled")
7+
#endif
8+
69
#include "inspector_socket_server.h"
710
#include "node_mutex.h"
11+
812
#include "uv.h"
913

10-
#include <memory>
1114
#include <cstddef>
12-
13-
#if !HAVE_INSPECTOR
14-
#error("This header can only be used when inspector is enabled")
15-
#endif
15+
#include <memory>
1616

1717

1818
namespace v8_inspector {
@@ -93,5 +93,3 @@ class InspectorIo {
9393
} // namespace node
9494

9595
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
96-
97-
#endif // SRC_INSPECTOR_IO_H_

src/inspector_socket.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
#include "openssl/sha.h" // Sha-1 hash
1212

13-
#include <map>
1413
#include <cstring>
14+
#include <map>
1515

1616
#define ACCEPT_KEY_LENGTH base64_encoded_size(20)
1717

src/large_pages/node_large_page.cc

+4-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
//
2121
// SPDX-License-Identifier: MIT
2222

23-
#include <errno.h>
24-
#include <fcntl.h> // _O_RDWR
23+
#include <errno.h> // NOLINT(build/include)
24+
#include <fcntl.h> // _O_RDWR
2525
#include <limits.h> // PATH_MAX
2626
#include <locale.h>
2727
#include <signal.h>
@@ -31,11 +31,12 @@
3131
#include <string.h>
3232
#include <sys/types.h>
3333
#include <sys/mman.h>
34+
#include <unistd.h> // readlink
35+
3436
#include <string>
3537
#include <fstream>
3638
#include <iostream>
3739
#include <sstream>
38-
#include <unistd.h> // readlink
3940

4041
// The functions in this file map the text segment of node into 2M pages.
4142
// The algorithm is simple

src/memory_tracker.h

+8-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
#ifndef SRC_MEMORY_TRACKER_H_
2-
#define SRC_MEMORY_TRACKER_H_
1+
#pragma once
32

43
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
54

6-
#include <unordered_map>
5+
#include "aliased_buffer.h"
6+
#include "v8-profiler.h"
7+
8+
#include <uv.h>
9+
10+
#include <limits>
711
#include <queue>
812
#include <stack>
913
#include <string>
10-
#include <limits>
11-
#include <uv.h>
12-
#include "aliased_buffer.h"
13-
#include "v8-profiler.h"
14+
#include <unordered_map>
1415

1516
namespace node {
1617

@@ -253,5 +254,3 @@ class MemoryTracker {
253254
} // namespace node
254255

255256
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
256-
257-
#endif // SRC_MEMORY_TRACKER_H_

src/module_wrap.cc

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#include <algorithm>
2-
#include <climits> // PATH_MAX
3-
#include <sys/stat.h> // S_IFDIR
41
#include "module_wrap.h"
52

63
#include "env.h"
@@ -10,6 +7,11 @@
107
#include "node_contextify.h"
118
#include "node_watchdog.h"
129

10+
#include <sys/stat.h> // S_IFDIR
11+
12+
#include <algorithm>
13+
#include <climits> // PATH_MAX
14+
1315
namespace node {
1416
namespace loader {
1517

src/node.cc

+22-12
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
2020
// USE OR OTHER DEALINGS IN THE SOFTWARE.
2121

22+
#include "node.h"
23+
24+
// ========== local headers ==========
25+
2226
#include "debug_utils.h"
2327
#include "node_binding.h"
2428
#include "node_buffer.h"
@@ -72,25 +76,19 @@
7276
#include "large_pages/node_large_page.h"
7377
#endif
7478

75-
#include <cerrno>
79+
#ifdef NODE_REPORT
80+
#include "node_report.h"
81+
#endif
82+
83+
// ========== global C headers ==========
84+
7685
#include <fcntl.h> // _O_RDWR
77-
#include <climits> // PATH_MAX
78-
#include <csignal>
79-
#include <cstdio>
80-
#include <cstdlib>
81-
#include <cstring>
8286
#include <sys/types.h>
8387

84-
#include <string>
85-
#include <vector>
86-
8788
#if defined(NODE_HAVE_I18N_SUPPORT)
8889
#include <unicode/uvernum.h>
8990
#endif
9091

91-
#ifdef NODE_REPORT
92-
#include "node_report.h"
93-
#endif
9492

9593
#if defined(LEAK_SANITIZER)
9694
#include <sanitizer/lsan_interface.h>
@@ -106,6 +104,18 @@
106104
#include <unistd.h> // STDIN_FILENO, STDERR_FILENO
107105
#endif
108106

107+
// ========== global C++ headers ==========
108+
109+
#include <cerrno>
110+
#include <climits> // PATH_MAX
111+
#include <csignal>
112+
#include <cstdio>
113+
#include <cstdlib>
114+
#include <cstring>
115+
116+
#include <string>
117+
#include <vector>
118+
109119
namespace node {
110120

111121
using options_parser::kAllowedInEnvironment;

src/node_constants.cc

+12-9
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,31 @@
2424

2525
#include "zlib.h"
2626

27-
#include <cerrno>
2827
#if !defined(_MSC_VER)
2928
#include <unistd.h>
3029
#endif
30+
3131
#include <fcntl.h>
32-
#include <csignal>
3332
#include <sys/types.h>
3433
#include <sys/stat.h>
35-
#include <limits>
34+
3635

3736
#if HAVE_OPENSSL
38-
# include <openssl/ec.h>
39-
# include <openssl/ssl.h>
40-
# ifndef OPENSSL_NO_ENGINE
41-
# include <openssl/engine.h>
42-
# endif // !OPENSSL_NO_ENGINE
43-
#endif
37+
#include <openssl/ec.h>
38+
#include <openssl/ssl.h>
39+
#ifndef OPENSSL_NO_ENGINE
40+
#include <openssl/engine.h>
41+
#endif // !OPENSSL_NO_ENGINE
42+
#endif // HAVE_OPENSSL
4443

4544
#if defined(__POSIX__)
4645
#include <dlfcn.h>
4746
#endif
4847

48+
#include <cerrno>
49+
#include <csignal>
50+
#include <limits>
51+
4952
namespace node {
5053

5154
using v8::Local;

src/node_contextify.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
2020
// USE OR OTHER DEALINGS IN THE SOFTWARE.
2121

22-
#include "node_errors.h"
22+
#include "node_contextify.h"
23+
2324
#include "node_internals.h"
2425
#include "node_watchdog.h"
2526
#include "base_object-inl.h"
26-
#include "node_contextify.h"
2727
#include "node_context_data.h"
2828
#include "node_errors.h"
2929
#include "module_wrap.h"

src/node_crypto_clienthello.cc

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
2020
// USE OR OTHER DEALINGS IN THE SOFTWARE.
2121

22+
#include "node_crypto_clienthello.h" // NOLINT(build/include_inline)
2223
#include "node_crypto_clienthello-inl.h"
2324

2425
namespace node {

src/node_http_parser_impl.h

+3-6
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
// This file is included from 2 files, node_http_parser_traditional.cc
2323
// and node_http_parser_llhttp.cc.
2424

25-
#ifndef SRC_NODE_HTTP_PARSER_IMPL_H_
26-
#define SRC_NODE_HTTP_PARSER_IMPL_H_
25+
#pragma once
2726

2827
#include "node.h"
2928
#include "node_buffer.h"
@@ -32,13 +31,13 @@
3231
#include "async_wrap-inl.h"
3332
#include "env-inl.h"
3433
#include "stream_base-inl.h"
35-
#include "util-inl.h"
3634
#include "v8.h"
3735

36+
#include "http_parser_adaptor.h"
37+
3838
#include <cstdlib> // free()
3939
#include <cstring> // strdup(), strchr()
4040

41-
#include "http_parser_adaptor.h"
4241

4342
// This is a binding to http_parser (https://github.com/nodejs/http-parser)
4443
// The goal is to decouple sockets from parsing for more javascript-level
@@ -978,5 +977,3 @@ void InitializeHttpParser(Local<Object> target,
978977

979978
} // anonymous namespace
980979
} // namespace node
981-
982-
#endif // SRC_NODE_HTTP_PARSER_IMPL_H_

src/node_messaging.cc

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
#include "node_messaging.h"
2+
23
#include "async_wrap-inl.h"
3-
#include "async_wrap.h"
44
#include "debug_utils.h"
55
#include "node_buffer.h"
66
#include "node_errors.h"
77
#include "node_process.h"
8-
#include "util-inl.h"
98
#include "util.h"
109

1110
using v8::Array;

src/node_options.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
#include "node_options.h" // NOLINT(build/include_inline)
2+
#include "node_options-inl.h"
3+
14
#include "env-inl.h"
25
#include "node_binding.h"
3-
#include "node_options-inl.h"
46

57
#include <cstdlib> // strtoul, errno
68

0 commit comments

Comments
 (0)