-
Notifications
You must be signed in to change notification settings - Fork 296
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
Conversation
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.
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 { } |
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.
[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.
} 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.
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.
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 |
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.
Hmm, I guess prefix
here could be null
if it doesn't find anything?
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.
Indeed, the test is wrong. Thanks!
I am not sure I fully understand your concerns. The differences on Linux/macOS wrt Windows are that the runner is called simply 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. |
Nevermind, it's all good. It looks like Korean/Japanese systems just render the |
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.
Thanks!
Resolves #1935 by implementing approach 1.