Граф коммитов

321 Коммитов

Автор SHA1 Сообщение Дата
Noah Gilson f8289b69bd
Update Linux Tests (#2052)
9.0 Shipped on Linux so we should update the tests. These tests do test the live availability of what's available and it's good that they do so they actually test the functionality and not some mock data, which wouldnt be a relevant test. That does mean they need to get updated, but I think the messaging is pretty clear and the impacts aren't so bad.
2024-11-20 13:48:53 -08:00
Noah Gilson 814208c72c
Improve FindPath API for Finding SDK w/out Feature Band (#2042)
* Fix acquisition error on non fully qualified version

The new, unreleased code for getting a feature band of a sdk version try catches when it tries to get the band. It will not throw if there is no band in the string which can be expected in certain cases, but it still posts an error to the event stream. Posting an error to the event stream causes the error to bubble up to the user even if it is caught. We need to take some additional action here so the user doesn't see an error popup for something that's not an error. This is blocking our release with all of the findPath features.

Resolves https://github.com/dotnet/vscode-dotnet-runtime/issues/2015

Version updates are to update the shas of the internal packages which got updated.

* Update imports

* remove extra else
2024-11-14 23:28:51 +00:00
Noah Gilson 1916ef1d8f
2.2.4 Branding (#2043)
Get Ready for the 2.2.4 release.
Ya, 2.2.3 is not released yet. But I wanna release this one soon after.
2024-11-14 14:34:09 -08:00
Noah Gilson e74af1cd30
2.2.3 branding (#2014) 2024-11-12 09:53:54 -08:00
Noah Gilson 3a41cf0924
Improve SDK lookup in PATH API (#2010)
* Don't use setting in SDK PATH lookup

* Add worst case scenario no which or where on path

* Add test for finding sdk path and finding path setting on find path

* Fix test

* Respond to linter

* Fix typo

* Fix the test
2024-11-11 09:24:17 -08:00
Noah Gilson ffa74bacad
Add API Option to Reject Preview Runtimes & SDKs (#2011)
* add flag to skip previews

* Improve the tests
2024-11-08 12:15:38 -08:00
Noah Gilson c86868ff55
Consider Runtime Patch Versions in PATH API (#2008)
* Consider Runtime Patch Versions in PATH API

The C# extension will now fail if the runtime is not 8.0.10 or higher on mac so we need to support patch version lookup.

Sadly we cannot migrate to semver because semver rejects strings such as 8.0 which are allowable in many parts of our code and APIs.

This also adds code for SDK lookup but no test since that's harder to test, like remarked in the code.

* Fix test

* Fix the version logic to not only parse major.minor version

We now parse all of the version, dont need to do this logic.
2024-11-05 22:42:31 +00:00
Noah Gilson c269248ea1
Fix .NET Version Parsing for FindPath API (#2000)
* Fix Version Parsing for FindPath API

The old comparison used string comparison which is fine for versions of dotnet until dotnet 10. '10.0' < '9.0'. 😂 This fixes that. I suppose it's a bit clunky and we could dedupe / share the compare logic but it's not being used elsewhere in this same form, so I don't plan to do that right now. There are also places that depend on the output versions being strings, so that's a problem to change that now too. It probably should have been a class from the beginning but unfortunately that just isn't how it was initially done, which is understandable because the scope at that time was much more limited.

* Fix some of the code

* Fix test

* Dont comment out the other tests

* update comment
2024-10-25 12:03:36 -07:00
Noah Gilson b63c499e88
2.2.2 Branding (#1998)
* 2.2.2 Branding

* Add information about what's in this release.

* Consider additional change for the release
2024-10-24 09:23:11 -07:00
Noah Gilson a363f338bc
Always Return `IDotnetAcquireResult` or `undefined` instead of sometimes (#1999)
* Always Return `IDotnetAcquireResult` or `undefined` instead of sometimes a string on `findPath` API

The current findPath API can return a `IDotnetAcquireResult` (which is just an object with `dotnetPath : string`) if the existingDotnetPath is returned, but otherwise it will return a string. This is a mistake. I would like to break it as quickly as possible before it has more widespread adoption.

 The class gives us more flexibility to add more information in the future besides the path string without breaking people.

I also added return type annotations to the functions so this does not happen again.

* Fix comment

* Fix test
2024-10-23 22:59:55 +00:00
Noah Gilson 2ff7c2ac4d
Check Architecture on .NET FindPath API (#1974)
* Fix incorrect PATH echo

* Add Architecture Check into Find PATH API

We had a discussion about how Mac users tend to need the arm64 runtime and often have the x64 host installed on their PATH. This was a big concern. With global installs at least we can still rely on the output from `dotnet --info` for now, so we decided to add this back in.

* Fix test, the runtime install does not have an arch printed so we cant quite use it to check properly

* Fix test

* Fix test

* undo comment out

* Fix a very terrible bug due to a typo

* code cleanup
2024-10-22 11:37:31 -07:00
Noah Gilson f52e9de3d1
2.2.1 Branding & Dependencies (#1983)
* Update dependencies and 2.2.1 branding

* Respond to breaking changes from libs

* update shas
2024-10-15 11:43:22 -07:00
andysleigh 77c59843ba
Make all mkdirSync calls use the recursive option (#1986)
By passing recursive:true to all mkdirSync calls we protected against
issues that may arise from parent directories not already existing.

Fix #1985

Co-authored-by: Andy Sleigh <andy.sleigh@healthhero.com>
2024-10-15 10:03:44 -07:00
Noah Gilson 389f40e290
Branding for version 2.2.0 (#1971)
* Branding for version 2.2.0

Bumping to a new major version considering the stabilization of the new dotnet find path API.

* Update vscode-dotnet-runtime-extension/CHANGELOG.md
2024-10-07 13:19:31 -07:00
Noah Gilson 2a876ace5d
Permit Installing .NET via a package.json file (#1976)
* Permit Installing .NET via a package.json file

Extensions that rely on .NET often have a slow startup time due to our existing API.

For extensions that want the .NET runtime to be installed as soon as possible, they can now also make an API request in their package.json.

They should add a [IDotnetAcquireContext](https://github.com/dotnet/vscode-dotnet-runtime/blob/main/vscode-dotnet-runtime-library/src/IDotnetAcquireContext.ts) object in a section titled 'x-dotnet-acquire' to do so. They don't need to include the `requestingExtensionId`, since this is already in their `package.json`,

This should go at the root of a `package.json`, and not in the `contributes` section.
```
"x-dotnet-acquire": {
    "version": "8.0",
    "mode": "aspnetcore"
}
```

We run the install on startup and also whenever a new extension is installed via the onDidChange API. https://code.visualstudio.com/api/references/vscode-api#Extension&lt;T&gt;

You can easily test this by modifying the SDK extension and adding this, then packging t with `vsce`, installing it, and running the Runtime Extension under the Debug tab. If you do so, you will see that:

If you install a new extension, the request is made.

If you had already installed the extension, the request is also made.

* Respond to linter

* Add a very basic test.

* Fix typo

* Fix typo
2024-10-04 09:22:04 -07:00
Noah Gilson 40d1a8bc66
Add new API `dotnet.findPath` to find the .NET host to use if one already exists that meets a requirement. (#1954)
* update PATH setting description to make it more clear

* add very prototype code

* add tests and get runtime check working

* Fix some bugs

* Consider that the .NET SDK can also satisfy the Runtime

* fix typo

* fix the tests

* fix

* fix another test

* Fix tests even more

* undo yarn changes

* fix the final test hopefully

* undo yarn changes

* Dont use dotnet.exe as its not platform agnostic

* use "markdownDescription" for nicer rendering in VSCode

* Tweak call to action to use VSCode mechanisms first, then our standard installation docs, and only in the last resort mention PATH munging.

* Fix URLs

* Move to version 2.1.7

* add basic command'

* Ignore existingPath setting for SDK installs.

C# DevKit never uses the path returned by our installation. This means users would think this path would change the sdk that this extension uses but that is not the case. This path to dotnet.exe is meant to be the path for the runtime for extensions to run on, and not the SDK path. It's confusing that the setting was used for both and a misstep in a way. DevKit is the main caller of this API so we think we can change this with minimal breakage.

* Remove warning setting and fix invalid path setting

The setting must be accessed earlier. This means vscode will need to be restarted. We also update the readme and messaging a bit so its more publicly clear in all places what the setting is for.

* Fix test

* Refactor code out into a Validator for Conditions

dotnet --list-runtimes and more need to be called in more places. This is a separate task so it should be done. I did not change the code in any way except for adding the requirement clause type.

* Prepare code to validate the path

* add a lot of prototypey code

* add comment for future work

* merge with main

* look up the architecture

* Improve the code

* Go 2 Directories Up to find the True Path on PATH

* Final initial loop of API code

* Fix bug parsing list runtimes

* Add tests

* Fix test and search for where if its not installed

* Consider where may return multiple values

* Fix test

* tests mostly working

* code cleanup - get rid of extra api to set env

* Restore the env var so we dont edit it for other processes

* Uncomment the remaining tests

* Respond to lint

* fix callback

* Fix path to be os-gnostic

* Only search for where on windows and also search for which

* provide env to the find command so /usr/bin/whcih can be used

* Call which which instead of which so the correct command can be found

* Install 3.1 instead of 7.0 because the DTL CI machines seem to have a 7.0 SDK on them :zany:

* give up on arch check for now because it is inaccurate, see comment

* Add github issue in comment for context

* make linter happy

* Respond to PR feedback

* Migrate to connection strings

Resolves https://github.com/dotnet/vscode-dotnet-runtime/issues/1958

The old application insights key was created by @LakshanF, when we migrated to the new vscode-extension-telemetry service, their API had a breaking change to require a connection string instead of an insights key. https://github.com/dotnet/vscode-dotnet-runtime/pull/1948

The connection key can be public and is hard coded. Our existing key has been in our open source, source code for many years. Here is what their guidance says: https://www.npmjs.com/package/@vscode/extension-telemetry

> Follow guide to set up Application Insights in Azure and get your connection string. Don't worry about hardcoding it, it is not sensitive.

* Respond to PR Feedback

---------

Co-authored-by: Chet Husk <chusk3@gmail.com>
2024-09-30 22:31:09 +00:00
Noah Gilson d13a8db5ce
Add await that eslint asked to remove (#1957)
TS Lint failed this  `Unexpected `await` of a non-Promise (non-"Thenable") value`.

But the callback can be a promise type. Its just not smart enough to realize that.
2024-09-23 15:40:59 -07:00
Noah Gilson 00f70442ab
Update `existingDotnetPath` to only take affect if it works. (#1946)
* update PATH setting description to make it more clear

* add very prototype code

* add tests and get runtime check working

* Fix some bugs

* Consider that the .NET SDK can also satisfy the Runtime

* fix typo

* fix the tests

* fix

* fix another test

* Fix tests even more

* undo yarn changes

* fix the final test hopefully

* undo yarn changes

* Dont use dotnet.exe as its not platform agnostic

* use "markdownDescription" for nicer rendering in VSCode

* Tweak call to action to use VSCode mechanisms first, then our standard installation docs, and only in the last resort mention PATH munging.

* Fix URLs

* Ignore existingPath setting for SDK installs.

C# DevKit never uses the path returned by our installation. This means users would think this path would change the sdk that this extension uses but that is not the case. This path to dotnet.exe is meant to be the path for the runtime for extensions to run on, and not the SDK path. It's confusing that the setting was used for both and a misstep in a way. DevKit is the main caller of this API so we think we can change this with minimal breakage.

* Remove warning setting and fix invalid path setting

The setting must be accessed earlier. This means vscode will need to be restarted. We also update the readme and messaging a bit so its more publicly clear in all places what the setting is for.

* Fix test

---------

Co-authored-by: Chet Husk <chusk3@gmail.com>
2024-09-18 16:49:50 -07:00
Noah Gilson 6911490b30
Upgrade to the newest version of extension telemetry (#1948)
* upgrade to the newest version of extension telemetry

* remove vscode-extension-telemetry where its not needed

* Update vscode-test as well since its a new library
2024-09-18 13:18:19 -07:00
Noah Gilson e9c440e1e8
Migrate to ESLint (#1944)
* get eslint running but its failing a lot of checks

* Fix the linting after migration

* Fix many errors

* 65 errors to go

* fix almost every lint issue

* clean lint

* Remove references to tslint

* dont install eslint as it is already here

* install eslint

* update eslint

* dont empty cache because eslint is failing to register the types that exist

* try to help eslint find the files for type defs

* Set typescript resolver

* Fix imports

* Add some import plugin but still cant import vscode correctly

* install eslint globally

* skip npm installl

* add imports

* try to fix the import issue

* build before hand so the types are picked up -_____-

* Revert "build before hand so the types are picked up -_____-"

This reverts commit e5381b42df.

* rollback to eslint 8 but still run build
2024-09-10 21:39:51 -07:00
Noah Gilson 50261827f3
2.1.6 branding (#1931) 2024-08-20 16:25:38 -07:00
Noah Gilson ffc2590f5e
2.1.5 branding (#1929)
* Fix an issue parsing promises

We changed the function `getPromise` to not use a lock in version 2.1.2. This was a mistake. I thought it would return the unresolved `Promise` object if it was a sync function. That is not the behavior, instead it will skip that line of code and return null even if the promise exists. This causes multiple processes to try to grab the installer file handle.

When one fails to grab the file handle, it causes a chain-reaction of cascading failures for concurrent requests, because that is supposed to be blocked from happening.

In addition, the check I added to kill the sudo process once it is finished runs on all platforms despite the master sudo process only being present on Linux, which has resulted in some higher timeout rates. We need to not do this on other platforms.

* Fix tests

we need to clear the promise out after each test is done

* dont call uninstall all in sdk test, its the wrong command

* reset event stream in the test

* 2.1.4 branding - new version due to vscode marketplace outage causing failure to upload version 2.1.3 correctly

* 2.1.5 branding prepare for a new version

bump the version after 2.1.4 was released and skipping a version due to vscode outage
2024-08-20 14:27:36 -07:00
Noah Gilson 95432c0296
2.1.4 branding (#1928)
* Fix an issue parsing promises

We changed the function `getPromise` to not use a lock in version 2.1.2. This was a mistake. I thought it would return the unresolved `Promise` object if it was a sync function. That is not the behavior, instead it will skip that line of code and return null even if the promise exists. This causes multiple processes to try to grab the installer file handle.

When one fails to grab the file handle, it causes a chain-reaction of cascading failures for concurrent requests, because that is supposed to be blocked from happening.

In addition, the check I added to kill the sudo process once it is finished runs on all platforms despite the master sudo process only being present on Linux, which has resulted in some higher timeout rates. We need to not do this on other platforms.

* Fix tests

we need to clear the promise out after each test is done

* dont call uninstall all in sdk test, its the wrong command

* reset event stream in the test

* 2.1.4 branding - new version due to vscode marketplace outage causing failure to upload version 2.1.3 correctly
2024-08-20 13:23:26 -07:00
Noah Gilson 909fcb1bae
Fix an issue parsing promises (#1927)
* Fix an issue parsing promises

We changed the function `getPromise` to not use a lock in version 2.1.2. This was a mistake. I thought it would return the unresolved `Promise` object if it was a sync function. That is not the behavior, instead it will skip that line of code and return null even if the promise exists. This causes multiple processes to try to grab the installer file handle.

When one fails to grab the file handle, it causes a chain-reaction of cascading failures for concurrent requests, because that is supposed to be blocked from happening.

In addition, the check I added to kill the sudo process once it is finished runs on all platforms despite the master sudo process only being present on Linux, which has resulted in some higher timeout rates. We need to not do this on other platforms.

* Fix tests

we need to clear the promise out after each test is done

* dont call uninstall all in sdk test, its the wrong command

* reset event stream in the test
2024-08-20 11:25:33 -07:00
Noah Gilson 524b14e992
Don't set HOME environment variable (#1923)
* prevent proxy settings from setting HOME

* Update changelog.md
2024-08-16 14:00:59 -07:00
Noah Gilson 8bc2ecfdc3
Allow uninstallation of global .NET Installations (#1897)
* Add failure handling for file integrity check

This is now what is hitting the EPERM and ENOENT errors.
We need to skip the check and see what happens from here, such as allowing to elevate via windows.

This also adds specific handlers for when we fail to download the SDK.

* elevate on windows

* Retry if no permission is available the first time

Need to double check that cancelling is handled properly now that its a promise reject

* respond to linter

* Add API to uninstall any install

* Add tests

* undo bad save

* dont uninstall if there are multiple owners

* add some basic uninstall capability

* allow elevation on mac

* fix promise chain a bit, may need to await still

* add uninstall functionality to linux

* add uninstall on linux

* fix merge

* Add a test

* add ui element to pick uninstall

we need to fix the uninstallglobal functoin logic to print out and such still
then test it

* add some output, need to test and check graveyard

* add uninstall events

* fix build

* Fix uninstall to pop up above window

* ui changes per request

* fix test

* fix merge err

* fix mac test

* fix name option

* fix promise logic

* fix promise code again xd

* Add icons for the extension

* add icons to shield and uninstall

* set minimum vscode version to require new icons

* dont sort if no install exists

* use noninteractive frontend in master process to fix dpk unable to re open stdin on uninstall

* try to exit sudo process master and set env var for stdin uninstall fix

* fix eventstream

* fix detection logic for uninstall

* add -y to uninstall

* fix bug with uninstall

* add version check for when disk is full and version string ui fails

* also kill sudo process on uninstall

* use -f to delete file as they may not exist and we dont want to fail due to this at the end

* add -y to update

* respond to linter

* remove unnecessary img

* respond to linter

* respond to pr feedback

* fix when extension may have null record
2024-08-15 22:22:20 +00:00
Noah Gilson 20261b57c3
Don't fail if the user is offline (#1898)
* add function to call in extensoin.ts for offline mode acceptAlternativeVersions on acquirectx

* refactor version helper functions outside of version resolver

version resolver is a class that is based around using the internet. It probably should have been like this before.

* add code to check existing installing versions

* Update test name

* respond to linter

* Update lint

* Fix bugs and add messages

* respond to pr feedback
2024-08-15 19:29:03 +00:00
Noah Gilson c2c90e5795
Update Axios (#1913)
* update axios

* update axios to latest

* remove unnecessary dependency

* remove axios

this is not needed here

* remove axios

* reset sha integrities
2024-08-14 13:43:15 -07:00
Noah Gilson cc797dfedb
✒️ Enable ESRP Signing on the .VSIX (#1885)
* Add fake MSBuild project to allow signing VSIX and JS

* Sign JS

* Add step to pipeline

* Restrict signing package version

* Add scripts to install signing tool locally

* only go up 1 directory

* fix display name

* fix whitespace -__-

* add build step for installing microbuild

* add sign type parameter

* dont produce alpha package in official drop

* add sign type parameter to default pipeline

* dont publish package in another directory as this causes other issues, instead copy the artifact

* acknowledge the existence of a document explaining the release and other maintenance processes

this information is more suited for internal repo changes.

* change internal stream to a different signing stream

* add dotnet public for notargets sdk

* reduce to 1 feed

* use a different feed

* Use dotnet team

* use explicit feed source

* add feed auth

* fix comment

* rename unsigned vsix so both can get dropped

* use the other type of slash for REN -__-

* try to fix path

* add packages folder with empty gitignore

* figure out dir

* fix rename command

* Fix rename

the 'unsigned' one is actually the signed one

* Fix JS File Sign

dist is at the root of each but this runs in a segregated folder

* produce binlogs and try to fix the path

* Publish SDK Extension Logs

* fix signing

* remove bad slash in path that gets parsed incorrectly

* remove \

* fix microbuild to be installed b5 js signing

* update gitignore

* fix gitignore again

* [REVERT THIS] Add a file A.ts to see if files are signed alphabetical or only non minified JS is signed

* [REVERT THIS] Add content to js to see if minify changes signing

* sign js after webpack

maybe we can sign it after the bundle is created and it will  still be able to edit the bundle vsix internals? I thought not but perhaps extension.js is getting replaced by the webpack, so lets see if this works.

* Revert "[REVERT THIS] Add content to js to see if minify changes signing"

This reverts commit ecacc6830b.

* Revert "[REVERT THIS] Add a file A.ts to see if files are signed alphabetical or only non minified JS is signed"

This reverts commit 1ab6ea1873.

* Update name of incorrect task.
2024-08-12 11:04:24 -07:00
Noah Gilson b1e85ced25
Fix offline detection (#1907)
* Fix offline detection

8.8.8.8 blocks our requests. We can use microsoft.com instead, if our app is checking using microsoft, well, if microsoft is down we've learned that the app will have problems anyways , so if that is down it doesnt matter as much.

* fix variable name

* respond to linter

* respond to PR feedback, fix whitespace and ??
2024-08-06 21:57:15 +00:00
Noah Gilson 020b9da335
Update node and typescript dependencies (#1900) 2024-07-31 15:15:55 -07:00
Noah Gilson a92e3c809a
Add API to uninstall just one runtime (#1894)
* Add API to uninstall any install

* Add tests

* undo bad save

* dont uninstall if there are multiple owners
2024-07-30 22:35:51 +00:00
Noah Gilson a9cbf6ba66
2.1.2 branding (#1893) 2024-07-30 11:28:09 -07:00
Noah Gilson 6c4b583e65
Version 2.1.1, Hot fix for installation record tracking (#1888)
* Hot fix for installation record tracking

We renamed it from 'key' to 'id' because the string 'key' is filtered out of all log events via vscode because 'key' looks like a secret. We did this in a rush and vendor testing did not have pre-existing machine state to realize the old data structure would still be in the local memory for pre-existing users. This converts the data in memory to the new type.

* Prevent adding corrupted installation records into the data
2024-07-17 15:56:43 -07:00
Noah Gilson 8e5b448c05
2.1.0 Branding (#1883) 2024-07-16 23:44:05 +00:00
Noah Gilson aefdcf3a60
Remove references to the string 'key' and change them to 'id' (#1882)
* Change 'InstallKey' terminology to 'InstallId'

VS Code has a filter for the string 'key' -- this causes our telemetry to be dropped when referencing the term 'install key' as it thinks it may be a secret. 48ba01b589/src/vs/platform/telemetry/common/telemetryUtils.ts (L336)

Id is safe. I talked with the vscode team and there is no good alternative besides turning off all telemetry safety scanning, which I didn't want to do.

Hence, 'key' --> 'id'

* rename key to id

* rename remaining instances of 'id'

* Improve names of types
2024-07-16 23:07:21 +00:00
Noah Gilson ac6de3d303
Fix Linux Update (#1874)
* add additional test for acquire status

this bug could exist with the current tests, need to prevent this bug.

* remove the extra update
2024-07-12 10:10:06 -07:00
Noah Gilson e4ef1363d5
Add AcquireStatus support for ASP.NET runtimes (#1869)
The C#DevKit team would like this API to support ASP.NET Runtimes as well.
2024-07-11 09:27:34 -07:00
Noah Gilson a5d3ad5d51
Timeout Installer.Exe (#1859)
* Make Command Executor return an object instead of string

This prevents us from having to run commands twice to get the status and stdout.

Caution must be taken to make sure that the assumptions here in what is returned as stdout vs stderr are correct.

Furthermore, when looking at the code, I saw something that looked just plain incorrect, so I will need to investigate that by adding the TODO before merge

* Fix Execution Type Parsing

* fix linting issue

* Fix line parsing logic

* Fix tests

* Run icacls to set execute permissions

* move to sha256

* remove unnecessary code

* Remove todo that should go in another PR

* Remove redundant trim

* rename class CommandProcessorOutput since it didnt match CommandExecutor

* Rename class file

* Report json object for failed permissions.

* Fix test to use correct folder

* fix lint

* Fix installer file deletion

* respond to linter

* Try to Add a Timeout for Installer.Exe

This will allow us to not count times when users never respond to the installer as a failure and or remediate when the installer is taking too long.

* Add .editorconfig for style settings

* try  forking

* just rely on node timeout

* Handle .net installer timeouts

* remove unnecessary import

* fix options check

* Fix option

* Include options that are needed to preserve the working env on a general command execution

* Add passive option to automate dialog

* dont use english url
2024-07-09 23:52:13 +00:00
Noah Gilson e68687f05e
2.0.9 branding (#1852)
* 2.0.8 branding

* 2.0.9 branding for future

need to update the changelog in the future

* Update vscode-dotnet-runtime-extension/CHANGELOG.md
2024-07-03 14:47:50 -07:00
Noah Gilson 8cabdcf3a7
Prevent EPERM error hit when trying to open installer.exe (#1855)
* Make Command Executor return an object instead of string

This prevents us from having to run commands twice to get the status and stdout.

Caution must be taken to make sure that the assumptions here in what is returned as stdout vs stderr are correct.

Furthermore, when looking at the code, I saw something that looked just plain incorrect, so I will need to investigate that by adding the TODO before merge

* Fix Execution Type Parsing

* fix linting issue

* Fix line parsing logic

* Fix tests

* Run icacls to set execute permissions

* move to sha256

* remove unnecessary code

* Remove todo that should go in another PR

* Remove redundant trim

* rename class CommandProcessorOutput since it didnt match CommandExecutor

* Rename class file

* Report json object for failed permissions.

* Fix test to use correct folder

* fix lint

* Fix installer file deletion

* respond to linter
2024-07-03 14:10:51 -07:00
Noah Gilson cb56b8b784
2.0.8 branding (#1851) 2024-07-01 13:22:55 -07:00
Noah Gilson 3659364c3f
Add Support for ASP.NET Installation (#1843)
* wip - separate out worker paths so contexts are needed for every call, but there is less potential for things to go wrong and less code duplication

* Further isolate code, need to isolate the install tracker now

* migrate install tracker to use event stream instead of being coupled to the context

* move installtracker to a singleton and fix tests

the install tracker really only needs to exist once since the event stream and extension state are global, this will prevent errors from different states of promises and simplify our code with this design pattern to decouple the installation tracking mechanism from the context object, which will reduce code duplication for aspnet install feature additions

* Fix some issues with the test during code migration

* Fix issue with accessing instance

I forgot to ctrl s!

* Clean up logic with install key generation

* Remove duplicate source of truth for architecture

* Improve logging and error handling of install tracker

This class is super annoying to debug without better logging

* Update some broken components of the tests

* Prevent saying object object in the log output by expanding the object

* Tests working

We used to need to concat these tests results with different contexts but not any longer

* FIx uninstall all commands

* Fix the file rename

* Improve logging messages

* Add mode handling for aspnet

* Add ASP NET Support

* Add Generic -> Mode Specific Event Stream Class Hierarchy

* [wip] create events for all 'modal' events

* Dont hold a generic arg obj because it becomes too unwieldy

* Fix some issues with the test and sdk extension

* Add 'mode' to the acquire context

This will allow API callers to set the mode to call aspnet without having to write a new endpoint call. We can default to runtime for when it wasnt provided that would be the old behavior.

* Move 'installMode' into the acquire context

This allows API callers to provide the mode,
We remove it from the worker context to dedupe this and prevent 2x sources of truth.

Now this is a bit weird because some API endpoints will take the mode even though the API endpoint is only for one mode. We will just ignore the mode for that. Eventually we can try to transition all of the related calls to a single endpoint based on 'mode' which would simplify API usage.

* Code cleanup

* De-Dupe Test Code

* Add Requested Events to Republisher

* Update InstallKey pattern to include ~aspnetcore

This is a bit strange since - used to be for 'global' and ~ for architecture. There are only so many path safe characters to use, more importantly though we dont rely on the install key as the information for the install anymore, it is stored in the DotnetInstall object. ~ has logic in place to not account for a 'legacy' install, so ~ with aspnet (which would not have existed before arch was added) is also a bet that will work with pre-existing logic.

* fix build issues

* Add ASP.NET Directory Provider

* Only Report Total Success if Path exists

The path can be undefined if an error throws so its not a success

* Add ASP.NET API to sample extension

* Resolve Asp Net Runtime versions as Runtime versions

* Fix mistake on test

* Fix bug with install script param

* add source-map-support to allow build in CI

this got removed and passed earlier somehow

* respond to linter

* add source map support

* Respond to linter

* Add test for specific telemetry messages

* 2.0.7 branding

* Prevent circular import

* rewrite completion event so we can test the modaleventrepublisher

* fix linter issue

* Revert new test since the object is not mockable

* Get rid of check for event that cannot be published via mocks

* Fix bug where logging was not up to date

to prevent i/o costs the file is dumped at the end of error handling, but this means other events past error handling dont get added to the log. This fixes this.

* respond to pr feedback
2024-06-25 17:22:20 +00:00
Noah Gilson 0655891a09
Clean Up Dependency Tree & Update 3rd Party Notice 🏛️ (#1842)
* Remove 'Debug' As it's not used

* Remove 'Diff' as it's not used

* Remove 'es-abstract' as its not used

* Remove 'got' as its not used

* Remove http cache semantics from the main dependencies list

its just a sub dependency

* Remove 'p-retry' as its not used

* Remove 'public-ip' as its not used

* Remove tslint from dependencies, its not a dependency

* Increase attribution information for library dependencies

* Remove a ton of unused dependencies

* Clean out dependency tree

* Clean up sample extension dependencies

* Fix SDK Yarn.Lock

* Fix sample yarn.lock

* Reorder remaining licenses to match package.json

* add missing semver package that used to be included elsewhere by other dependencies

* Delete vscode-dotnet-runtime-extension/yarn-error.log

* Update readme.md with notices per industry standard

* Add back in ts-loader as it is required
2024-06-18 14:25:35 -07:00
Noah Gilson 611071b78f
[1/N] Add ASP.NET Support - Refactor Installation Worker (#1835)
* wip - separate out worker paths so contexts are needed for every call, but there is less potential for things to go wrong and less code duplication

* Further isolate code, need to isolate the install tracker now

* migrate install tracker to use event stream instead of being coupled to the context

* move installtracker to a singleton and fix tests

the install tracker really only needs to exist once since the event stream and extension state are global, this will prevent errors from different states of promises and simplify our code with this design pattern to decouple the installation tracking mechanism from the context object, which will reduce code duplication for aspnet install feature additions

* Fix some issues with the test during code migration

* Fix issue with accessing instance

I forgot to ctrl s!

* Clean up logic with install key generation

* Remove duplicate source of truth for architecture

* Improve logging and error handling of install tracker

This class is super annoying to debug without better logging

* Update some broken components of the tests

* Prevent saying object object in the log output by expanding the object

* Tests working

We used to need to concat these tests results with different contexts but not any longer

* FIx uninstall all commands

* Fix the file rename

* Improve logging messages

* fix indentation
2024-06-17 17:51:42 +00:00
Noah Gilson eb44baba8a
bump dependencies (#1838)
braces needs to be updated due to an issue with their newest release
2024-06-17 16:51:11 +00:00
Noah Gilson 79b9139089
Improve VS Code SDK Error Diagnosability (#1822)
* Introduce error to wrap all global sdk errors

* Wrap installation in success event to improve trackability

* Expose the original event name for property expansion

* Respond to linter

* Improve Error Message Specificity

* Update the event stream to use the right install key

* Update Errors to be EventBasedErrors that contain the Event Name

This is a mildly ugly pattern. See the PR description for more detail.

* Make legacy code throw an error instead of throwing a string

Throwing other object types up makes it harder for us to get the callstack etc

* Fix bug with install key management where it would not have -global or the architecture would be unspecified

* respond to linter

* Fix whitespace

* Fix whitespace
2024-06-10 14:15:49 -07:00
Noah Gilson 30beed1ede
2.0.6 branding (#1829) 2024-06-10 10:29:32 -07:00
Noah Gilson c75c9ce4ad
Track which Extensions Own Which Installs (#1748)
* WIP - Migrate Install Key strings to type to allow future flexibility with installs -- e.g. non-versioned install folder names so we can auto update. Start collecting more information during install about who installed it so we can ref count them for uninstalls. Does not migrate telemetry events or other code yet which needs to be experimented on further

* WIP - Migrate all code to use InstallKey Type & Fix Bugs

There are several big things here that might seem like small code changes.

1 - Before when we found a 'partial install' we would delete ALL local runtimes. I am astounded this exists. There are other extensions that might depend on those other runtimes and this just deletes it from underneath them. A partial install is rare, I think you need to pkill vscode or something since the install script runs out of proc. We consider an install partial if our code never got to mark it as installed after calling the install script. Its rare but does happen, at 2010 occurences out of 470k in recent days.

Renames a function which appears to handle partial installs to clarify it only manages local ones.

Gets rid of some unused functions or moves them to a better place.

Renames IInstallKey to DotnetInstall. The install key is the string representing the directory of the install. It shouldn't have two meanings.

Add logic for ref counting which extensoins own which installs.

* wip - record extension owner for installs

Fix record keeping to properly ref count extensions
Rename types to match standard better

Still need to figure out how to manage uninstalling and 'graveyard' as well as how to remove a 'legacy' install via version when it is a dotnetinstall object.

* Separate out 'graveyard' code or management of old installs to another class

* Dont pull files from dist - bad copilot, bad

* Update some more of the code to use new types

* update mock objects to get the build working

* respond to linter

* Add back in the old telemetry prooperties

I got rid of them because they are duplicated data. But TBH there are a lot of things that rely on the pre-existing property names. It would be much harder to query new and old data together if getting rid of them, so I added them back even though it causes some data duplication.

* Fix bugs with install management

* add missing semicolon lol

* Fix a bug with clearing out the installed list

The logic was missing a !.

* Fix Install Graveyard Logic

* Fix test logic for legacy installs

* Skip unnecessary preinstall local sdk check on global sdk

* Add back code to account for preinstall in sdk status check

* Remove unnecessary string checks

We never give a string to this class anymore so it's not needed

* Add event for when tracking installs messes up somehow

* Refactor classes out to many more files

* Respond to linter

* Isolate install tracking management to a separate class

* Clean up acquisition worker and remove unnecessary logic

* Port the worker to using an external install manager to isolate protected data

* Respond to linter concerns

* Remove potential deadlock with installation management

* Increase timeouts

With the change where you need to hold a lock to edit extension state to protect against timing challenges where an install is being added or deleted at the same time and can cause incorrect behavior, we had to slow down the product.

* Migrate to a singleton for install tracker so no dupliacte lock is created

* Working build for changing 'isRuntime' to mode for 'aspnet' 'sdk' or 'runtime'

* undo the singleton in test as the context needs to be per test

* remove the singleton pattern as it will result in a bug with multiple acquisition requests having a stale context

* Add Tests for Install Tracking with who owns what install

* improve timeout on test

* Revert "improve timeout on test"

This reverts commit a4168f6ec5.

* fix timeout

* Fix Test

* Fix Logic for adding pre existing installs

* Fix tests to be successful

* Code Cleanup & Remove Potential Tech Debt for Modes

remove places where we make assumptions on the existing model (sdk or runtime) to prevent future tech debt

* respond to linter

* Fix bug with context being in a different mode than a legacy installation

Mark old function as deprecated and add a comment explaining why our assumption there works

Fix possible bugs with context management where context could be a different mode than what was previously installed which could cause future bugs down the line that would be hard to track down

* Add back in removed events to prevent breaking old telemetry dashboards

* Final Code Review from Me

* Fix Test

* Remove circular dependency from test artifact

* add missing file header from refactor

* fix test

* delete directory per mode file as there is a git bug where changes in file caps is not being picked up

* Add back into directory file with proper capitilzation per git bug

* Add missing await which might cause test to fail inconsistently

* Make the lock based timeout based on the user setting for timeouts
2024-06-05 00:07:38 +00:00
Noah Gilson 14ab7565f0
2.0.5 Branding (#1782)
* 2.0.5 Branding

* Update CHANGELOG.md
2024-05-07 17:55:37 +00:00