File size: 30,875 Bytes
6582e08 | 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 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 | /*!
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
import * as semver from 'semver'
import * as vscode from 'vscode'
import * as nls from 'vscode-nls'
import {
getCodeRoot,
getHandlerName,
getTemplateResource,
NodejsDebugConfiguration,
PythonDebugConfiguration,
GoDebugConfiguration,
getTemplate,
getArchitecture,
isImageLambdaConfig,
} from '../../../lambda/local/debugConfiguration'
import {
Architecture,
getDefaultRuntime,
getFamily,
getRuntimeFamily,
goRuntimes,
RuntimeFamily,
} from '../../../lambda/models/samLambdaRuntime'
import { Timeout } from '../../utilities/timeoutUtils'
import * as csharpDebug from './csharpSamDebug'
import * as javaDebug from './javaSamDebug'
import * as pythonDebug from './pythonSamDebug'
import * as tsDebug from './typescriptSamDebug'
import * as goDebug from './goSamDebug'
import { ExtContext } from '../../extensions'
import { isInDirectory, makeTemporaryToolkitFolder } from '../../filesystemUtilities'
import { getLogger } from '../../logger/logger'
import { getStartPort } from '../../utilities/debuggerUtils'
import * as pathutil from '../../utilities/pathUtils'
import { tryGetAbsolutePath } from '../../utilities/workspaceUtils'
import {
AwsSamDebuggerConfiguration,
AWS_SAM_DEBUG_TYPE,
createApiAwsSamDebugConfig,
createTemplateAwsSamDebugConfig,
} from './awsSamDebugConfiguration'
import { TemplateTargetProperties } from './awsSamDebugConfiguration.gen'
import {
AwsSamDebugConfigurationValidator,
DefaultAwsSamDebugConfigurationValidator,
} from './awsSamDebugConfigurationValidator'
import { getInputTemplatePath, makeInputTemplate, makeJsonFiles } from '../localLambdaRunner'
import { SamLocalInvokeCommand } from '../cli/samCliLocalInvoke'
import { getCredentialsFromStore } from '../../../auth/credentials/store'
import { fromString } from '../../../auth/providers/credentials'
import { Credentials } from '@aws-sdk/types'
import * as CloudFormation from '../../cloudformation/cloudformation'
import { getSamCliContext, getSamCliVersion } from '../cli/samCliContext'
import { minSamCliVersionForImageSupport, minSamCliVersionForGoSupport } from '../cli/samCliValidator'
import { getIdeProperties } from '../../extensionUtilities'
import { resolve } from 'path'
import globals from '../../extensionGlobals'
import { telemetry, Runtime as TelemetryRuntime } from '../../telemetry/telemetry'
import { Runtime } from '@aws-sdk/client-lambda'
import { ErrorInformation, isUserCancelledError, ToolkitError } from '../../errors'
import { openLaunchJsonFile } from './commands/addSamDebugConfiguration'
import { Logging } from '../../logger/commands'
import { credentialHelpUrl, samTroubleshootingUrl } from '../../constants'
import { Auth } from '../../../auth/auth'
import { openUrl } from '../../utilities/vsCodeUtils'
import fs from '../../fs/fs'
const localize = nls.loadMessageBundle()
interface NotificationButton<T = unknown> {
readonly label: string
readonly onClick: () => Promise<T> | T
}
class SamLaunchRequestError extends ToolkitError.named('SamLaunchRequestError') {
private readonly buttons: NotificationButton[]
public constructor(message: string, info?: ErrorInformation & { readonly extraButtons?: NotificationButton[] }) {
super(message, info)
this.buttons = info?.extraButtons ?? [
{
label: localize('AWS.generic.message.troubleshooting', 'Troubleshooting'),
onClick: () => openUrl(samTroubleshootingUrl),
},
{
label: localize('AWS.generic.message.openConfig', 'Open Launch Config'),
onClick: openLaunchJsonFile,
},
]
}
public async showNotification(): Promise<void> {
if (isUserCancelledError(this)) {
getLogger().verbose(`SAM run/debug: user cancelled`)
return
}
const logId = getLogger().error(this.trace)
const viewLogsButton = {
label: localize('AWS.generic.message.viewLogs', 'View Logs...'),
onClick: () => Logging.instance.viewLogsAtMessage.execute(logId),
}
const buttonsWithLogs = [viewLogsButton, ...this.buttons]
await vscode.window.showErrorMessage(this.message, ...buttonsWithLogs.map((b) => b.label)).then((resp) => {
return buttonsWithLogs.find(({ label }) => label === resp)?.onClick()
})
}
}
/**
* SAM-specific launch attributes (which are not part of the DAP).
*
* Schema for these attributes lives in package.json
* ("configurationAttributes").
*
* @see AwsSamDebuggerConfiguration
* @see AwsSamDebugConfigurationProvider.resolveDebugConfiguration
*/
export interface SamLaunchRequestArgs extends AwsSamDebuggerConfiguration {
// readonly type: 'node' | 'python' | 'coreclr' | 'aws-sam'
readonly request: 'attach' | 'launch' | 'direct-invoke'
/** Runtime id-name passed to vscode to select a debugger/launcher. */
runtime: Runtime
runtimeFamily: RuntimeFamily
/** Resolved (potentinally generated) handler name. This field is mutable and should adjust to whatever handler name is currently generated*/
handlerName: string
workspaceFolder: vscode.WorkspaceFolder
/**
* Absolute path to the SAM project root, calculated from any of:
* - `codeUri` in `template.yaml`
* - `projectRoot` for the case of `target=code`
* - provider-specific heuristic (last resort)
*/
codeRoot: string
/** Path to (generated) directory used as a working/staging area for SAM. */
baseBuildDir?: string
/** sam cli "--mount-with" option. */
mountWith?: 'read' | 'write'
/**
* URI of the current editor document.
* Used as a last resort for deciding `codeRoot` (when there is no `launch.json` nor `template.yaml`)
*/
documentUri: vscode.Uri
/**
* SAM/CFN template absolute path used for SAM CLI invoke.
* - For `target=code` this is the _generated_ template path.
* - For `target=template` this is the _generated_ template path (TODO: in
* the future we may change this to be the template found in the workspace.
*/
templatePath: string
/**
* Path to the (generated) `event.json` file placed in `baseBuildDir` for SAM to discover.
*
* The file contains the event payload JSON to be consumed by SAM.
*/
eventPayloadFile?: string
/**
* Path to the (generated) `env-vars.json` file placed in `baseBuildDir` for SAM to discover.
*
* The file contains a JSON map of environment variables to be consumed by
* SAM, resolved from `template.yaml` and/or `lambda.environmentVariables`.
*/
envFile?: string
//
// Debug properties (when user runs with debugging enabled).
//
/** vscode implicit field, set if user invokes "Run (Start Without Debugging)". */
noDebug?: boolean
// Local (host) directory given to "sam foo --debugger-path …"
debuggerPath?: string
debugArgs?: string[]
/** Passed to SAM CLI --container-env-vars. For Toolkit use, not exposed to the user. */
containerEnvVars?: { [k: string]: string }
/**
* Path to `container-env-vars.json` (generated from `containerEnvVars`).
* For Toolkit use, not exposed to the user.
*/
containerEnvFile?: string
debugPort?: number
/** Local API webserver port. */
apiPort?: number
/**
* Credentials to add as env vars if available
*/
awsCredentials?: Credentials
/**
* parameter overrides specified in the `sam.template.parameters` field
*/
parameterOverrides?: string[]
//
// Invocation properties (for "execute" phase, after "config" phase).
// Non-serializable...
//
samLocalInvokeCommand?: SamLocalInvokeCommand
onWillAttachDebugger?(debugPort: number, timeout: Timeout): Promise<void>
/**
* Specifies container architecture. Necessary for C#, to either swap debugger download or to force into no-debug mode
*/
architecture?: Architecture
}
/**
* `DebugConfigurationProvider` dynamically defines these aspects of a VSCode debugger:
* - Initial debug configurations (for newly-created launch.json)
* - To resolve a launch configuration before it is used to start a new
* debug session.
* Two "resolve" methods exist:
* - resolveDebugConfiguration: called before variables are substituted in
* the launch configuration.
* - resolveDebugConfigurationWithSubstitutedVariables: called after all
* variables have been substituted.
*
* https://code.visualstudio.com/api/extension-guides/debugger-extension#using-a-debugconfigurationprovider
*/
export class SamDebugConfigProvider implements vscode.DebugConfigurationProvider {
public constructor(readonly ctx: ExtContext) {}
/**
* @param folder Workspace folder
* @param token Cancellation token
*/
public async provideDebugConfigurations(
folder: vscode.WorkspaceFolder | undefined,
token?: vscode.CancellationToken
): Promise<AwsSamDebuggerConfiguration[] | undefined> {
if (token?.isCancellationRequested) {
return undefined
}
const configs: AwsSamDebuggerConfiguration[] = []
if (folder) {
const folderPath = folder.uri.fsPath
const templates = (await globals.templateRegistry).items
for (const templateDatum of templates) {
if (isInDirectory(folderPath, templateDatum.path)) {
if (!templateDatum.item.Resources) {
getLogger().error(`provideDebugConfigurations: invalid template: ${templateDatum.path}`)
continue
}
for (const resourceKey of Object.keys(templateDatum.item.Resources)) {
const resource = templateDatum.item.Resources[resourceKey]
if (resource) {
// we do not know enough to populate the runtime field for Image-based Lambdas
const runtimeName = CloudFormation.isZipLambdaResource(resource?.Properties)
? (CloudFormation.getStringForProperty(
resource?.Properties,
'Runtime',
templateDatum.item
) ?? '')
: ''
configs.push(
createTemplateAwsSamDebugConfig(
folder,
runtimeName,
false,
resourceKey,
templateDatum.path
)
)
const events = resource?.Properties?.Events
if (events) {
// Check for api resources to add
for (const key in events) {
const value = events[key]
if (value.Type === 'Api') {
const properties = value.Properties as CloudFormation.ApiEventProperties
configs.push(
createApiAwsSamDebugConfig(
folder,
runtimeName,
resourceKey,
templateDatum.path,
{
path: properties?.Path,
httpMethod: properties?.Method,
}
)
)
}
}
}
}
}
}
}
getLogger().verbose(`provideDebugConfigurations: debugconfigs: %O`, configs)
}
return configs
}
/**
* Necessary to get the debug configuration over to the resolveDebugConfigurationWithSubstitutedVariables function below
*
* @param folder Workspace folder
* @param config User-provided config (from launch.json)
* @param token Cancellation token
*/
public async resolveDebugConfiguration(
folder: vscode.WorkspaceFolder | undefined,
config: AwsSamDebuggerConfiguration,
token?: vscode.CancellationToken,
source?: string
): Promise<AwsSamDebuggerConfiguration | undefined> {
return config
}
/**
* Generates a full run-config from a user-provided config, then
* runs/debugs it (essentially `sam build` + `sam local invoke`).
*
* If `launch.json` is missing, attempts to generate a config dynamically.
*
* @param folder Workspace folder
* @param config User-provided config (from launch.json)
* @param token Cancellation token
*/
// eslint-disable-next-line id-length
public async resolveDebugConfigurationWithSubstitutedVariables(
folder: vscode.WorkspaceFolder | undefined,
config: AwsSamDebuggerConfiguration,
token?: vscode.CancellationToken,
source?: string
): Promise<undefined> {
await this.makeAndInvokeConfig(folder, config, token, source)
// TODO: return config here, and remove use of `startDebugging()` in `localLambdaRunner.ts`.
return undefined
}
private async makeAndInvokeConfig(
folder: vscode.WorkspaceFolder | undefined,
config: AwsSamDebuggerConfiguration,
token?: vscode.CancellationToken,
source?: string
): Promise<void> {
try {
if (config.invokeTarget.target === 'api') {
await telemetry.apigateway_invokeLocal.run(async (span) => {
const resolved = await this.makeConfig(folder, config, token)
span.record({ httpMethod: resolved.api?.httpMethod })
return this.invokeConfig(resolved)
})
} else {
await telemetry.lambda_invokeLocal.run(async () => {
telemetry.record({ source: source })
const resolved = await this.makeConfig(folder, config, token)
return this.invokeConfig(resolved)
})
}
} catch (err) {
if (err instanceof SamLaunchRequestError) {
void err.showNotification()
} else if (err instanceof ToolkitError) {
void new SamLaunchRequestError(err.message, { ...err }).showNotification()
} else {
void SamLaunchRequestError.chain(err, 'Failed to run launch configuration').showNotification()
}
}
}
/**
* Performs the CONFIG phase of SAM run/debug:
* - gathers info from `launch.json`, project workspace, OS
* - creates runtime-specific files
* - creates `input-template.yaml`, `env-vars.json`, `event.json` files
* - creates a config object to handoff to VSCode
*
* @returns Config to handoff to VSCode or nodejs/python/dotnet plugin (can
* also be used in `vscode.debug.startDebugging`)
*/
public async makeConfig(
folder: vscode.WorkspaceFolder | undefined,
config: AwsSamDebuggerConfiguration,
token?: vscode.CancellationToken
): Promise<SamLaunchRequestArgs> {
if (token?.isCancellationRequested) {
throw new ToolkitError('Cancellation requested', { cancelled: true })
}
folder =
folder ?? (vscode.workspace.workspaceFolders?.length ? vscode.workspace.workspaceFolders[0] : undefined)
if (!folder) {
const message = localize(
'AWS.sam.debugger.noWorkspace',
'Choose a workspace, then try again',
getIdeProperties().company
)
throw new SamLaunchRequestError(message, { code: 'NoWorkspaceFolder', extraButtons: [] })
}
// If "request" field is missing this means launch.json does not exist.
// User/vscode expects us to dynamically decide defaults if possible.
const hasLaunchJson = !!config.request
const configValidator: AwsSamDebugConfigurationValidator = new DefaultAwsSamDebugConfigurationValidator(folder)
if (!hasLaunchJson) {
const message = localize(
'AWS.sam.debugger.noLaunchJson',
'To debug a Lambda locally, create a launch.json from the Run panel, then select a configuration.'
)
throw new SamLaunchRequestError(message, {
code: 'NoLaunchConfig',
extraButtons: [
{
label: localize('AWS.gotoRunPanel', 'Run panel'),
onClick: () => vscode.commands.executeCommand('workbench.view.debug'),
},
],
})
} else {
const registry = await globals.templateRegistry
const rv = await configValidator.validate(config, registry)
if (!rv.isValid) {
throw new ToolkitError(`Invalid launch configuration: ${rv.message}`, { code: 'BadLaunchConfig' })
} else if (rv.message) {
void vscode.window.showInformationMessage(rv.message)
}
getLogger().verbose(`SAM debug: config %s:`, config.name)
}
const editor = vscode.window.activeTextEditor
const templateInvoke = config.invokeTarget as TemplateTargetProperties
const template = await getTemplate(folder, config)
const templateResource = await getTemplateResource(folder, config)
const codeRoot = await getCodeRoot(folder, config)
const architecture = getArchitecture(template, templateResource, config.invokeTarget)
// Handler is the only field that we need to parse refs for.
// This is necessary for Python debugging since we have to create the temporary entry file
// Other refs can fail; SAM will handle them.
const handlerName = await getHandlerName(folder, config)
config.baseBuildDir = resolve(folder.uri.fsPath, config.sam?.buildDir ?? (await makeTemporaryToolkitFolder()))
await fs.mkdir(config.baseBuildDir)
if (templateInvoke?.templatePath) {
// Normalize to absolute path.
// TODO: If path is relative, it is relative to launch.json (i.e. .vscode directory).
templateInvoke.templatePath = pathutil.normalize(tryGetAbsolutePath(folder, templateInvoke.templatePath))
} else if (config.invokeTarget.target === 'code') {
const codeConfig = config as SamLaunchRequestArgs & { invokeTarget: { target: 'code' } }
// 'projectRoot' may be a relative path
// Older code left this property as relative, but there's no benefit in doing that since it's relative to the workspace
codeConfig.invokeTarget.projectRoot = pathutil.normalize(
resolve(folder.uri.fsPath, config.invokeTarget.projectRoot)
)
templateInvoke.templatePath = getInputTemplatePath(codeConfig)
}
const isZip = CloudFormation.isZipLambdaResource(templateResource?.Properties)
const runtime: Runtime | undefined =
(config.lambda?.runtime as Runtime) ??
(template && isZip
? CloudFormation.getStringForProperty(templateResource?.Properties, 'Runtime', template)
: undefined) ??
getDefaultRuntime(getRuntimeFamily(editor?.document?.languageId ?? 'unknown'))
const lambdaMemory =
(template
? CloudFormation.getNumberForProperty(templateResource?.Properties, 'MemorySize', template)
: undefined) ?? config.lambda?.memoryMb
const lambdaTimeout =
(template
? CloudFormation.getNumberForProperty(templateResource?.Properties, 'Timeout', template)
: undefined) ?? config.lambda?.timeoutSec
// TODO: Remove this when min sam version is > 1.13.0
if (!isZip) {
const samCliVersion = await getSamCliVersion(this.ctx.samCliContext())
if (semver.lt(samCliVersion, minSamCliVersionForImageSupport)) {
const message = localize(
'AWS.output.sam.no.image.support',
'Support for Image-based Lambdas requires a minimum SAM CLI version of 1.13.0.'
)
throw new SamLaunchRequestError(message, { code: 'UnsupportedSamVersion', details: { samCliVersion } })
}
}
if (!runtime) {
const message = localize(
'AWS.sam.debugger.failedLaunch.missingRuntime',
'Toolkit could not infer a runtime for config: {0}. Add a "lambda.runtime" field to your launch configuration.',
config.name
)
throw new SamLaunchRequestError(message, { code: 'MissingRuntime' })
}
// SAM CLI versions before 1.18.1 do not work correctly for Go debugging.
// TODO: remove this when min sam version is >= 1.18.1
if (goRuntimes.includes(runtime) && !config.noDebug) {
const samCliVersion = await getSamCliVersion(this.ctx.samCliContext())
if (semver.lt(samCliVersion, minSamCliVersionForGoSupport)) {
void vscode.window.showWarningMessage(
localize(
'AWS.output.sam.local.no.go.support',
'Debugging go1.x lambdas requires a minimum SAM CLI version of {0}. Function will run locally without debug.',
minSamCliVersionForGoSupport
)
)
config.noDebug = true
}
}
const runtimeFamily = getFamily(runtime)
// use region in debug config first, if not found, fall back to toolkit default region.
const region = config.aws?.region ?? this.ctx.awsContext.getCredentialDefaultRegion()
const documentUri =
vscode.window.activeTextEditor?.document.uri ??
// XXX: don't know what URI to choose...
vscode.Uri.parse(templateInvoke.templatePath!)
let awsCredentials = await this.ctx.awsContext.getCredentials()
if (!awsCredentials && !config.aws?.credentials) {
getLogger().warn('SAM debug: missing AWS credentials (Toolkit is not connected)')
} else if (config.aws?.credentials) {
// "aws.credentials" defined in the launch-config takes precedence
// over Toolkit's current active credentials.
let fromStore: Credentials | undefined
try {
const credentialsId = fromString(config.aws.credentials)
fromStore = await getCredentialsFromStore(credentialsId, this.ctx.credentialsStore)
} catch {
getLogger().error(`SAM debug: fromString('${config.aws.credentials}') failed`)
}
if (fromStore) {
awsCredentials = fromStore
} else {
const credentialsId = config.aws.credentials
const getHelp = localize('AWS.generic.message.getHelp', 'Get Help...')
throw new SamLaunchRequestError(`Invalid credentials found in launch configuration: ${credentialsId}`, {
code: 'InvalidCredentials',
extraButtons: [
{
label: getHelp,
onClick: () => openUrl(vscode.Uri.parse(credentialHelpUrl)),
},
],
})
}
}
if (config.api) {
config.api.headers = {
'content-type': 'application/json',
...(config.api.headers ? config.api.headers : {}),
}
}
let parameterOverrideArr: string[] | undefined
const params = config.sam?.template?.parameters
if (params) {
parameterOverrideArr = []
for (const key of Object.keys(params)) {
parameterOverrideArr.push(`${key}=${params[key].toString()}`)
}
}
// TODO: Let the OS (or SAM CLI) assign the port, then we need to
// scrape SAM CLI to find the port that was actually used?
const apiPort = config.invokeTarget.target === 'api' ? await getStartPort() : undefined
const debugPort = config.noDebug ? undefined : await getStartPort(apiPort ? apiPort + 1 : undefined)
let launchConfig: SamLaunchRequestArgs = {
...config,
request: 'attach',
codeRoot: codeRoot ?? '',
workspaceFolder: folder,
runtime: runtime as Runtime,
runtimeFamily: runtimeFamily,
handlerName: handlerName,
documentUri: documentUri,
templatePath: pathutil.normalize(templateInvoke?.templatePath),
eventPayloadFile: '', // Populated by makeConfig().
envFile: '', // Populated by makeConfig().
apiPort: apiPort,
debugPort: debugPort,
invokeTarget: {
...config.invokeTarget,
},
lambda: {
...config.lambda,
memoryMb: lambdaMemory,
timeoutSec: lambdaTimeout,
environmentVariables: { ...config.lambda?.environmentVariables },
},
region: region,
awsCredentials: awsCredentials,
parameterOverrides: parameterOverrideArr,
architecture: architecture,
}
//
// Configure and launch.
//
// 1. prepare a bunch of arguments
// 2. do `sam build`
// 3. do `sam local invoke`
//
switch (launchConfig.runtimeFamily) {
case RuntimeFamily.NodeJS: {
// Make a NodeJS launch-config from the generic config.
launchConfig = await tsDebug.makeTypescriptConfig(launchConfig)
break
}
case RuntimeFamily.Python: {
// Make a Python launch-config from the generic config.
launchConfig = await pythonDebug.makePythonDebugConfig(launchConfig)
break
}
case RuntimeFamily.DotNet: {
// Make a DotNet launch-config from the generic config.
launchConfig = await csharpDebug.makeCsharpConfig(launchConfig)
break
}
case RuntimeFamily.Go: {
launchConfig = await goDebug.makeGoConfig(launchConfig)
break
}
case RuntimeFamily.Java: {
// Make a Java launch-config from the generic config.
launchConfig = await javaDebug.makeJavaConfig(launchConfig)
break
}
default: {
const message = localize(
'AWS.sam.debugger.invalidRuntime',
'Unknown or unsupported runtime: {0}',
runtime
)
throw new ToolkitError(message, { code: 'UnsupportedRuntime' })
}
}
// generate template for target=code
if (launchConfig.invokeTarget.target === 'code') {
const codeConfig = launchConfig as SamLaunchRequestArgs & { invokeTarget: { target: 'code' } }
await makeInputTemplate(codeConfig)
}
await makeJsonFiles(launchConfig)
// Set the type, then vscode will pass the config to SamDebugSession.attachRequest().
// (Registered in sam/activation.ts which calls registerDebugAdapterDescriptorFactory()).
// By this point launchConfig.request is now set to "attach" (not "direct-invoke").
launchConfig.type = AWS_SAM_DEBUG_TYPE
if (launchConfig.request !== 'attach' && launchConfig.request !== 'launch') {
// The "request" field must be updated so that it routes to the
// DebugAdapter (SamDebugSession.attachRequest()), else this will
// just cycle back (and it indicates a bug in the config logic).
throw Error(
`resolveDebugConfiguration: launchConfig was not correctly resolved before return: ${JSON.stringify(
launchConfig
)}`
)
}
return launchConfig
}
/**
* Performs the EXECUTE phase of SAM run/debug.
*/
public async invokeConfig(config: SamLaunchRequestArgs): Promise<SamLaunchRequestArgs> {
telemetry.record({
debug: !config.noDebug,
runtime: config.runtime as TelemetryRuntime,
lambdaArchitecture: config.architecture,
lambdaPackageType: (await isImageLambdaConfig(config)) ? 'Image' : 'Zip',
version: await getSamCliVersion(getSamCliContext()),
})
await Auth.instance.tryAutoConnect()
switch (config.runtimeFamily) {
case RuntimeFamily.NodeJS: {
config.type = 'node'
const c = await tsDebug.invokeTypescriptLambda(this.ctx, config as NodejsDebugConfiguration)
return c
}
case RuntimeFamily.Python: {
config.type = 'python'
return await pythonDebug.invokePythonLambda(this.ctx, config as PythonDebugConfiguration)
}
case RuntimeFamily.DotNet: {
config.type = 'coreclr'
return await csharpDebug.invokeCsharpLambda(this.ctx, config)
}
case RuntimeFamily.Go: {
config.type = 'go'
return await goDebug.invokeGoLambda(this.ctx, config as GoDebugConfiguration)
}
case RuntimeFamily.Java: {
config.type = 'java'
return await javaDebug.invokeJavaLambda(this.ctx, config)
}
default: {
throw new Error(`unknown runtimeFamily: ${config.runtimeFamily}`)
}
}
}
}
|