Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
41ce1ee
Add initial DAP proxy implementation
danegsta Jan 30, 2026
78205e1
Add an end-to-end test that drives a delve debugger instance using DAP
danegsta Jan 30, 2026
093873f
Initial gRPC side-channel
danegsta Jan 31, 2026
ec15d11
Add additional integration tests
danegsta Jan 31, 2026
45aee07
Ensure events are sent to keep IDE up to date when virtual events tha…
danegsta Jan 31, 2026
918ef7f
Support additional debug adapter connection modes
danegsta Jan 31, 2026
527a6b2
Update to use our process and context aware read helpers
danegsta Jan 31, 2026
be6fe42
Cleanup and prepare DAP support to be ready for PR
danegsta Feb 11, 2026
48af052
Ensure debug adapters launch with necessary environment
danegsta Feb 12, 2026
4af1824
Improvements to debug adapter tests
danegsta Feb 12, 2026
53b2c31
Fix test on Windows
danegsta Feb 12, 2026
66c3576
Added better error message in test
danegsta Feb 12, 2026
50b783c
Ensure proper goargs for all test binaries
danegsta Feb 12, 2026
f03ab74
Go environment handling in dlv test
danegsta Feb 12, 2026
ec06ea7
Ensure test doesn't force x64
danegsta Feb 13, 2026
a4e781d
Simplify to a single markdown on the new feature
danegsta Feb 13, 2026
38357dc
Merge remote-tracking branch 'origin/main' into dev/danegsta/dap
danegsta Feb 26, 2026
5d631f7
Updates for PR feedback
danegsta Feb 26, 2026
bb11ec6
Rename NewProcessHandle to NewHandle
danegsta Feb 26, 2026
3ba349e
Remove usage of secure from user-only unix socket helper names
danegsta Feb 26, 2026
9bb186e
More updates for PR comments
danegsta Mar 7, 2026
43dd503
Fix race condition
danegsta Mar 7, 2026
e102589
More PR updates, fix failing test
danegsta Mar 7, 2026
c4bae1b
Remove unnecessary test
danegsta Mar 7, 2026
da245c2
Update to send terminal message via queue
danegsta Mar 7, 2026
566fccd
Merge origin/main into branch
danegsta May 6, 2026
e1893fc
Refine DAP bridge manager concurrency
danegsta May 6, 2026
e225b08
Updates to support additional scenarios such as JS debug adapter that…
danegsta May 6, 2026
46fe1f0
Merge origin/main into dev/danegsta/dap
danegsta May 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
architecture: 'x64'

- name: Setup prerequisites
if: ${{ matrix.prereqsCommand != '' }}
Expand Down
6 changes: 6 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ This codebase implements several custom Kubernetes types and controllers. Implem
### Avoid variable reuse (especially for errors)
- If a function invokes multiple error-returning functions, use a different variable name for each error to avoid confusion.

### Use sync.Mutex as pointers
- In this codebase, `sync.Mutex` instances are used as pointers (`*sync.Mutex`). Create them with `&sync.Mutex{}` and pass them around as pointer values.

## Prefer extending existing interfaces over creating new ones
- It's safe to extend existing interfaces when we need new functionality; we don't need to worry about breaking existing implementations because we control all of them. This also helps to keep the codebase simpler and more consistent.

Expand All @@ -58,6 +61,9 @@ Place new code in the correct location according to the project's structure:
- Use `OpenFile()`, or (for temporary files) `OpenTempFile()` functions from github.com/microsoft/dcp/pkg/io package to open files. This function takes care of using appropriate file permissions in a cross-platform way.
- Always close files after no longer needed, either by calling `Close()` from the method that opened the file (with `defer` statement), or when the lifetime context.Context of the file owner expires.

## Test patterns
- Avoid usage of time.Sleep in tests to enforce timing. Use test helpers and synchronization primitives to make the timing as deterministic as possible to avoid non-deterministic test failures.

## Code generation
- Run `make generate` after making changes to API definitions (files under `api/v1` folder).
- Run `make generate-grpc` after making changes to protobuf definitions (files with `.proto` extension).
Expand Down
19 changes: 16 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ DELAY_TOOL ?= $(TOOL_BIN)/delay$(exe_suffix)
LFWRITER_TOOL ?= $(TOOL_BIN)/lfwriter$(exe_suffix)
PARROT_TOOL ?= $(TOOL_BIN)/parrot$(exe_suffix)
PARROT_TOOL_CONTAINER_BINARY ?= $(TOOL_BIN)/parrot_c
DEBUGGEE_TOOL ?= $(TOOL_BIN)/debuggee$(exe_suffix)
GO_LICENSES ?= $(TOOL_BIN)/go-licenses$(exe_suffix)
PROTOC ?= $(TOOL_BIN)/protoc/bin/protoc$(exe_suffix)

Expand Down Expand Up @@ -335,9 +336,9 @@ endif
# mirrored there.

ifeq (4.4,$(firstword $(sort $(MAKE_VERSION) 4.4)))
TEST_PREREQS := generate-grpc .WAIT build-dcp build-dcptun-containerexe delay-tool lfwriter-tool parrot-tool parrot-tool-containerexe
TEST_PREREQS := generate-grpc .WAIT build-dcp build-dcptun-containerexe delay-tool lfwriter-tool parrot-tool parrot-tool-containerexe debuggee-tool cache-delve
else
TEST_PREREQS := generate-grpc build-dcp build-dcptun-containerexe delay-tool lfwriter-tool parrot-tool parrot-tool-containerexe
TEST_PREREQS := generate-grpc build-dcp build-dcptun-containerexe delay-tool lfwriter-tool parrot-tool parrot-tool-containerexe debuggee-tool cache-delve
endif

.PHONY: test-prereqs
Expand All @@ -362,7 +363,7 @@ test: test-prereqs ## Run all tests in the repository
# NOTE: Keep scripts/test-ci.ps1 in sync with test-ci (see comment above TEST_PREREQS).
.PHONY: test-ci
test-ci: test-ci-prereqs ## Runs tests in a way appropriate for CI pipeline, with linting etc.
$(GO_BIN) test ./... $(TEST_OPTS)
$(GO_BIN) test -tags integration ./... $(TEST_OPTS)

## Development and test support targets

Expand Down Expand Up @@ -425,6 +426,18 @@ else
GOOS=linux $(GO_BIN) build -o $(PARROT_TOOL_CONTAINER_BINARY) github.com/microsoft/dcp/test/parrot
endif

# debuggee tool is used for DAP proxy integration testing.
# CLEAR_GOARGS ensures it is built for the native architecture (required for Delve debugging).
.PHONY: debuggee-tool
debuggee-tool: $(DEBUGGEE_TOOL)
$(DEBUGGEE_TOOL): $(wildcard ./test/debuggee/*.go) | $(TOOL_BIN)
$(CLEAR_GOARGS) $(GO_BIN) build -gcflags="all=-N -l" -o $(DEBUGGEE_TOOL) github.com/microsoft/dcp/test/debuggee

# cache-delve ensures the Delve debugger is downloaded for DAP tests
.PHONY: cache-delve
cache-delve:
@$(CLEAR_GOARGS) $(GOTOOL_BIN) github.com/go-delve/delve/cmd/dlv version

.PHONY: httpcontent-stream-repro
httpcontent-stream-repro:
dotnet build test/HttpContentStreamRepro.Server/HttpContentStreamRepro.Server.csproj
Expand Down
210 changes: 210 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -3440,6 +3440,216 @@ https://github.com/google/gnostic-models/blob/v0.7.0/LICENSE

----------------------------------------------------------

github.com/google/go-dap v0.12.0 - Apache-2.0
https://github.com/google/go-dap/blob/v0.12.0/LICENSE


Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions.

"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.

"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.

"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.

"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).

"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.

"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."

"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:

(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and

(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and

(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and

(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.

You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

----------------------------------------------------------

----------------------------------------------------------

github.com/google/pprof/profile v0.0.0-20260115054156-294ebfa9ad83 - Apache-2.0
https://github.com/google/pprof/blob/294ebfa9ad83/LICENSE

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

**Developer Control Plane (DCP)** is a local application runner for multi-service, polyglot applications. It integrates your code, emulators, and containers to give you a development environment with minimum remote dependencies and maximum ease of use.

DCP exposes a Kubernetes-compatible API (using custom resource definitions) for describing and managing workloads. Object status change notifications allow clients to monitor the state of the application as the run progresses.
DCP exposes a Kubernetes-compatible API (using custom resource definitions) for describing and managing workloads. Object status change notifications allow clients to monitor the state of the application as the run progresses.

DCP integrates with development tools such as [Microsoft Aspire](https://learn.microsoft.com/dotnet/aspire/), Visual Studio, and VS Code, enabling IDE-based execution and debugging of application components.

Expand All @@ -14,7 +14,7 @@ DCP integrates with development tools such as [Microsoft Aspire](https://learn.m
- **IDE Integration**: Execute and debug application components directly from VS Code or Visual Studio
- **Kubernetes-Compatible API**: Describe workloads using a language-agnostic API built on Kubernetes custom resource definitions
- **Process & Container Lifecycle Management**: Automatically manage the lifecycle and cleanup of executed processes and containers
- **Network management**: DCP has several facilities to help with service-to-service and service-to-container communication such as dynamic port allocation, injecting port information into services and containers via command-line arguments and environment variables, stable ports for clients of multi-replica services, isolated container networks, and a tunnel for container-to-host communication
- **Network management**: DCP has several facilities to help with service-to-service and service-to-container communication such as dynamic port allocation, injecting port information into services and containers via command-line arguments and environment variables, stable ports for clients of multi-replica services, isolated container networks, and a tunnel for container-to-host communication

DCP is implemented as a single binary (`dcp`) that can run in one of several modes depending on how it is invoked. The main modes of operation are:
- `dcp start-apiserver` - runs the DCP API server that holds the workload model and exposes a Kubernetes-compatible API for managing workloads using the [Tilt API server library](https://github.com/tilt-dev/tilt-apiserver). The API server is Kubernetes-compatible but using custom resource definitions. This is the main entry point for DCP; users or other tools such as Aspire invoke DCP in this mode to launch the API server and controllers.
Expand Down
Loading
Loading