itsi-scheduler 0.1.11 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CODE_OF_CONDUCT.md +7 -0
- data/Cargo.lock +75 -14
- data/README.md +5 -0
- data/_index.md +7 -0
- data/ext/itsi_error/src/lib.rs +9 -0
- data/ext/itsi_error/target/debug/build/clang-sys-da71b0344e568175/out/common.rs +355 -0
- data/ext/itsi_error/target/debug/build/clang-sys-da71b0344e568175/out/dynamic.rs +276 -0
- data/ext/itsi_error/target/debug/build/clang-sys-da71b0344e568175/out/macros.rs +49 -0
- data/ext/itsi_error/target/debug/build/rb-sys-49f554618693db24/out/bindings-0.9.110-mri-arm64-darwin23-3.4.2.rs +8865 -0
- data/ext/itsi_error/target/debug/incremental/itsi_error-1mmt5sux7jb0i/s-h510z7m8v9-0bxu7yd.lock +0 -0
- data/ext/itsi_error/target/debug/incremental/itsi_error-2vn3jey74oiw0/s-h5113n0e7e-1v5qzs6.lock +0 -0
- data/ext/itsi_error/target/debug/incremental/itsi_error-37uv9dicz7awp/s-h510ykifhe-0tbnep2.lock +0 -0
- data/ext/itsi_error/target/debug/incremental/itsi_error-37uv9dicz7awp/s-h510yyocpj-0tz7ug7.lock +0 -0
- data/ext/itsi_error/target/debug/incremental/itsi_error-37uv9dicz7awp/s-h510z0xc8g-14ol18k.lock +0 -0
- data/ext/itsi_error/target/debug/incremental/itsi_error-3g5qf4y7d54uj/s-h5113n0e7d-1trk8on.lock +0 -0
- data/ext/itsi_error/target/debug/incremental/itsi_error-3lpfftm45d3e2/s-h510z7m8r3-1pxp20o.lock +0 -0
- data/ext/itsi_error/target/debug/incremental/itsi_error-3o4qownhl3d7n/s-h510ykifek-1uxasnk.lock +0 -0
- data/ext/itsi_error/target/debug/incremental/itsi_error-3o4qownhl3d7n/s-h510yyocki-11u37qm.lock +0 -0
- data/ext/itsi_error/target/debug/incremental/itsi_error-3o4qownhl3d7n/s-h510z0xc93-0pmy0zm.lock +0 -0
- data/ext/itsi_rb_helpers/Cargo.toml +1 -0
- data/ext/itsi_rb_helpers/src/heap_value.rs +18 -0
- data/ext/itsi_rb_helpers/src/lib.rs +34 -7
- data/ext/itsi_rb_helpers/target/debug/build/clang-sys-da71b0344e568175/out/common.rs +355 -0
- data/ext/itsi_rb_helpers/target/debug/build/clang-sys-da71b0344e568175/out/dynamic.rs +276 -0
- data/ext/itsi_rb_helpers/target/debug/build/clang-sys-da71b0344e568175/out/macros.rs +49 -0
- data/ext/itsi_rb_helpers/target/debug/build/rb-sys-eb9ed4ff3a60f995/out/bindings-0.9.110-mri-arm64-darwin23-3.4.2.rs +8865 -0
- data/ext/itsi_rb_helpers/target/debug/incremental/itsi_rb_helpers-040pxg6yhb3g3/s-h5113n7a1b-03bwlt4.lock +0 -0
- data/ext/itsi_rb_helpers/target/debug/incremental/itsi_rb_helpers-131g1u4dzkt1a/s-h51113xnh3-1eik1ip.lock +0 -0
- data/ext/itsi_rb_helpers/target/debug/incremental/itsi_rb_helpers-131g1u4dzkt1a/s-h5111704jj-0g4rj8x.lock +0 -0
- data/ext/itsi_rb_helpers/target/debug/incremental/itsi_rb_helpers-1q2d3drtxrzs5/s-h5113n79yl-0bxcqc5.lock +0 -0
- data/ext/itsi_rb_helpers/target/debug/incremental/itsi_rb_helpers-374a9h7ovycj0/s-h51113xoox-10de2hp.lock +0 -0
- data/ext/itsi_rb_helpers/target/debug/incremental/itsi_rb_helpers-374a9h7ovycj0/s-h5111704w7-0vdq7gq.lock +0 -0
- data/ext/itsi_server/Cargo.toml +69 -30
- data/ext/itsi_server/src/lib.rs +79 -147
- data/ext/itsi_server/src/{body_proxy → ruby_types/itsi_body_proxy}/big_bytes.rs +10 -5
- data/ext/itsi_server/src/{body_proxy/itsi_body_proxy.rs → ruby_types/itsi_body_proxy/mod.rs} +22 -3
- data/ext/itsi_server/src/ruby_types/itsi_grpc_request.rs +147 -0
- data/ext/itsi_server/src/ruby_types/itsi_grpc_response.rs +19 -0
- data/ext/itsi_server/src/ruby_types/itsi_grpc_stream/mod.rs +216 -0
- data/ext/itsi_server/src/{request/itsi_request.rs → ruby_types/itsi_http_request.rs} +101 -117
- data/ext/itsi_server/src/{response/itsi_response.rs → ruby_types/itsi_http_response.rs} +72 -41
- data/ext/itsi_server/src/ruby_types/itsi_server/file_watcher.rs +225 -0
- data/ext/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +355 -0
- data/ext/itsi_server/src/ruby_types/itsi_server.rs +82 -0
- data/ext/itsi_server/src/ruby_types/mod.rs +55 -0
- data/ext/itsi_server/src/server/bind.rs +13 -5
- data/ext/itsi_server/src/server/byte_frame.rs +32 -0
- data/ext/itsi_server/src/server/cache_store.rs +74 -0
- data/ext/itsi_server/src/server/itsi_service.rs +172 -0
- data/ext/itsi_server/src/server/lifecycle_event.rs +3 -0
- data/ext/itsi_server/src/server/listener.rs +102 -2
- data/ext/itsi_server/src/server/middleware_stack/middleware.rs +153 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/allow_list.rs +47 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/auth_api_key.rs +58 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/auth_basic.rs +82 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/auth_jwt.rs +321 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/cache_control.rs +139 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/compression.rs +300 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/cors.rs +287 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/deny_list.rs +48 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/error_response.rs +127 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/etag.rs +191 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/grpc_service.rs +72 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/header_interpretation.rs +85 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/intrusion_protection.rs +195 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/log_requests.rs +82 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/mod.rs +82 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/proxy.rs +216 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/rate_limit.rs +124 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/redirect.rs +76 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/request_headers.rs +43 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/response_headers.rs +34 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/ruby_app.rs +93 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/static_assets.rs +162 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/string_rewrite.rs +158 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/token_source.rs +12 -0
- data/ext/itsi_server/src/server/middleware_stack/mod.rs +315 -0
- data/ext/itsi_server/src/server/mod.rs +8 -1
- data/ext/itsi_server/src/server/process_worker.rs +38 -12
- data/ext/itsi_server/src/server/rate_limiter.rs +565 -0
- data/ext/itsi_server/src/server/request_job.rs +11 -0
- data/ext/itsi_server/src/server/serve_strategy/cluster_mode.rs +119 -42
- data/ext/itsi_server/src/server/serve_strategy/mod.rs +9 -6
- data/ext/itsi_server/src/server/serve_strategy/single_mode.rs +256 -111
- data/ext/itsi_server/src/server/signal.rs +19 -0
- data/ext/itsi_server/src/server/static_file_server.rs +984 -0
- data/ext/itsi_server/src/server/thread_worker.rs +139 -94
- data/ext/itsi_server/src/server/types.rs +43 -0
- data/ext/itsi_tracing/Cargo.toml +1 -0
- data/ext/itsi_tracing/src/lib.rs +216 -45
- data/ext/itsi_tracing/target/debug/incremental/itsi_tracing-0994n8rpvvt9m/s-h510hfz1f6-1kbycmq.lock +0 -0
- data/ext/itsi_tracing/target/debug/incremental/itsi_tracing-0bob7bf4yq34i/s-h5113125h5-0lh4rag.lock +0 -0
- data/ext/itsi_tracing/target/debug/incremental/itsi_tracing-2fcodulrxbbxo/s-h510h2infk-0hp5kjw.lock +0 -0
- data/ext/itsi_tracing/target/debug/incremental/itsi_tracing-2iak63r1woi1l/s-h510h2in4q-0kxfzw1.lock +0 -0
- data/ext/itsi_tracing/target/debug/incremental/itsi_tracing-2kk4qj9gn5dg2/s-h5113124kv-0enwon2.lock +0 -0
- data/ext/itsi_tracing/target/debug/incremental/itsi_tracing-2mwo0yas7dtw4/s-h510hfz1ha-1udgpei.lock +0 -0
- data/lib/itsi/scheduler/version.rb +1 -1
- data/lib/itsi/scheduler.rb +2 -2
- metadata +77 -12
- data/ext/itsi_server/extconf.rb +0 -6
- data/ext/itsi_server/src/body_proxy/mod.rs +0 -2
- data/ext/itsi_server/src/request/mod.rs +0 -1
- data/ext/itsi_server/src/response/mod.rs +0 -1
- data/ext/itsi_server/src/server/itsi_server.rs +0 -288
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70ad8d24f416190cfcb06c3bafe601fd92b789d082cb4bccce43d8de390a7446
|
4
|
+
data.tar.gz: 072f93eeec214fed7eab981eee6ad1c28fbf59daba54a780fdbfb6edf89e511d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67206a93d80348b9e013a049c24ed9e0509181acd0baa6aefd72c2b3f2f9ed56bc81042ec7414462ab260de2f4d7de9bc8d1378d48ae53366f7712b3f24d4c95
|
7
|
+
data.tar.gz: fb68b6071da86005b2d3f71d46b53c7e12b0e88555f54ad36078137464dd45294da7231530ccf6b5dc450621ed5202723f68a5d66e593a821f8ca1dfda8530ca
|
data/CODE_OF_CONDUCT.md
CHANGED
data/Cargo.lock
CHANGED
@@ -107,6 +107,21 @@ dependencies = [
|
|
107
107
|
"libloading",
|
108
108
|
]
|
109
109
|
|
110
|
+
[[package]]
|
111
|
+
name = "crossbeam-channel"
|
112
|
+
version = "0.5.14"
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
114
|
+
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
|
115
|
+
dependencies = [
|
116
|
+
"crossbeam-utils",
|
117
|
+
]
|
118
|
+
|
119
|
+
[[package]]
|
120
|
+
name = "crossbeam-utils"
|
121
|
+
version = "0.8.21"
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
123
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
124
|
+
|
110
125
|
[[package]]
|
111
126
|
name = "deranged"
|
112
127
|
version = "0.3.11"
|
@@ -139,9 +154,9 @@ dependencies = [
|
|
139
154
|
|
140
155
|
[[package]]
|
141
156
|
name = "either"
|
142
|
-
version = "1.
|
157
|
+
version = "1.15.0"
|
143
158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
144
|
-
checksum = "
|
159
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
145
160
|
|
146
161
|
[[package]]
|
147
162
|
name = "getrandom"
|
@@ -216,7 +231,7 @@ dependencies = [
|
|
216
231
|
"magnus",
|
217
232
|
"nix",
|
218
233
|
"rcgen",
|
219
|
-
"thiserror",
|
234
|
+
"thiserror 2.0.12",
|
220
235
|
]
|
221
236
|
|
222
237
|
[[package]]
|
@@ -236,6 +251,7 @@ dependencies = [
|
|
236
251
|
"magnus",
|
237
252
|
"nix",
|
238
253
|
"rb-sys",
|
254
|
+
"serde",
|
239
255
|
]
|
240
256
|
|
241
257
|
[[package]]
|
@@ -244,6 +260,7 @@ version = "0.1.0"
|
|
244
260
|
dependencies = [
|
245
261
|
"atty",
|
246
262
|
"tracing",
|
263
|
+
"tracing-appender",
|
247
264
|
"tracing-attributes",
|
248
265
|
"tracing-subscriber",
|
249
266
|
]
|
@@ -604,18 +621,18 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
604
621
|
|
605
622
|
[[package]]
|
606
623
|
name = "serde"
|
607
|
-
version = "1.0.
|
624
|
+
version = "1.0.219"
|
608
625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
|
-
checksum = "
|
626
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
610
627
|
dependencies = [
|
611
628
|
"serde_derive",
|
612
629
|
]
|
613
630
|
|
614
631
|
[[package]]
|
615
632
|
name = "serde_derive"
|
616
|
-
version = "1.0.
|
633
|
+
version = "1.0.219"
|
617
634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
618
|
-
checksum = "
|
635
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
619
636
|
dependencies = [
|
620
637
|
"proc-macro2",
|
621
638
|
"quote",
|
@@ -624,9 +641,9 @@ dependencies = [
|
|
624
641
|
|
625
642
|
[[package]]
|
626
643
|
name = "serde_json"
|
627
|
-
version = "1.0.
|
644
|
+
version = "1.0.140"
|
628
645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
629
|
-
checksum = "
|
646
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
630
647
|
dependencies = [
|
631
648
|
"itoa",
|
632
649
|
"memchr",
|
@@ -685,18 +702,38 @@ dependencies = [
|
|
685
702
|
|
686
703
|
[[package]]
|
687
704
|
name = "thiserror"
|
688
|
-
version = "
|
705
|
+
version = "1.0.69"
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
707
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
708
|
+
dependencies = [
|
709
|
+
"thiserror-impl 1.0.69",
|
710
|
+
]
|
711
|
+
|
712
|
+
[[package]]
|
713
|
+
name = "thiserror"
|
714
|
+
version = "2.0.12"
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
717
|
+
dependencies = [
|
718
|
+
"thiserror-impl 2.0.12",
|
719
|
+
]
|
720
|
+
|
721
|
+
[[package]]
|
722
|
+
name = "thiserror-impl"
|
723
|
+
version = "1.0.69"
|
689
724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
690
|
-
checksum = "
|
725
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
691
726
|
dependencies = [
|
692
|
-
"
|
727
|
+
"proc-macro2",
|
728
|
+
"quote",
|
729
|
+
"syn 2.0.98",
|
693
730
|
]
|
694
731
|
|
695
732
|
[[package]]
|
696
733
|
name = "thiserror-impl"
|
697
|
-
version = "2.0.
|
734
|
+
version = "2.0.12"
|
698
735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
699
|
-
checksum = "
|
736
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
700
737
|
dependencies = [
|
701
738
|
"proc-macro2",
|
702
739
|
"quote",
|
@@ -720,10 +757,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
757
|
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
|
721
758
|
dependencies = [
|
722
759
|
"deranged",
|
760
|
+
"itoa",
|
723
761
|
"num-conv",
|
724
762
|
"powerfmt",
|
725
763
|
"serde",
|
726
764
|
"time-core",
|
765
|
+
"time-macros",
|
727
766
|
]
|
728
767
|
|
729
768
|
[[package]]
|
@@ -732,6 +771,16 @@ version = "0.1.2"
|
|
732
771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
733
772
|
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
734
773
|
|
774
|
+
[[package]]
|
775
|
+
name = "time-macros"
|
776
|
+
version = "0.2.19"
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
778
|
+
checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
|
779
|
+
dependencies = [
|
780
|
+
"num-conv",
|
781
|
+
"time-core",
|
782
|
+
]
|
783
|
+
|
735
784
|
[[package]]
|
736
785
|
name = "tracing"
|
737
786
|
version = "0.1.41"
|
@@ -743,6 +792,18 @@ dependencies = [
|
|
743
792
|
"tracing-core",
|
744
793
|
]
|
745
794
|
|
795
|
+
[[package]]
|
796
|
+
name = "tracing-appender"
|
797
|
+
version = "0.2.3"
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
799
|
+
checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf"
|
800
|
+
dependencies = [
|
801
|
+
"crossbeam-channel",
|
802
|
+
"thiserror 1.0.69",
|
803
|
+
"time",
|
804
|
+
"tracing-subscriber",
|
805
|
+
]
|
806
|
+
|
746
807
|
[[package]]
|
747
808
|
name = "tracing-attributes"
|
748
809
|
version = "0.1.28"
|
data/README.md
CHANGED
data/_index.md
ADDED
data/ext/itsi_error/src/lib.rs
CHANGED
@@ -22,3 +22,12 @@ pub enum ItsiError {
|
|
22
22
|
#[error("Pass")]
|
23
23
|
Pass(),
|
24
24
|
}
|
25
|
+
|
26
|
+
impl ItsiError {
|
27
|
+
pub fn default(error: impl Send + Sync + 'static + std::fmt::Display) -> Self {
|
28
|
+
ItsiError::InvalidInput(format!("{}", error))
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
unsafe impl Send for ItsiError {}
|
33
|
+
unsafe impl Sync for ItsiError {}
|
@@ -0,0 +1,355 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
|
3
|
+
use std::cell::RefCell;
|
4
|
+
use std::collections::HashMap;
|
5
|
+
use std::env;
|
6
|
+
use std::path::{Path, PathBuf};
|
7
|
+
use std::process::Command;
|
8
|
+
|
9
|
+
use glob::{MatchOptions, Pattern};
|
10
|
+
|
11
|
+
//================================================
|
12
|
+
// Commands
|
13
|
+
//================================================
|
14
|
+
|
15
|
+
thread_local! {
|
16
|
+
/// The errors encountered by the build script while executing commands.
|
17
|
+
static COMMAND_ERRORS: RefCell<HashMap<String, Vec<String>>> = RefCell::default();
|
18
|
+
}
|
19
|
+
|
20
|
+
/// Adds an error encountered by the build script while executing a command.
|
21
|
+
fn add_command_error(name: &str, path: &str, arguments: &[&str], message: String) {
|
22
|
+
COMMAND_ERRORS.with(|e| {
|
23
|
+
e.borrow_mut()
|
24
|
+
.entry(name.into())
|
25
|
+
.or_default()
|
26
|
+
.push(format!(
|
27
|
+
"couldn't execute `{} {}` (path={}) ({})",
|
28
|
+
name,
|
29
|
+
arguments.join(" "),
|
30
|
+
path,
|
31
|
+
message,
|
32
|
+
))
|
33
|
+
});
|
34
|
+
}
|
35
|
+
|
36
|
+
/// A struct that prints the errors encountered by the build script while
|
37
|
+
/// executing commands when dropped (unless explictly discarded).
|
38
|
+
///
|
39
|
+
/// This is handy because we only want to print these errors when the build
|
40
|
+
/// script fails to link to an instance of `libclang`. For example, if
|
41
|
+
/// `llvm-config` couldn't be executed but an instance of `libclang` was found
|
42
|
+
/// anyway we don't want to pollute the build output with irrelevant errors.
|
43
|
+
#[derive(Default)]
|
44
|
+
pub struct CommandErrorPrinter {
|
45
|
+
discard: bool,
|
46
|
+
}
|
47
|
+
|
48
|
+
impl CommandErrorPrinter {
|
49
|
+
pub fn discard(mut self) {
|
50
|
+
self.discard = true;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
impl Drop for CommandErrorPrinter {
|
55
|
+
fn drop(&mut self) {
|
56
|
+
if self.discard {
|
57
|
+
return;
|
58
|
+
}
|
59
|
+
|
60
|
+
let errors = COMMAND_ERRORS.with(|e| e.borrow().clone());
|
61
|
+
|
62
|
+
if let Some(errors) = errors.get("llvm-config") {
|
63
|
+
println!(
|
64
|
+
"cargo:warning=could not execute `llvm-config` one or more \
|
65
|
+
times, if the LLVM_CONFIG_PATH environment variable is set to \
|
66
|
+
a full path to valid `llvm-config` executable it will be used \
|
67
|
+
to try to find an instance of `libclang` on your system: {}",
|
68
|
+
errors
|
69
|
+
.iter()
|
70
|
+
.map(|e| format!("\"{}\"", e))
|
71
|
+
.collect::<Vec<_>>()
|
72
|
+
.join("\n "),
|
73
|
+
)
|
74
|
+
}
|
75
|
+
|
76
|
+
if let Some(errors) = errors.get("xcode-select") {
|
77
|
+
println!(
|
78
|
+
"cargo:warning=could not execute `xcode-select` one or more \
|
79
|
+
times, if a valid instance of this executable is on your PATH \
|
80
|
+
it will be used to try to find an instance of `libclang` on \
|
81
|
+
your system: {}",
|
82
|
+
errors
|
83
|
+
.iter()
|
84
|
+
.map(|e| format!("\"{}\"", e))
|
85
|
+
.collect::<Vec<_>>()
|
86
|
+
.join("\n "),
|
87
|
+
)
|
88
|
+
}
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
#[cfg(test)]
|
93
|
+
lazy_static::lazy_static! {
|
94
|
+
pub static ref RUN_COMMAND_MOCK: std::sync::Mutex<
|
95
|
+
Option<Box<dyn Fn(&str, &str, &[&str]) -> Option<String> + Send + Sync + 'static>>,
|
96
|
+
> = std::sync::Mutex::new(None);
|
97
|
+
}
|
98
|
+
|
99
|
+
/// Executes a command and returns the `stdout` output if the command was
|
100
|
+
/// successfully executed (errors are added to `COMMAND_ERRORS`).
|
101
|
+
fn run_command(name: &str, path: &str, arguments: &[&str]) -> Option<String> {
|
102
|
+
#[cfg(test)]
|
103
|
+
if let Some(command) = &*RUN_COMMAND_MOCK.lock().unwrap() {
|
104
|
+
return command(name, path, arguments);
|
105
|
+
}
|
106
|
+
|
107
|
+
let output = match Command::new(path).args(arguments).output() {
|
108
|
+
Ok(output) => output,
|
109
|
+
Err(error) => {
|
110
|
+
let message = format!("error: {}", error);
|
111
|
+
add_command_error(name, path, arguments, message);
|
112
|
+
return None;
|
113
|
+
}
|
114
|
+
};
|
115
|
+
|
116
|
+
if output.status.success() {
|
117
|
+
Some(String::from_utf8_lossy(&output.stdout).into_owned())
|
118
|
+
} else {
|
119
|
+
let message = format!("exit code: {}", output.status);
|
120
|
+
add_command_error(name, path, arguments, message);
|
121
|
+
None
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
/// Executes the `llvm-config` command and returns the `stdout` output if the
|
126
|
+
/// command was successfully executed (errors are added to `COMMAND_ERRORS`).
|
127
|
+
pub fn run_llvm_config(arguments: &[&str]) -> Option<String> {
|
128
|
+
let path = env::var("LLVM_CONFIG_PATH").unwrap_or_else(|_| "llvm-config".into());
|
129
|
+
run_command("llvm-config", &path, arguments)
|
130
|
+
}
|
131
|
+
|
132
|
+
/// Executes the `xcode-select` command and returns the `stdout` output if the
|
133
|
+
/// command was successfully executed (errors are added to `COMMAND_ERRORS`).
|
134
|
+
pub fn run_xcode_select(arguments: &[&str]) -> Option<String> {
|
135
|
+
run_command("xcode-select", "xcode-select", arguments)
|
136
|
+
}
|
137
|
+
|
138
|
+
//================================================
|
139
|
+
// Search Directories
|
140
|
+
//================================================
|
141
|
+
// These search directories are listed in order of
|
142
|
+
// preference, so if multiple `libclang` instances
|
143
|
+
// are found when searching matching directories,
|
144
|
+
// the `libclang` instances from earlier
|
145
|
+
// directories will be preferred (though version
|
146
|
+
// takes precedence over location).
|
147
|
+
//================================================
|
148
|
+
|
149
|
+
/// `libclang` directory patterns for Haiku.
|
150
|
+
const DIRECTORIES_HAIKU: &[&str] = &[
|
151
|
+
"/boot/home/config/non-packaged/develop/lib",
|
152
|
+
"/boot/home/config/non-packaged/lib",
|
153
|
+
"/boot/system/non-packaged/develop/lib",
|
154
|
+
"/boot/system/non-packaged/lib",
|
155
|
+
"/boot/system/develop/lib",
|
156
|
+
"/boot/system/lib",
|
157
|
+
];
|
158
|
+
|
159
|
+
/// `libclang` directory patterns for Linux (and FreeBSD).
|
160
|
+
const DIRECTORIES_LINUX: &[&str] = &[
|
161
|
+
"/usr/local/llvm*/lib*",
|
162
|
+
"/usr/local/lib*/*/*",
|
163
|
+
"/usr/local/lib*/*",
|
164
|
+
"/usr/local/lib*",
|
165
|
+
"/usr/lib*/*/*",
|
166
|
+
"/usr/lib*/*",
|
167
|
+
"/usr/lib*",
|
168
|
+
];
|
169
|
+
|
170
|
+
/// `libclang` directory patterns for macOS.
|
171
|
+
const DIRECTORIES_MACOS: &[&str] = &[
|
172
|
+
"/usr/local/opt/llvm*/lib/llvm*/lib",
|
173
|
+
"/Library/Developer/CommandLineTools/usr/lib",
|
174
|
+
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib",
|
175
|
+
"/usr/local/opt/llvm*/lib",
|
176
|
+
];
|
177
|
+
|
178
|
+
/// `libclang` directory patterns for Windows.
|
179
|
+
///
|
180
|
+
/// The boolean indicates whether the directory pattern should be used when
|
181
|
+
/// compiling for an MSVC target environment.
|
182
|
+
const DIRECTORIES_WINDOWS: &[(&str, bool)] = &[
|
183
|
+
// LLVM + Clang can be installed using Scoop (https://scoop.sh).
|
184
|
+
// Other Windows package managers install LLVM + Clang to other listed
|
185
|
+
// system-wide directories.
|
186
|
+
("C:\\Users\\*\\scoop\\apps\\llvm\\current\\lib", true),
|
187
|
+
("C:\\MSYS*\\MinGW*\\lib", false),
|
188
|
+
("C:\\Program Files*\\LLVM\\lib", true),
|
189
|
+
("C:\\LLVM\\lib", true),
|
190
|
+
// LLVM + Clang can be installed as a component of Visual Studio.
|
191
|
+
// https://github.com/KyleMayes/clang-sys/issues/121
|
192
|
+
("C:\\Program Files*\\Microsoft Visual Studio\\*\\VC\\Tools\\Llvm\\**\\lib", true),
|
193
|
+
];
|
194
|
+
|
195
|
+
/// `libclang` directory patterns for illumos
|
196
|
+
const DIRECTORIES_ILLUMOS: &[&str] = &[
|
197
|
+
"/opt/ooce/llvm-*/lib",
|
198
|
+
"/opt/ooce/clang-*/lib",
|
199
|
+
];
|
200
|
+
|
201
|
+
//================================================
|
202
|
+
// Searching
|
203
|
+
//================================================
|
204
|
+
|
205
|
+
/// Finds the files in a directory that match one or more filename glob patterns
|
206
|
+
/// and returns the paths to and filenames of those files.
|
207
|
+
fn search_directory(directory: &Path, filenames: &[String]) -> Vec<(PathBuf, String)> {
|
208
|
+
// Escape the specified directory in case it contains characters that have
|
209
|
+
// special meaning in glob patterns (e.g., `[` or `]`).
|
210
|
+
let directory = Pattern::escape(directory.to_str().unwrap());
|
211
|
+
let directory = Path::new(&directory);
|
212
|
+
|
213
|
+
// Join the escaped directory to the filename glob patterns to obtain
|
214
|
+
// complete glob patterns for the files being searched for.
|
215
|
+
let paths = filenames
|
216
|
+
.iter()
|
217
|
+
.map(|f| directory.join(f).to_str().unwrap().to_owned());
|
218
|
+
|
219
|
+
// Prevent wildcards from matching path separators to ensure that the search
|
220
|
+
// is limited to the specified directory.
|
221
|
+
let mut options = MatchOptions::new();
|
222
|
+
options.require_literal_separator = true;
|
223
|
+
|
224
|
+
paths
|
225
|
+
.map(|p| glob::glob_with(&p, options))
|
226
|
+
.filter_map(Result::ok)
|
227
|
+
.flatten()
|
228
|
+
.filter_map(|p| {
|
229
|
+
let path = p.ok()?;
|
230
|
+
let filename = path.file_name()?.to_str().unwrap();
|
231
|
+
|
232
|
+
// The `libclang_shared` library has been renamed to `libclang-cpp`
|
233
|
+
// in Clang 10. This can cause instances of this library (e.g.,
|
234
|
+
// `libclang-cpp.so.10`) to be matched by patterns looking for
|
235
|
+
// instances of `libclang`.
|
236
|
+
if filename.contains("-cpp.") {
|
237
|
+
return None;
|
238
|
+
}
|
239
|
+
|
240
|
+
Some((path.parent().unwrap().to_owned(), filename.into()))
|
241
|
+
})
|
242
|
+
.collect::<Vec<_>>()
|
243
|
+
}
|
244
|
+
|
245
|
+
/// Finds the files in a directory (and any relevant sibling directories) that
|
246
|
+
/// match one or more filename glob patterns and returns the paths to and
|
247
|
+
/// filenames of those files.
|
248
|
+
fn search_directories(directory: &Path, filenames: &[String]) -> Vec<(PathBuf, String)> {
|
249
|
+
let mut results = search_directory(directory, filenames);
|
250
|
+
|
251
|
+
// On Windows, `libclang.dll` is usually found in the LLVM `bin` directory
|
252
|
+
// while `libclang.lib` is usually found in the LLVM `lib` directory. To
|
253
|
+
// keep things consistent with other platforms, only LLVM `lib` directories
|
254
|
+
// are included in the backup search directory globs so we need to search
|
255
|
+
// the LLVM `bin` directory here.
|
256
|
+
if target_os!("windows") && directory.ends_with("lib") {
|
257
|
+
let sibling = directory.parent().unwrap().join("bin");
|
258
|
+
results.extend(search_directory(&sibling, filenames));
|
259
|
+
}
|
260
|
+
|
261
|
+
results
|
262
|
+
}
|
263
|
+
|
264
|
+
/// Finds the `libclang` static or dynamic libraries matching one or more
|
265
|
+
/// filename glob patterns and returns the paths to and filenames of those files.
|
266
|
+
pub fn search_libclang_directories(filenames: &[String], variable: &str) -> Vec<(PathBuf, String)> {
|
267
|
+
// Search only the path indicated by the relevant environment variable
|
268
|
+
// (e.g., `LIBCLANG_PATH`) if it is set.
|
269
|
+
if let Ok(path) = env::var(variable).map(|d| Path::new(&d).to_path_buf()) {
|
270
|
+
// Check if the path is a matching file.
|
271
|
+
if let Some(parent) = path.parent() {
|
272
|
+
let filename = path.file_name().unwrap().to_str().unwrap();
|
273
|
+
let libraries = search_directories(parent, filenames);
|
274
|
+
if libraries.iter().any(|(_, f)| f == filename) {
|
275
|
+
return vec![(parent.into(), filename.into())];
|
276
|
+
}
|
277
|
+
}
|
278
|
+
|
279
|
+
// Check if the path is directory containing a matching file.
|
280
|
+
return search_directories(&path, filenames);
|
281
|
+
}
|
282
|
+
|
283
|
+
let mut found = vec![];
|
284
|
+
|
285
|
+
// Search the `bin` and `lib` directories in the directory returned by
|
286
|
+
// `llvm-config --prefix`.
|
287
|
+
if let Some(output) = run_llvm_config(&["--prefix"]) {
|
288
|
+
let directory = Path::new(output.lines().next().unwrap()).to_path_buf();
|
289
|
+
found.extend(search_directories(&directory.join("bin"), filenames));
|
290
|
+
found.extend(search_directories(&directory.join("lib"), filenames));
|
291
|
+
found.extend(search_directories(&directory.join("lib64"), filenames));
|
292
|
+
}
|
293
|
+
|
294
|
+
// Search the toolchain directory in the directory returned by
|
295
|
+
// `xcode-select --print-path`.
|
296
|
+
if target_os!("macos") {
|
297
|
+
if let Some(output) = run_xcode_select(&["--print-path"]) {
|
298
|
+
let directory = Path::new(output.lines().next().unwrap()).to_path_buf();
|
299
|
+
let directory = directory.join("Toolchains/XcodeDefault.xctoolchain/usr/lib");
|
300
|
+
found.extend(search_directories(&directory, filenames));
|
301
|
+
}
|
302
|
+
}
|
303
|
+
|
304
|
+
// Search the directories in the `LD_LIBRARY_PATH` environment variable.
|
305
|
+
if let Ok(path) = env::var("LD_LIBRARY_PATH") {
|
306
|
+
for directory in env::split_paths(&path) {
|
307
|
+
found.extend(search_directories(&directory, filenames));
|
308
|
+
}
|
309
|
+
}
|
310
|
+
|
311
|
+
// Determine the `libclang` directory patterns.
|
312
|
+
let directories: Vec<&str> = if target_os!("haiku") {
|
313
|
+
DIRECTORIES_HAIKU.into()
|
314
|
+
} else if target_os!("linux") || target_os!("freebsd") {
|
315
|
+
DIRECTORIES_LINUX.into()
|
316
|
+
} else if target_os!("macos") {
|
317
|
+
DIRECTORIES_MACOS.into()
|
318
|
+
} else if target_os!("windows") {
|
319
|
+
let msvc = target_env!("msvc");
|
320
|
+
DIRECTORIES_WINDOWS
|
321
|
+
.iter()
|
322
|
+
.filter(|d| d.1 || !msvc)
|
323
|
+
.map(|d| d.0)
|
324
|
+
.collect()
|
325
|
+
} else if target_os!("illumos") {
|
326
|
+
DIRECTORIES_ILLUMOS.into()
|
327
|
+
} else {
|
328
|
+
vec![]
|
329
|
+
};
|
330
|
+
|
331
|
+
// We use temporary directories when testing the build script so we'll
|
332
|
+
// remove the prefixes that make the directories absolute.
|
333
|
+
let directories = if test!() {
|
334
|
+
directories
|
335
|
+
.iter()
|
336
|
+
.map(|d| d.strip_prefix('/').or_else(|| d.strip_prefix("C:\\")).unwrap_or(d))
|
337
|
+
.collect::<Vec<_>>()
|
338
|
+
} else {
|
339
|
+
directories
|
340
|
+
};
|
341
|
+
|
342
|
+
// Search the directories provided by the `libclang` directory patterns.
|
343
|
+
let mut options = MatchOptions::new();
|
344
|
+
options.case_sensitive = false;
|
345
|
+
options.require_literal_separator = true;
|
346
|
+
for directory in directories.iter() {
|
347
|
+
if let Ok(directories) = glob::glob_with(directory, options) {
|
348
|
+
for directory in directories.filter_map(Result::ok).filter(|p| p.is_dir()) {
|
349
|
+
found.extend(search_directories(&directory, filenames));
|
350
|
+
}
|
351
|
+
}
|
352
|
+
}
|
353
|
+
|
354
|
+
found
|
355
|
+
}
|