scripts : use official split.py for cpp-httplib (#19588)
* scripts : use official split.py for cpp-httplib Using the official script is safer and ensures the generated code aligns with the library's standards. Signed-off-by: Adrien Gallouët <angt@huggingface.co> * Catch generic errors Signed-off-by: Adrien Gallouët <angt@huggingface.co> * Allow print() Signed-off-by: Adrien Gallouët <angt@huggingface.co> * Ensure robust cleanup Signed-off-by: Adrien Gallouët <angt@huggingface.co> --------- Signed-off-by: Adrien Gallouët <angt@huggingface.co>
This commit is contained in:
+18
-17
@@ -1,6 +1,9 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import urllib.request
|
import urllib.request
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import subprocess
|
||||||
|
|
||||||
HTTPLIB_VERSION = "f80864ca031932351abef49b74097c67f14719c6"
|
HTTPLIB_VERSION = "f80864ca031932351abef49b74097c67f14719c6"
|
||||||
|
|
||||||
@@ -14,7 +17,8 @@ vendor = {
|
|||||||
# "https://github.com/mackron/miniaudio/raw/refs/tags/0.11.23/miniaudio.h": "vendor/miniaudio/miniaudio.h",
|
# "https://github.com/mackron/miniaudio/raw/refs/tags/0.11.23/miniaudio.h": "vendor/miniaudio/miniaudio.h",
|
||||||
"https://github.com/mackron/miniaudio/raw/669ed3e844524fcd883231b13095baee9f6de304/miniaudio.h": "vendor/miniaudio/miniaudio.h",
|
"https://github.com/mackron/miniaudio/raw/669ed3e844524fcd883231b13095baee9f6de304/miniaudio.h": "vendor/miniaudio/miniaudio.h",
|
||||||
|
|
||||||
f"https://raw.githubusercontent.com/yhirose/cpp-httplib/{HTTPLIB_VERSION}/httplib.h": "vendor/cpp-httplib/httplib.h",
|
f"https://raw.githubusercontent.com/yhirose/cpp-httplib/{HTTPLIB_VERSION}/httplib.h": "httplib.h",
|
||||||
|
f"https://raw.githubusercontent.com/yhirose/cpp-httplib/{HTTPLIB_VERSION}/split.py": "split.py",
|
||||||
f"https://raw.githubusercontent.com/yhirose/cpp-httplib/{HTTPLIB_VERSION}/LICENSE": "vendor/cpp-httplib/LICENSE",
|
f"https://raw.githubusercontent.com/yhirose/cpp-httplib/{HTTPLIB_VERSION}/LICENSE": "vendor/cpp-httplib/LICENSE",
|
||||||
|
|
||||||
"https://raw.githubusercontent.com/sheredom/subprocess.h/b49c56e9fe214488493021017bf3954b91c7c1f5/subprocess.h": "vendor/sheredom/subprocess.h",
|
"https://raw.githubusercontent.com/sheredom/subprocess.h/b49c56e9fe214488493021017bf3954b91c7c1f5/subprocess.h": "vendor/sheredom/subprocess.h",
|
||||||
@@ -24,19 +28,16 @@ for url, filename in vendor.items():
|
|||||||
print(f"downloading {url} to {filename}") # noqa: NP100
|
print(f"downloading {url} to {filename}") # noqa: NP100
|
||||||
urllib.request.urlretrieve(url, filename)
|
urllib.request.urlretrieve(url, filename)
|
||||||
|
|
||||||
# split cpp/h files for httplib
|
print("Splitting httplib.h...") # noqa: NP100
|
||||||
# see: https://github.com/yhirose/cpp-httplib/blob/master/split.py
|
try:
|
||||||
if 'httplib.h' in filename:
|
subprocess.check_call([
|
||||||
border = '// ----------------------------------------------------------------------------'
|
sys.executable, "split.py",
|
||||||
with open(filename, 'r') as f:
|
"--extension", "cpp",
|
||||||
content = f.read()
|
"--out", "vendor/cpp-httplib"
|
||||||
header, implementation, footer = content.split(border, 2)
|
])
|
||||||
fname_cpp = filename.replace('.h', '.cpp')
|
except Exception as e:
|
||||||
with open(filename, 'w') as fh:
|
print(f"Error: {e}") # noqa: NP100
|
||||||
fh.write(header)
|
sys.exit(1)
|
||||||
fh.write(footer)
|
finally:
|
||||||
with open(fname_cpp, 'w') as fc:
|
os.remove("split.py")
|
||||||
fc.write('#include "httplib.h"\n')
|
os.remove("httplib.h")
|
||||||
fc.write('namespace httplib {\n')
|
|
||||||
fc.write(implementation.replace('\ninline ', '\n'))
|
|
||||||
fc.write('} // namespace httplib\n')
|
|
||||||
|
|||||||
Vendored
+1
-2
@@ -1,7 +1,6 @@
|
|||||||
#include "httplib.h"
|
#include "httplib.h"
|
||||||
namespace httplib {
|
namespace httplib {
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Implementation that will be part of the .cc file if split into .h + .cc.
|
* Implementation that will be part of the .cc file if split into .h + .cc.
|
||||||
*/
|
*/
|
||||||
@@ -1219,7 +1218,7 @@ int close_socket(socket_t sock) {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T> inline ssize_t handle_EINTR(T fn) {
|
template <typename T> ssize_t handle_EINTR(T fn) {
|
||||||
ssize_t res = 0;
|
ssize_t res = 0;
|
||||||
while (true) {
|
while (true) {
|
||||||
res = fn();
|
res = fn();
|
||||||
|
|||||||
Vendored
-1
@@ -3336,7 +3336,6 @@ private:
|
|||||||
} // namespace sse
|
} // namespace sse
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} // namespace httplib
|
} // namespace httplib
|
||||||
|
|
||||||
#endif // CPPHTTPLIB_HTTPLIB_H
|
#endif // CPPHTTPLIB_HTTPLIB_H
|
||||||
|
|||||||
Reference in New Issue
Block a user