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

Locate dotnet tool ipy launcher #1936

Merged
merged 4 commits into from
Apr 2, 2025
Merged

Conversation

BCSharp
Copy link
Member

@BCSharp BCSharp commented Mar 31, 2025

Resolves #1935 by implementing approach 1.

@BCSharp BCSharp requested a review from Copilot March 31, 2025 04:57
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This pull request implements approach 1 to resolve #1935 by locating the dotnet tool ipy launcher.

  • Corrects a typo in the ClrModule documentation.
  • Enhances the runner lookup logic in the PythonCommandLine to include fallback via FindRunner and a memory-mapped file check.

Reviewed Changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
src/core/IronPython/Runtime/ClrModule.cs Fixes a typo in the class documentation comment.
src/core/IronPython/Hosting/PythonCommandLine.cs Adds new using directives, refines runner lookup logic with fallback via FindRunner, and introduces local functions for runner validation.
Comments suppressed due to low confidence (1)

src/core/IronPython/Hosting/PythonCommandLine.cs:333

  • Ensure that 'prefix' is non-null and is an actual prefix of 'assembly' to avoid potential IndexOutOfRangeException or unexpected substring values. Consider adding a guard or using a safer extraction method.
var relativeAssemblyPath = assembly.Substring(prefix.Length + 1);

}
if (found) return true;
}
} catch { }
Copy link
Preview

Copilot AI Mar 31, 2025

Choose a reason for hiding this comment

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

[nitpick] Swallowing exceptions silently in the try-catch block may obscure underlying issues during runner validation. Consider logging or handling the exception explicitly to aid debugging.

Suggested change
} catch { }
} catch (Exception ex) {
Console.WriteLine($"Exception occurred while validating runner: {ex}");
}

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

Copy link
Contributor

@slozier slozier left a comment

Choose a reason for hiding this comment

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

I assume on Linux/macOS it's similar to Windows where you have ipy.exe and then .store\ironpython.console\3.4.2\ironpython.console\3.4.2\tools\net8.0\any\ipy.dll?

My first impression is that a path comparison with assembly contents seems a bit flaky. Although perhaps it's a Windows thing... For example with paths in Japanese/Korean systems using a different character, how does it all behave? Also network paths use a different slash (although I guess that one is less likely to occur). Anyway, just things to think about.

}
if (runner != null && Path.GetExtension(assembly).Equals(".dll", StringComparison.OrdinalIgnoreCase)) {
// make sure that the runner refers to this DLL
var relativeAssemblyPath = assembly.Substring(prefix.Length + 1); // skip over the path separator
Copy link
Contributor

Choose a reason for hiding this comment

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

Hmm, I guess prefix here could be null if it doesn't find anything?

Copy link
Member Author

Choose a reason for hiding this comment

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

Indeed, the test is wrong. Thanks!

@BCSharp
Copy link
Member Author

BCSharp commented Mar 31, 2025

I am not sure I fully understand your concerns. The differences on Linux/macOS wrt Windows are that the runner is called simply ipy and it uses forward slashes in the path rather backslashes. Handling proper path separators is done by .NET API (e.g. Path) so the code works on all platforms (I have tested on all three). The relative path embedded in the runner is all ASCII, so (I assume) it uses the ANSI Win32 calls on Windows, which works regardless the codepage used, as ASCII is a subset of all Windows codepages. But I don't have a Korean or Japanese Windows installation so I cannot verify this assumption. I suppose theoretically I could have used the ASCII codec is UTF8 to obtain the bytestring to search, but, in case some hypothetical future version of .NET changes the encoding to, say, UTF-16, I'd rather have the search for ipy.exe fail than throw exceptions.

I do not understand your comments about network paths being a potential problem, can you give me an example? Are you thinking about installations on Samba shares?

As for the flakiness, well, it's a heuristic, not a method, so yes, it is somewhat flaky. The content scan is in principle optional, since the actual search happens by file name, but I'd rather keep it in to avoid false positives. It is not unthinkable that we will encounter some scenarios in which this whole heuristic fails, and will have resort to distribute the shell launches as well, as a fallback.

@slozier
Copy link
Contributor

slozier commented Mar 31, 2025

I am not sure I fully understand your concerns. The differences on Linux/macOS wrt Windows are that the runner is called simply ipy and it uses forward slashes in the path rather backslashes. Handling proper path separators is done by .NET API (e.g. Path) so the code works on all platforms (I have tested on all three). The relative path embedded in the runner is all ASCII, so (I assume) it uses the ANSI Win32 calls on Windows, which works regardless the codepage used, as ASCII is a subset of all Windows codepages. But I don't have a Korean or Japanese Windows installation so I cannot verify this assumption. I suppose theoretically I could have used the ASCII codec is UTF8 to obtain the bytestring to search, but, in case some hypothetical future version of .NET changes the encoding to, say, UTF-16, I'd rather have the search for ipy.exe fail than throw exceptions.

I do not understand your comments about network paths being a potential problem, can you give me an example? Are you thinking about installations on Samba shares?

Nevermind, it's all good. It looks like Korean/Japanese systems just render the \ differently but use the same underlying character. As for network paths I don't know what I was thinking (rough night I guess 😄).

Copy link
Contributor

@slozier slozier left a comment

Choose a reason for hiding this comment

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

Thanks!

@BCSharp BCSharp merged commit 765abf2 into IronLanguages:main Apr 2, 2025
17 checks passed
@BCSharp BCSharp deleted the dotnet_tool_ipy branch April 2, 2025 18:04
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.

Value of sys.executable is not always a path to an executable
2 participants