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

Remove all common prefixes of multiple sockets #349

Closed
wants to merge 1 commit into from

Conversation

andyjeffries
Copy link
Contributor

@andyjeffries andyjeffries commented Sep 13, 2023

I want to use multiple sockets for my Rails app (one for a web process and one for a worker process), both being ready to use at any time. However, the problem is I can't easily see which socket to choose in VS Code. Due to MacOS's long paths, the "showQuickPick" method trims off the actual important part, so it ends up looking like this:

Screenshot 2023-09-13 at 10 22 25

The output of rdbg --util=list-socks is like this:

$ bundle exec rdbg --util=list-socks
/var/folders/gf/3z_681416nj3_zxgn2njdybm0000gn/T/ruby-debug-sock-501/ruby-debug-andy-32986
/var/folders/gf/3z_681416nj3_zxgn2njdybm0000gn/T/ruby-debug-sock-501/ruby-debug-andy-32998

The last parts after the trailing / are the important part, the filename and the PID, not all the folders stuff at the start.

This PR removes any common prefixes up to the last / and replaces them with ... so the showQuickPick now looks like this:

Screenshot 2023-09-13 at 10 21 34

This is my first ever TypeScript code, it works well when using F5 and testing it, but if I've done something non-idiomatic, feel free to give suggestions and I'll fix them.

@andyjeffries
Copy link
Contributor Author

@ko1 this could be merged separately to my PR on the debug library, as it's independently useful.

@andyjeffries
Copy link
Contributor Author

@ko1 any update on getting this merged please?

@andyjeffries
Copy link
Contributor Author

@ko1 @codergeek121 - could I get some eyes on this. Even without the "Session name" PR for the debug gem, this PR would be useful for those of us running multiple Ruby processes that we want to just generally be available for sudden jumping in to debugging.

@ko1
Copy link
Collaborator

ko1 commented Dec 25, 2023

Sorry for late response. Usually I couldn't check GH notification anymore... Please ping me @ko1 on ruby.social or somewhere else.

Anyway, I'm afraid to lost full path information because we can not recognize socket path issue (try to find in different directory) so I want to show dirname in showQuickPick() dialog like that:

image

Fortunately it checks only one directory so that it is enough just now. I'll make another PR with your co-author.

ko1 added a commit to ko1/vscode-rdbg that referenced this pull request Dec 25, 2023
on chosing available debug ports.

See ruby#349

Co-authored-by: Andy Jeffries <andy@andyjeffries.co.uk>
ko1 added a commit that referenced this pull request Dec 25, 2023
on chosing available debug ports.

See #349

Co-authored-by: Andy Jeffries <andy@andyjeffries.co.uk>
@ono-max
Copy link
Member

ono-max commented Dec 26, 2023

Close this PR because #406 solved this problem.

Thank you!

@ono-max ono-max closed this Dec 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

3 participants