A debugger for perl in vs code.
- Breakpoints (continue, step over, step in, step out)
- Stacktrace
- Variable inspection (support for objects, arrays, strings, numbers and boolean)
- Variable watching (for now we don't create actual watch breakpoints - figuring out how to maintain t)
- Setting new values of variables (works inside of arrays and objects too)
- Debug console for writing expressions (write perl expressions in the debug console)
- Variable values on hover in code
exec
Can be set to a specific perl binary defaults to "perl"execArgs
Arguments that is passed to the binary perl executableinc
Can be an array of strings / include pathsargs
Can be an array of strings / program argumentsenv
Used for setting environment variables when debugging,PATH
andPERL5LIB
default to system unless overwrittentrace
Boolean value to enable Debug Adapter Logging inperl-debug.log
fileport
Number for port to listen for remote debuggers to connect to. (Used only for remote debugging)
You might have to install the PadWalker
Perl package for variable inspection on Windows (and some linux distributions?)
A standard launch.json
will resemble the following (on Windows, *nix distros will differ slightly.)
{
"version": "0.2.0",
"configurations": [
{
"type": "perl",
"request": "launch",
"exec": "C:/Perl64/bin/perl.exe",
"execArgs": [],
"name": "Perl Debug",
"root": "${workspaceRoot}",
"program": "${workspaceRoot}/${relativeFile}",
"inc": [],
"args": [],
"stopOnEntry": true
}
]
}
When setting the port
attribute in launch.json
the vs code debug extension will start a debug server for the remote perl debug instance to connect to.
eg.:
# Start remote debugger in vs code on port 5000 then:
$ PERLDB_OPTS="RemotePort=localhost:5000" perl -d test.pl
localhost
should be replaced by the ip address
Instead of launching the remote program and the debug session, you can start the debugee via ssh.
Add the following settings to your launch.json
"sshCmd": "c:\\Program Files (x86)\\PuTTY\\plink.exe",
"sshUser": "root",
"sshAddr": "192.168.247.74"
sshCmd
is optional. It defaults to plink
on windows and ssh
on all other systems
To convert the path from local path to the path on the remote system add the following settings:
"root": "${workspaceRoot}",
"clientRoot": "/path/to/ws",
e.g. if ${workspaceRoot}
is \\192.168.247.74\share\path\to\ws
you set clientRoot
to this path on
the remote system e.g. /path/to/ws
. This will make sure files are matched on local an remote system.
This is especially importand to be able to set breakpoints and show the right location in the source.
Tests matrix running between os and perl versions:
- OSX - perl 5.22
- OSX - perl 5.20
- OSX - perl 5.18
- OSX - perl 5.16
- OSX - perl 5.14
- Linux - perl 5.22
- Linux - perl 5.20
- Linux - perl 5.18
- Linux - perl 5.16
- Linux - perl 5.14
- Windows 64bit - Strawberry perl 5.24.1
- Windows 64bit - Strawberry perl 5.22.3
- Windows 64bit - Strawberry perl 5.20.3
- Windows 64bit - Strawberry perl 5.18.4
- Windows 64bit - Strawberry perl 5.16.3
- Windows 64bit - Activeperl 5.22.3.2204
- Windows 64bit - Activeperl 5.24.1.2402
Known issues on windows:
- "Restart" -
inhibit_exit
is not respected and will cause the debugger to stop - Variable inspection unstable - it's due to output inconsistency from the perl debugger
If you want to help test / debug read DEBUGGING.md
- Watching variables doesn't create actual expression watchers yet - need more api for actually maintaining the list of expressions to watch. I might be able to do a workaround for now.
- Variable values on hover doesn't work all the time due to the lack of info, eg.
$obj->{ownObj}->{ownFoo}
hovering over$obj
will work fine - but the children are not parsed correctly - to solve this we might need to parse the line of code. - Function breakpoints not working / added - need to figure out if possible
Credits goes to Microsoft for making an awesome editor and a nice getting started mock debugger: https://github.com/Microsoft/vscode-mock-debug.git
I don't care about stars, but for everybodys sake: Please use github for tracking issues and feature requests, thanks!
I do take pull requests for both documentation and code improvements!
Please be aware that this plugin depends on the OS/vs code/perl distribution/perl5db.pl and none of these are perfect/consistent dependencies, therefor hard to track down. Why I've added a fairly broad test matrix across os/perl distributions
Please keep in mind that I'm an ES developer, I don't know all the corners of perl - so any help is appriciated.
Kind regards
Morten