-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
### What changes were proposed in this pull request? Implement a common filesystem layer to handle manage file ids, file name mappings, and file relationships. and delegate filesystem APIs to PathFilesystem. ### Why are the changes needed? Fix: #5877 ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Uts
- Loading branch information
Showing
12 changed files
with
969 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
.EXPORT_ALL_VARIABLES: | ||
|
||
.PHONY: build | ||
build: | ||
cargo build --all-features --workspace | ||
|
||
fmt: | ||
cargo fmt --all | ||
|
||
cargo-sort: install-cargo-sort | ||
cargo sort -w | ||
|
||
fix-toml: install-taplo-cli | ||
taplo fmt | ||
|
||
check-fmt: | ||
cargo fmt --all -- --check | ||
|
||
check-clippy: | ||
cargo clippy --all-targets --all-features --workspace -- -D warnings | ||
|
||
install-cargo-sort: | ||
cargo install [email protected] | ||
|
||
check-cargo-sort: install-cargo-sort | ||
cargo sort -c | ||
|
||
install-cargo-machete: | ||
cargo install cargo-machete | ||
|
||
cargo-machete: install-cargo-machete | ||
cargo machete | ||
|
||
install-taplo-cli: | ||
cargo install [email protected] | ||
|
||
check-toml: install-taplo-cli | ||
taplo check | ||
|
||
check: check-fmt check-clippy check-cargo-sort check-toml cargo-machete | ||
|
||
doc-test: | ||
cargo test --no-fail-fast --doc --all-features --workspace | ||
|
||
unit-test: doc-test | ||
cargo test --no-fail-fast --lib --all-features --workspace | ||
|
||
test: doc-test | ||
cargo test --no-fail-fast --all-targets --all-features --workspace | ||
|
||
clean: | ||
cargo clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.