Skip to content

Commit 94e3f06

Browse files
committed
add support for specifying provider on windows when wsl and hyperv are available
Signed-off-by: lstocchi <[email protected]>
1 parent 2bf66b4 commit 94e3f06

9 files changed

+687
-33
lines changed

package.json

+9
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,14 @@
5656
"step": 500000000,
5757
"scope": "ContainerProviderConnectionFactory",
5858
"description": "Disk size"
59+
},
60+
"macadam.factory.machine.win.provider": {
61+
"type": "string",
62+
"default": "wsl",
63+
"enum": ["wsl", "hyperv"],
64+
"scope": "ContainerProviderConnectionFactory",
65+
"description": "Provider Type",
66+
"when": "macadam.wslHypervEnabled"
5967
}
6068
}
6169
}
@@ -73,6 +81,7 @@
7381
},
7482
"dependencies": {
7583
"@podman-desktop/api": "^1.16.0",
84+
"compare-versions": "^6.1.1",
7685
"semver": "^7.6.0",
7786
"ssh2": "^1.16.0"
7887
},

pnpm-lock.yaml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/base-check.ts

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
/**********************************************************************
2+
* Copyright (C) 2025 Red Hat, Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*
16+
* SPDX-License-Identifier: Apache-2.0
17+
***********************************************************************/
18+
import type * as extensionApi from '@podman-desktop/api';
19+
20+
export interface FailureObject {
21+
description: string;
22+
docLinksDescription?: string;
23+
docLinks?: extensionApi.CheckResultLink;
24+
fixCommand?: extensionApi.CheckResultFixCommand;
25+
}
26+
27+
export abstract class BaseCheck implements extensionApi.InstallCheck {
28+
abstract title: string;
29+
abstract execute(): Promise<extensionApi.CheckResult>;
30+
31+
protected createFailureResult(failureObject: FailureObject): extensionApi.CheckResult {
32+
const result: extensionApi.CheckResult = { successful: false, description: failureObject.description };
33+
if (failureObject.docLinksDescription) {
34+
result.docLinksDescription = failureObject.docLinksDescription;
35+
}
36+
if (failureObject.docLinks) {
37+
result.docLinks = [{ url: failureObject.docLinks.url, title: failureObject.docLinks.title }];
38+
}
39+
if (failureObject.fixCommand) {
40+
result.fixCommand = {
41+
id: failureObject.fixCommand.id,
42+
title: failureObject.fixCommand.title,
43+
};
44+
}
45+
return result;
46+
}
47+
48+
protected createSuccessfulResult(): extensionApi.CheckResult {
49+
return { successful: true };
50+
}
51+
}
52+
53+
export class SequenceCheck extends BaseCheck {
54+
title: string;
55+
56+
constructor(
57+
title: string,
58+
private checks: BaseCheck[],
59+
) {
60+
super();
61+
this.title = title;
62+
}
63+
64+
async execute(): Promise<extensionApi.CheckResult> {
65+
for (const check of this.checks) {
66+
const result = await check.execute();
67+
if (!result.successful) {
68+
return result;
69+
}
70+
}
71+
return this.createSuccessfulResult();
72+
}
73+
}

0 commit comments

Comments
 (0)