Skip to content

Latest commit

 

History

History
165 lines (107 loc) · 4.64 KB

julia.md

File metadata and controls

165 lines (107 loc) · 4.64 KB

Julia DAP server

To debug Julia files, you can use the Julia DAP server.

Let’s debugging the following test.julia file:

function main()
    user = "world"
    println("hello ", user)
end

main()

Set Breakpoint

Configure DAP server

  1. install Julia. After that open a terminal and type julia: Julia command

  2. switch to Julia’s REPL by typing ] to install the DAP server with the command add DebugAdapter Install Julia DAP server

  3. here we create a Julia DAP server started with socket. Create a server.jl in your project like this:

using Pkg
Pkg.instantiate()

using Sockets
using DebugAdapter
using Logging

function start_debugger()
try
server_port = parse(Int, ARGS[1])
server = Sockets.listen(server_port)
println("Listening on port $server_port")

        conn = Sockets.accept(server)
        println("Client connected")

        debugsession = DebugAdapter.DebugSession(conn)
        run(debugsession)

        close(conn)
    catch e
        println("Error: ", e)
    end
end
start_debugger()
  1. Create a DAP Run/Debug configuration:

    DAP Configuration Type

  2. In the Server tab, click on create a new server:

    Create a new server

  3. It opens a new dialog to create DAP server, select Julia template: Select Template

  4. After clicking on OK button, it will select the new server and pre-fill configurations:

Select New server

This will automatically populate:

  • the server name
  • the command which starts the DAP server which should look like this:
julia $PROJECT_DIR$/server.jl ${port}

The ${port} argument will be replaced with a free port when the run configuration starts.

The julia $PROJECT_DIR$ which is an Intellij macro will be replaced with your project dir.

  • the Connect to the server by waiting option is set to Log pattern before processing with:
Listening on port ${port}

This means the DAP (Debug Adapter Protocol) client will connect to the DAP server when this trace appears in the console:

julia path/to/your/project/server.jl 52714
Listening on port 52714
  1. Enable DAP server traces

If you wish to show DAP request/response traces when you will debug:

Show DAP traces

you need to select Trace with verbose.

Set verbose traces

Configure file mappings

To allows settings breakpoints to Julia files, you need configure mappings in the Mappings tab. As you have selected Julia server, it will automatically populate the file mappings like this:

File mappings

Configure the Julia file to run/debug

  1. Fill in the Configuration tab:
  • the working directory (usually the project's root directory)
  • the path to the test.jl file.

DAP Configuration/Configuration

  1. Select Launch as Debug mode.
  2. The DAP parameters of the launch should look like this:
{
   "type": "julia",
   "name": "Launch Julia file",
   "request": "launch",
   "program": "${file}",
   "projectDir": "${workspaceFolder}",
   "exitAfterTaskReturns": false,
   "debugAutoInterpretAllModules": false,
   "stopOnEntry": false
}

When the run configuration starts:

  • ${workspaceFolder} will be replaced with the working directory you specified.
  • ${file} will be replaced with the full path to test.jl.

Set Breakpoint

After applying the run configuration, you should set a breakpoint to files which matches file mappings. Set a breakpoint in the test.jl file:

Set Breakpoint

Debugging

You can start the run configuration in either Run or Debug mode. Once started, you should see DAP traces in the console:

Debugging / Console

You will also see Threads and Variables:

Debugging / Threads

Language Support

If you need language support for Julia (completion, validation, etc) you can configure the Julia Language Server

Julia demo