Skip to content
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

NEW (SFGE) @W-17915877@ PathStart functionality for SFGE #250

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from

Conversation

jfeingold35
Copy link
Contributor

@jfeingold35 jfeingold35 commented Apr 3, 2025

This PR does the following:

  • Allows the Java layer to fully handle a projectDirs property consisting of a list of individual files.
  • Adds support for the pathStart property on runOptions in SFGE.

}
final ProjectFileVisitor projectFileVisitor = new ProjectFileVisitor();
if (this.pathsWalked.contains(path.toString())) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This matters because when the sourceFolder paths are lists of individual files in the same folder, then path will end up being the same for all of them and we don't want to walk the same path trees repeatedly.

@@ -61,13 +63,21 @@ public TreeSet<String> getMetaInfoCollected() {

private void processSourceFolder(String sourceFolder) throws MetaInfoLoadException {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Technically, sourceFolders can now be a list of files.
But I didn't want to chase down and rename a million different variables, so I didn't do that. I can if people want, but I think I'd prefer to do it in a follow-up PR to keep this one readable.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't mind it as a follow-up! Sounds like a good cleanup item 👍

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually in reading through the code, I think sourceFolder for the parameter is still right, isn't it? Later I see this, and the invocation reads right to me:

for (String sourceFolder : sourceFolders) {
       processSourceFolder(sourceFolder);
}

this.config = config;
const javaCommandExecutor: JavaCommandExecutor = new JavaCommandExecutor(this.config.java_command, this.emitLogEvent.bind(this));
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Forgot to do this the first time around. Doing it now.

Copy link
Collaborator

@randi274 randi274 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just reading through for understanding. Looks like a simple enough lift though!

@@ -61,13 +63,21 @@ public TreeSet<String> getMetaInfoCollected() {

private void processSourceFolder(String sourceFolder) throws MetaInfoLoadException {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't mind it as a follow-up! Sounds like a good cleanup item 👍

// So we'll go up a level before walking the file tree.
if (directoryContainsApex(path)) {
if (isDirectoryContainingApex(path)) {
// If the path is a directory with apex files in it, we should assume it's the class folder, and that project
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// If the path is a directory with apex files in it, we should assume it's the class folder, and that project
// If the path is a directory with apex files in it, we should assume it's the classes folder, and that project

path = path.getParent();
} else if (isApexFile(path)) {
// If the path itself is an apex file, we should assume that it is contained in the class folder, and that
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// If the path itself is an apex file, we should assume that it is contained in the class folder, and that
// If the path itself is an apex file, we should assume that it is contained in the classes folder, and that

path = path.getParent();
} else if (isApexFile(path)) {
// If the path itself is an apex file, we should assume that it is contained in the class folder, and that
// project files are in a sibling of its parent directory. So we'll go up two levels before walking the file
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you clarify for me what you mean by "project files" here?

@@ -61,13 +63,21 @@ public TreeSet<String> getMetaInfoCollected() {

private void processSourceFolder(String sourceFolder) throws MetaInfoLoadException {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually in reading through the code, I think sourceFolder for the parameter is still right, isn't it? Later I see this, and the invocation reads right to me:

for (String sourceFolder : sourceFolders) {
       processSourceFolder(sourceFolder);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants