Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DSC v3 Export #5319

Merged
merged 8 commits into from
Mar 31, 2025
Merged

DSC v3 Export #5319

merged 8 commits into from
Mar 31, 2025

Conversation

JohnMcPMS
Copy link
Member

@JohnMcPMS JohnMcPMS commented Mar 25, 2025

Change

Adds a more generic GetAllUnits(Async) export function to the ConfigurationProcessor. This produces full configuration units, which may then differ from the given unit's type. This models the DSC v3 Exporter resource type. The implementation of this function prefers the full implementation from the processor, but if not provided it can fall back to the previous GetAllSettings function and synthesize results.

Implements both the "all settings" and "all units" functionality for the DSC v3 processor. This in turn is done through the only DSC v3 option, export.

Validation

Adds a new test resource that manages an arbitrary JSON file via the top-level-object's properties.
Adds test command that can invoke export on an arbitrary DSC v3 resource target.
Adds unit tests for DSC v3 export functionality.
Adds E2E test for export of JSON resource.

Microsoft Reviewers: Open in CodeFlow

@JohnMcPMS JohnMcPMS requested a review from a team as a code owner March 25, 2025 00:21
@@ -159,6 +164,7 @@ private static int GetHRForMethod(string method)
case Get: return ErrorCodes.WinGetConfigUnitInvokeGet;
case Set: return ErrorCodes.WinGetConfigUnitInvokeSet;
case Test: return ErrorCodes.WinGetConfigUnitInvokeTest;
case Export: return ErrorCodes.WinGetConfigUnitInvokeGet;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it intentional to use same error code for export and get?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was rationalized laziness; we use the same verb for the public functions (get), so it seemed appropriate that to use the same error code. These are also more about the type of action we are taking than the actual specific action. And both get(one) and get(all) are reads.

If you think there is a reason to have another error code though, it can be added.

// Licensed under the MIT License.
#pragma once
#include "DscCommandBase.h"

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: surround all the test files with AICLI_DISABLE_TEST_HOOKS like TestCommand file does? I saw DscTestFileResource and this DscTestJsonResource missing them, both .h and .cpp.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While that might save a few seconds of compile time, it shouldn't have any effect on the binary produced as the optimizer should be tossing the unreferenced code.

@@ -84,6 +84,9 @@ namespace winrt::Microsoft::Management::Configuration::implementation
GetAllConfigurationUnitSettingsResult GetAllUnitSettings(const ConfigurationUnit& unit);
Windows::Foundation::IAsyncOperation<GetAllConfigurationUnitSettingsResult> GetAllUnitSettingsAsync(const ConfigurationUnit& unit);

Configuration::GetAllConfigurationUnitsResult GetAllUnits(const ConfigurationUnit& unit);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Configuration::GetAllConfigurationUnitsResult GetAllUnits(const ConfigurationUnit& unit);
GetAllConfigurationUnitsResult GetAllUnits(const ConfigurationUnit& unit);

nit: consistency, and following 2 places in this file

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is actually an intentional break with what I now think wasn't the best decision on clarity around public vs private type references.

@@ -54,5 +57,49 @@ protected override bool ApplySettingsInternal()
{
return this.processorSettings.DSCv3.SetResourceSettings(this.UnitInternal, this).RebootRequired;
}

/// <inheritdoc />
protected override IList<ValueSet>? GetAllSettingsInternal()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From reading the caller implementation, this GetAllSettingsInternal() is for completeness, and the ConfigurationProcessor implementation will always go to GetAllUnitsInternal()?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the caller invokes GetAllSettings, this will still be called. If we want to deprecate GetAllSettings though, this code could be migrated to the ConfigurationProcessor implementation and it could be updated to use the GetAllUnits interface as well.

@@ -541,6 +556,13 @@ namespace Microsoft.Management.Configuration
IGetAllSettingsResult GetAllSettings();
}

[contract(Microsoft.Management.Configuration.Contract, 4)]
interface IGetAllUnitsConfigurationUnitProcessor requires IConfigurationUnitProcessor
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do this interface and above IGetAllUnitsResult need to be registered in appxmanifest?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No; this interface is "internal" (and I would have created a separate internal IDL if I had had the foresight).

@JohnMcPMS JohnMcPMS merged commit 511d4f9 into microsoft:master Mar 31, 2025
9 checks passed
@JohnMcPMS JohnMcPMS deleted the dscv3-export branch March 31, 2025 17:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants