1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
|
=head1 Perl::LanguageServer
Language Server and Debug Protocol Adapter for Perl
=head2 Features
=over
=item * Language Server
=over
=item * Syntax checking
=item * Symbols in file
=item * Symbols in workspace/directory
=item * Goto Definition
=item * Find References
=item * Call Signatures
=item * Supports multiple workspace folders
=item * Document and selection formatting via perltidy
=item * Run on remote system via ssh
=item * Run inside docker container
=item * Run inside kubernetes
=back
=item * Debugger
=over
=item * Run, pause, step, next, return
=item * Support for coro threads
=item * Breakpoints
=item * Conditional breakpoints
=item * Breakpoints can be set while program runs and for modules not yet loaded
=item * Variable view, can switch to every stack frame or coro thread
=item * Set variable
=item * Watch variable
=item * Tooltips with variable values
=item * Evaluate perl code in debuggee, in context of every stack frame of coro thread
=item * Automatically reload changed Perl modules while debugging
=item * Debug multiple perl programs at once
=item * Run on remote system via ssh
=item * Run inside docker container
=item * Run inside kubernetes
=back
=back
=head2 Requirements
You need to install the perl module Perl::LanguageServer to make this extension work,
e.g. run C<cpan Perl::LanguageServer> on your target system.
Please make sure to always run the newest version of Perl::LanguageServer as well.
NOTE: Perl::LanguageServer depend on AnyEvent::AIO and Coro. There is a warning that
this might not work with newer Perls. It works fine for Perl::LanguageServer. So just
confirm the warning and install it.
Perl::LanguageServer depends on other Perl modules. It is a good idea to install most
of then with your linux package manager.
e.g. on Debian/Ubuntu run:
sudo apt install libanyevent-perl libclass-refresh-perl libcompiler-lexer-perl \
libdata-dump-perl libio-aio-perl libjson-perl libmoose-perl libpadwalker-perl \
libscalar-list-utils-perl libcoro-perl
sudo cpan Perl::LanguageServer
e.g. on Centos 7 run:
sudo yum install perl-App-cpanminus perl-AnyEvent-AIO perl-Coro
sudo cpanm Class::Refresh
sudo cpanm Compiler::Lexer
sudo cpanm Hash::SafeKeys
sudo cpanm Perl::LanguageServer
In case any of the above packages are not available for your os version, just
leave them out. The cpan command will install missing dependencies. In case
the test fails, when running cpan C<install>, you should try to run C<force install>.
=head2 Extension Settings
This extension contributes the following settings:
=over
=item * C<perl.enable>: enable/disable this extension
=item * C<perl.sshAddr>: ip address of remote system
=item * C<perl.sshPort>: optional, port for ssh to remote system
=item * C<perl.sshUser>: user for ssh login
=item * C<perl.sshCmd>: defaults to ssh on unix and plink on windows
=item * C<perl.sshWorkspaceRoot>: path of the workspace root on remote system
=item * C<perl.perlCmd>: defaults to perl
=item * C<perl.perlArgs>: additional arguments passed to the perl interpreter that starts the LanguageServer
=item * C<useTaintForSyntaxCheck>: if true, use taint mode for syntax check
=item * C<perl.sshArgs>: optional arguments for ssh
=item * C<perl.pathMap>: mapping of local to remote paths
=item * C<perl.perlInc>: array with paths to add to perl library path. This setting is used by the syntax checker and for the debuggee and also for the LanguageServer itself.
=item * C<perl.fileFilter>: array for filtering perl file, defaults to [I<.pm,>.pl]
=item * C<perl.ignoreDirs>: directories to ignore, defaults to [.vscode, .git, .svn]
=item * C<perl.debugAdapterPort>: port to use for connection between vscode and debug adapter inside Perl::LanguageServer.
=item * C<perl.debugAdapterPortRange>: if debugAdapterPort is in use try ports from debugAdapterPort to debugAdapterPort + debugAdapterPortRange. Default 100.
=item * C<perl.showLocalVars>: if true, show also local variables in symbol view
=item * C<perl.logLevel>: Log level 0-2.
=item * C<perl.logFile>: If set, log output is written to the given logfile, instead of displaying it in the vscode output pane. Log output is always appended. Only use during debugging of LanguageServer itself.
=item * C<perl.disableCache>: If true, the LanguageServer will not cache the result of parsing source files on disk, so it can be used within readonly directories
=item * C<perl.containerCmd>: If set Perl::LanguageServer can run inside a container. Options are: 'docker', 'docker-compose', 'kubectl'
=item * C<perl.containerArgs>: arguments for containerCmd. Varies depending on containerCmd.
=item * C<perl.containerMode>: To start a new container, set to 'run', to execute inside an existing container set to 'exec'. Note: kubectl only supports 'exec'
=item * C<perl.containerName>: Image to start or container to exec inside or pod to use
=back
=head2 Debugger Settings for launch.json
=over
=item * C<type>: needs to be C<perl>
=item * C<request>: only C<launch> is supported (this is a restriction of perl itself)
=item * C<name>: name of this debug configuration
=item * C<program>: path to perl program to start
=item * C<stopOnEntry>: if true, program will stop on entry
=item * C<args>: optional, array or string with arguments for perl program
=item * C<env>: optional, object with environment settings
=item * C<cwd>: optional, change working directory before launching the debuggee
=item * C<reloadModules>: if true, automatically reload changed Perl modules while debugging
=item * C<sudoUser>: optional, if set run debug process with sudo -u \<sudoUser\>.
=item * C<useTaintForDebug>: optional, if true run debug process with -T (taint mode).
=item * C<containerCmd>: If set debugger runs inside a container. Options are: 'docker', 'docker-compose', 'podman', 'kubectl'
=item * C<containerArgs>: arguments for containerCmd. Varies depending on containerCmd.
=item * C<containerMode>: To start a new container, set to 'run', to debug inside an existing container set to 'exec'. Note: kubectl only supports 'exec'
=item * C<containerName>: Image to start or container to exec inside or pod to use
=item * C<pathMap>: mapping of local to remote paths for this debug session (overwrites global C<perl.path_map>)
=back
=head2 Remote syntax check & debugging
If you developing on a remote machine, you can instruct the Perl::LanguageServer to
run on that remote machine, so the correct modules etc. are available for syntax check and debugger is started on the remote machine.
To do so set sshAddr and sshUser, preferably in your workspace configuration.
Example:
"sshAddr": "10.11.12.13",
"sshUser": "root"
Also set sshWorkspaceRoot, so the local workspace path can be mapped to the remote one.
Example: if your local path is \10.11.12.13\share\path\to\ws and on the remote machine you have /path/to/ws
"sshWorkspaceRoot": "/path/to/ws"
The other possibility is to provide a pathMap. This allows one to having multiple mappings.
Examples:
"perl.pathMap": [
["remote uri", "local uri"],
["remote uri", "local uri"]
]
"perl.pathMap": [
[
"file:///",
"file:///home/systems/mountpoint/"
]
]
=head2 Syntax check & debugging inside a container
You can run the LanguageServer and/or debugger inside
a container by setting C<containerCmd> and C<conatinerName>.
There are more container options, see above.
.vscode/settings.json
{
"perl": {
"enable": true,
"containerCmd": "docker",
"containerName": "perl_container",
}
}
This will start the whole Perl::LanguageServer inside the container. This is espacally
helpfull to make syntax check working, if there is a different setup inside
and outside the container.
In this case you need to tell the Perl::LanguageServer how to map local paths
to paths inside the container. This is done by setting C<perl.pathMap> (see above).
Example:
"perl.pathMap": [
[
"file:///path/inside/the/container",
"file:///local/path/outside/the/container"
]
]
It's also possible to run the LanguageServer outside the container and only
the debugger inside the container. This is especially helpfull, when the
container is not always running, while you are editing.
To make only the debugger running inside the container, put
C<containerCmd>, C<conatinerName> and C<pasth_map> in your C<launch.json>.
You can have different setting for each debug session.
Normaly the arguments for the C<containerCmd> are automatically build. In case
you want to use an unsupported C<containerCmd> you need to specifiy
apropriate C<containerArgs>.
=head2 FAQ
=head3 Working directory is not defined
It is not defined what the current working directory is at the start of a perl program.
So Perl::LanguageServer makes no assumptions about it. To solve the problem you can set
the directory via cwd configuration parameter in launch.json for debugging.
=head3 Module not found when debugging or during syntax check
If you reference a module with a relative path or if you assume that the current working directory
is part of the Perl search path, it will not work.
Instead set the perl include path to a fixed absolute path. In your settings.json do something like:
"perl.perlInc": [
"/path/a/lib",
"/path/b/lib",
"/path/c/lib",
],
Include path works for syntax check and inside of debugger.
C<perl.perlInc> should be an absolute path.
=head3 AnyEvent, Coro Warning during install
You need to install the AnyEvent::IO and Coro. Just ignore the warning that it might not work. For Perl::LanguageServer it works fine.
=head3 'richterger.perl' failed: options.port should be >= 0 and < 65536
Change port setting from string to integer
=head3 Error "Can't locate MODULE_NAME"
Please make sure the path to the module is in C<perl.perlInc> setting and use absolute path names in the perlInc settings
or make sure you are running in the expected directory by setting the C<cwd> setting in the lauch.json.
=head3 ERROR: Unknown perlmethod I<rpcnot>setTraceNotification
This is not an issue, that just means that not all features of the debugging protocol are implemented.
Also it says ERROR, it's just a warning and you can safely ignore it.
=head3 The debugger sometimes stops at random places
Upgrade to Version 2.4.0
=head3 Message about Perl::LanguageServer has crashed 5 times
This is a problem when more than one instance of Perl::LanguageServer is running.
Upgrade to Version 2.4.0 solves this problem.
=head3 The program I want to debug needs some input via stdin
You can read stdin from a file during debugging. To do so add the following parameter
to your C<launch.json>:
C<<
"args": [ "E<lt>", "/path/to/stdin.txt" ]
>>
e.g.
C<<
{
"type": "perl",
"request": "launch",
"name": "Perl-Debug",
"program": "${workspaceFolder}/${relativeFile}",
"stopOnEntry": true,
"reloadModules": true,
"env": {
"REQUEST_METHOD": "POST",
"CONTENT_TYPE": "application/x-www-form-urlencoded",
"CONTENT_LENGTH": 34
}
"args": [ "E<lt>", "/path/to/stdin.txt" ]
}
>>
=head3 Carton support
If you are using LL<https://metacpan.org/pod/Carton> to manage dependencies, add the full path to the Carton C<lib> dir to your workspace settings file at C<.vscode/settings.json>. For example:
=head4 Linux
{
"perl.perlInc": ["/home/myusername/projects/myprojectname/local/lib/perl5"]
}
=head4 Mac
{
"perl.perlInc": ["/Users/myusername/projects/myprojectname/local/lib/perl5"]
}
=head2 Known Issues
Does not yet work on windows, due to issues with reading from stdin.
I wasn't able to find a reliable way to do a non-blocking read from stdin on windows.
I would be happy, if anyone knows how to do this in Perl.
Anyway, Perl::LanguageServer runs without problems inside of Windows Subsystem for Linux (WSL).
=head2 Release Notes
see CHANGELOG.md
=head2 More Info
=over
=item * Presentation at German Perl Workshop 2020:
=back
https://github.com/richterger/Perl-LanguageServer/blob/master/docs/Perl-LanguageServer%20und%20Debugger%20f%C3%BCr%20Visual%20Studio%20Code%20u.a.%20Editoren%20-%20Perl%20Workshop%202020.pdf
=over
=item * Github: https://github.com/richterger/Perl-LanguageServer
=item * MetaCPAN: https://metacpan.org/release/Perl-LanguageServer
=back
For reporting bugs please use GitHub issues.
=head2 References
This is a Language Server and Debug Protocol Adapter for Perl
It implements the Language Server Protocol which provides
syntax-checking, symbol search, etc. Perl to various editors, for
example Visual Studio Code or Atom.
https://microsoft.github.io/language-server-protocol/specification
It also implements the Debug Adapter Protocol, which allows debugging
with various editors/includes
https://microsoft.github.io/debug-adapter-protocol/overview
To use both with Visual Studio Code, install the extension "perl"
https://marketplace.visualstudio.com/items?itemName=richterger.perl
Any comments and patches are welcome.
=head2 LICENSE AND COPYRIGHT
Copyright 2018-2022 Gerald Richter.
This program is free software; you can redistribute it and/or modify it
under the terms of the Artistic License (2.0). You may obtain a
copy of the full license at:
LL<http://www.perlfoundation.org/artistic_license_2_0>
Any use, modification, and distribution of the Standard or Modified
Versions is governed by this Artistic License. By using, modifying or
distributing the Package, you accept this license. Do not use, modify,
or distribute the Package, if you do not accept this license.
If your Modified Version has been derived from a Modified Version made
by someone other than you, you are nevertheless required to ensure that
your Modified Version complies with the requirements of this license.
This license does not grant you the right to use any trademark, service
mark, tradename, or logo of the Copyright Holder.
This license includes the non-exclusive, worldwide, free-of-charge
patent license to make, have made, use, offer to sell, sell, import and
otherwise transfer the Package with respect to any patent claims
licensable by the Copyright Holder that are necessarily infringed by the
Package. If you institute patent litigation (including a cross-claim or
counterclaim) against any party alleging that the Package constitutes
direct or contributory patent infringement, then this Artistic License
to you shall terminate on the date that such litigation is filed.
Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER
AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY
YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR
CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR
CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|