-
Notifications
You must be signed in to change notification settings - Fork 4
Chore: Centralize generated content #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
kduy969
wants to merge
6
commits into
monkey666-cr:main
from
kduy969:duy.bui/centralize-generated-contents
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f4e5895
centralize generated content
kduy969 059cf84
use JSONObject to parse json, add test for java
kduy969 5c0244a
format rust code
kduy969 425c371
fix rust clip
kduy969 872012a
ensureProjectGitignore
kduy969 a7b95bd
create .gitignore on importing
kduy969 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,6 @@ | ||
| { | ||
| "baseDir": ".bazel-jdt", | ||
| "configFile": ".bazelproject", | ||
| "projectsDir": "projects", | ||
| "aspectsDir": "aspects" | ||
| } |
This file contains hidden or 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
38 changes: 38 additions & 0 deletions
38
bazel-jdt-bridge/crates/bazel-jdt-core/src/internal_config.rs
This file contains hidden or 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,38 @@ | ||
| const CONFIG_JSON: &str = include_str!("../../../config.json"); | ||
|
|
||
| fn extract_json_str<'a>(json: &'a str, key: &str) -> Option<&'a str> { | ||
| let needle = format!("\"{}\"", key); | ||
| let after_key = json.split(&needle).nth(1)?; | ||
| let after_colon = after_key.split_once(':')?.1.trim(); | ||
| let after_quote = after_colon.strip_prefix('"')?; | ||
| let value = after_quote.split('"').next()?; | ||
| Some(value) | ||
| } | ||
|
|
||
| pub fn base_dir() -> &'static str { | ||
| extract_json_str(CONFIG_JSON, "baseDir").unwrap_or(".bazel-jdt") | ||
| } | ||
|
|
||
| pub fn config_file() -> &'static str { | ||
| extract_json_str(CONFIG_JSON, "configFile").unwrap_or(".bazelproject") | ||
| } | ||
|
|
||
| pub fn aspects_dir() -> String { | ||
| format!( | ||
| "{}/{}", | ||
| base_dir(), | ||
| extract_json_str(CONFIG_JSON, "aspectsDir").unwrap_or("aspects") | ||
| ) | ||
| } | ||
|
|
||
| #[cfg(test)] | ||
| mod tests { | ||
| use super::*; | ||
|
|
||
| #[test] | ||
| fn test_config_reads_from_root_config_json() { | ||
| assert_eq!(base_dir(), ".bazel-jdt"); | ||
| assert_eq!(config_file(), ".bazelproject"); | ||
| assert_eq!(aspects_dir(), ".bazel-jdt/aspects"); | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is_bazelproject_fileshould check both the name and the location