49

我在 Visual Studio 代码中有一个调试设置,我在其中运行一个可以执行我的 JS 文件的外部二进制文件(使用 duktape)。调试适配器目前仅支持附加请求(不支持启动),因此我必须先运行二进制文件,然后才能调试 JS 脚本。

为了避免必须手动启动应用程序,我为它创建了一个任务并将其设置在我的 launch.json 文件中:

{
    "version": "0.2.0",
    "configurations": [{
        "name": "Attach MGA",
        "type": "duk",
        "preLaunchTask": "debug mga",
        "request": "attach",

        "address": "localhost",
        "port": 9091,

        "localRoot": "${workspaceRoot}",

        "stopOnEntry": false,
        "debugLog": true
    }]
}

任务定义如下:

{
    "version": "0.1.0",
    "command": "<absolute path to>/mga",
    "isShellCommand": false,
    "showOutput": "always",
    "suppressTaskName": true,
    "tasks": [{
        "taskName": "debug mga",
        "args": ["--debugger", "main.json"]
    }]
}

现在的问题是 vscode 等待预启动任务完成,而应用程序等待调试器附加。捕获 22。

如何避免 vscode 等待预启动任务完成?

更新

同时,我阅读了vscode 任务页面并提出了这个任务配置。不过,它对我不起作用

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "launch-mga",
            "type": "shell",
            "command": "<absolute path to>/mga",
            "args": [
                "config/main.json",
                "--debugger"
            ],
            "isBackground": true,
            "problemMatcher": {
                "owner": "custom",
                "pattern": {
                    "regexp": "_____"
                },
                "background": {
                    "activeOnStart": true,
                    "beginsPattern": "^.*Waiting for debug connection.*$",
                    "endsPattern": "^.*blah.*$"
                },
            },
        }
    ]
}

启动的应用程序打印等待消息,然后无休止地等待调试连接。也许问题与用 C++ 编写的应用程序(有点像终端应用程序的 Node.js)有关?

4

2 回答 2

47

这对我有用。

请注意,所有这些都是必需的,即使它们都不重要:

  • problemMatcher.pattern.regexp
  • problemMatcher.pattern.file
  • problemMatcher.pattern.location
  • problemMatcher.pattern.message
  • problemMatcher.background.activeOnStart
  • problemMatcher.background.beginsPattern
  • problemMatcher.background.endsPattern
{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "build-extras",
      "type": "shell",
      "isBackground": true,
      "command": "./script/build-extras",

      // This task is run before some debug tasks.
      // Problem is, it's a watch script, and since it never exits, VSCode
      // complains. All this is needed so VSCode just lets it run.
      "problemMatcher": [
        {
          "pattern": [
            {
              "regexp": ".",
              "file": 1,
              "location": 2,
              "message": 3
            }
          ],
          "background": {
            "activeOnStart": true,
            "beginsPattern": ".",
            "endsPattern": ".",
          }
        }
      ]
    }
  ]
}
于 2019-01-03T06:26:09.080 回答
13

后台/观看任务

一些工具支持在后台运行,同时观察文件系统的变化,然后在磁盘上的文件发生变化时触发操作。通过Gulpnpm 模块 gulp-watch 提供此类功能。TypeScript 编译器通过line 选项tsc内置了对此的支持。--watch command

为了提供后台任务在 VS Code 中处于活动状态并产生问题结果的反馈,问题匹配器必须使用附加信息来检测state输出中的这些变化。我们以tsc编译器为例。当编译器以监视模式启动时,它会向控制台打印以下附加信息:

> tsc --watch
12:30:36 PM - Compilation complete. Watching for file changes.

当磁盘上包含问题的文件发生更改时,会出现以下输出:

12:32:35 PM - File change detected. Starting incremental compilation...
src/messages.ts(276,9): error TS2304: Cannot find name 'candidate'.
12:32:35 PM - Compilation complete. Watching for file changes.

查看输出显示以下模式:

  • 编译器在File change detected. Starting incremental compilation...打印到控制台时运行。
  • Compilation complete. Watching for file changes.编译器在打印到控制台时停止。
  • 报告了这两个字符串之间的问题。
  • 编译器也会在初始启动时运行一次(不打印File change detected. Starting incremental compilation...到控制台)。

为了捕获此信息,问题匹配器可以提供一个background属性。

对于tsc编译器,适当的background属性如下所示:

"background": {
    "activeOnStart": true,
    "beginsPattern": "^\\s*\\d{1,2}:\\d{1,2}:\\d{1,2}(?: AM| PM)? - File change detected\\. Starting incremental compilation\\.\\.\\.",
    "endsPattern": "^\\s*\\d{1,2}:\\d{1,2}:\\d{1,2}(?: AM| PM)? - Compilation complete\\. Watching for file changes\\."
}

除了background问题匹配器的属性外,还必须将任务本身标记为,isBackground以便任务在后台继续运行。

tasks.json在监视模式下运行的任务的完整手工制作tsc如下所示:

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "watch",
            "command": "tsc",
            "args": ["--watch"],
            "isBackground": true,
            "problemMatcher": {
                "owner": "typescript",
                "fileLocation": "relative",
                "pattern": {
                    "regexp": "^([^\\s].*)\\((\\d+|\\,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(TS\\d+)\\s*:\\s*(.*)$",
                    "file": 1,
                    "location": 2,
                    "severity": 3,
                    "code": 4,
                    "message": 5
                },
                "background": {
                    "activeOnStart": true,
                    "beginsPattern": "^\\s*\\d{1,2}:\\d{1,2}:\\d{1,2}(?: AM| PM)? - File change detected\\. Starting incremental compilation\\.\\.\\.",
                    "endsPattern": "^\\s*\\d{1,2}:\\d{1,2}:\\d{1,2}(?: AM| PM)? - Compilation complete\\. Watching for file changes\\."
                }
            }
        }
    ]
}

PS:内容取自https://code.visualstudio.com/docs/editor/tasks

编辑-1

该任务需要作为守护进程启动,然后才会isBackground有所帮助。所以你会有类似的东西

"isShellCommand": true,
"command": "<absolute path to>/mga --config xyz abc &",
于 2018-02-28T16:58:06.000 回答