-
Notifications
You must be signed in to change notification settings - Fork 50
/
amalgamate.py
151 lines (139 loc) · 5.34 KB
/
amalgamate.py
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
import re
from os.path import abspath, dirname
import sys
import subprocess
projdir = abspath(dirname(dirname(__file__)))
sys.path.insert(0, f"{projdir}/cmake")
import amalgamate_utils as am
def amalgamate_fastfloat():
fastfloatdir = f"{projdir}/src/c4/ext/fast_float"
subprocess.run([
sys.executable,
f"{fastfloatdir}/script/amalgamate.py",
"--license", "MIT",
"--output", f"{fastfloatdir}/../fast_float_all.h"
], cwd=fastfloatdir).check_returncode()
def amalgamate_c4core(filename: str,
with_stl: bool=True,
with_fastfloat: bool=True):
if with_fastfloat:
amalgamate_fastfloat()
repo = "https://github.com/biojppm/c4core"
defmacro = "C4CORE_SINGLE_HDR_DEFINE_NOW"
exports_def_code = f"""// shared library: export when defining
#if defined(C4CORE_SHARED) && defined({defmacro}) && !defined(C4CORE_EXPORTS)
#define C4CORE_EXPORTS
#endif
"""
required_gcc4_8_include = """// (amalgamate) these includes are needed to work around
// conditional includes in the gcc4.8 shim
#include <cstdint>
#include <type_traits>
#include <cstring>
"""
required_charconv_include = """// (amalgamate) this include is needed to work around
// conditional includes in charconv.hpp
#if (defined(_MSVC_LANG) && (_MSVC_LANG >= 201703L)) || (__cplusplus >= 201703L)
#include <charconv>
#endif
"""
srcblocks = [
am.cmttext(f"""
c4core - C++ utilities
{repo}
DO NOT EDIT. This file is generated automatically.
This is an amalgamated single-header version of the library.
INSTRUCTIONS:
- Include at will in any header of your project
- In one (and only one) of your project source files,
#define {defmacro} and then include this header.
This will enable the function and class definitions in
the header file.
- To compile into a shared library, just define the
preprocessor symbol C4CORE_SHARED . This will take
care of symbol export/import.
"""),
am.cmtfile("LICENSE.txt"),
am.injcode(exports_def_code),
"src/c4/export.hpp",
"src/c4/preprocessor.hpp",
"src/c4/platform.hpp",
"src/c4/cpu.hpp",
am.injcode(required_gcc4_8_include),
"src/c4/gcc-4.8.hpp",
"src/c4/compiler.hpp",
"src/c4/language.hpp",
"src/c4/types.hpp",
"src/c4/config.hpp",
am.hdrfile("src/c4/ext/debugbreak/debugbreak.h", "c4/ext/debugbreak/debugbreak.h", "DEBUG_BREAK_H"),
"src/c4/error.hpp",
"src/c4/memory_util.hpp",
"src/c4/memory_resource.hpp",
"src/c4/ctor_dtor.hpp",
"src/c4/allocator.hpp",
"src/c4/char_traits.hpp",
"src/c4/hash.hpp",
"src/c4/szconv.hpp",
"src/c4/blob.hpp",
"src/c4/substr_fwd.hpp",
"src/c4/substr.hpp",
am.onlyif(with_fastfloat, am.injfile("src/c4/ext/fast_float_all.h", "c4/ext/fast_float_all.h")),
am.onlyif(with_fastfloat, "src/c4/ext/fast_float.hpp"),
"src/c4/std/vector_fwd.hpp",
"src/c4/std/string_fwd.hpp",
"src/c4/std/std_fwd.hpp",
am.injcode(required_charconv_include),
"src/c4/charconv.hpp",
"src/c4/utf.hpp",
"src/c4/format.hpp",
"src/c4/dump.hpp",
"src/c4/enum.hpp",
"src/c4/bitmask.hpp",
"src/c4/span.hpp",
"src/c4/type_name.hpp",
"src/c4/base64.hpp",
am.onlyif(with_stl, am.ignfile("src/c4/std/std.hpp")), # this is an umbrella include
am.onlyif(with_stl, "src/c4/std/string.hpp"),
am.onlyif(with_stl, "src/c4/std/string_view.hpp"),
am.onlyif(with_stl, "src/c4/std/vector.hpp"),
am.onlyif(with_stl, "src/c4/std/tuple.hpp"),
"src/c4/ext/rng/rng.hpp",
"src/c4/ext/sg14/inplace_function.h",
am.ignfile("src/c4/common.hpp"),
am.ignfile("src/c4/c4_push.hpp"),
am.ignfile("src/c4/c4_pop.hpp"),
am.ignfile("src/c4/restrict.hpp"),
am.ignfile("src/c4/unrestrict.hpp"),
"src/c4/language.cpp",
"src/c4/format.cpp",
"src/c4/memory_util.cpp",
"src/c4/char_traits.cpp",
"src/c4/memory_resource.cpp",
"src/c4/utf.cpp",
"src/c4/base64.cpp",
am.injcode("#define C4_WINDOWS_POP_HPP_"),
"src/c4/windows_push.hpp",
"src/c4/windows.hpp",
"src/c4/windows_pop.hpp", # do NOT include this before windows.hpp
"src/c4/error.cpp",
]
result = am.catfiles(srcblocks,
projdir,
# comment out lines with these patterns:
include_regexes=[
re.compile(r'^\s*#\s*include "(c4/.*)".*$'),
re.compile(r'^\s*#\s*include <(c4/.*)>.*$'),
],
definition_macro=defmacro,
repo=repo,
result_incguard="_C4CORE_SINGLE_HEADER_AMALGAMATED_HPP_")
result_with_only_first_includes = am.include_only_first(result)
am.file_put_contents(filename, result_with_only_first_includes)
def mkparser():
return am.mkparser(fastfloat=(True, "enable fastfloat library"),
stl=(True, "enable stl interop"))
if __name__ == "__main__":
args = mkparser().parse_args()
amalgamate_c4core(filename=args.output,
with_fastfloat=args.fastfloat,
with_stl=args.stl)