-
Notifications
You must be signed in to change notification settings - Fork 53
New programming model #849
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
Open
andystaples
wants to merge
4
commits into
dev
Choose a base branch
from
new-programming-model
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
887c882
Add support for the New PowerShell Programming Model
Francisco-Gamino 5e38ae4
Update tests
Francisco-Gamino 85d64cb
Update worker.config.json
Francisco-Gamino 797fe7e
Use the cmdlet name instead of the module qualified cmdlet name
Francisco-Gamino File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
// | ||
|
||
using Microsoft.Azure.WebJobs.Script.Grpc.Messages; | ||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Linq; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace Microsoft.Azure.Functions.PowerShellWorker.WorkerIndexing | ||
{ | ||
internal class BindingInformation | ||
{ | ||
private const string BindingNameKey = "name"; | ||
private const string BindingDirectionKey = "direction"; | ||
private const string BindingTypeKey = "type"; | ||
public enum Directions | ||
{ | ||
Unknown = -1, | ||
In = 0, | ||
Out = 1, | ||
Inout = 2 | ||
} | ||
|
||
public Directions Direction { get; set; } = Directions.Unknown; | ||
public string Type { get; set; } = ""; | ||
public string Name { get; set; } = ""; | ||
public Dictionary<string, Object> otherInformation { get; set; } = new Dictionary<string, Object>(); | ||
|
||
internal string ConvertToRpcRawBinding(out BindingInfo bindingInfo) | ||
{ | ||
string rawBinding = string.Empty; | ||
JObject rawBindingObject = new JObject(); | ||
rawBindingObject.Add(BindingNameKey, Name); | ||
BindingInfo outInfo = new BindingInfo(); | ||
|
||
|
||
if (Direction == Directions.Unknown) | ||
{ | ||
throw new Exception(string.Format(PowerShellWorkerStrings.InvalidBindingInfoDirection, Name)); | ||
} | ||
outInfo.Direction = (BindingInfo.Types.Direction)Direction; | ||
rawBindingObject.Add(BindingDirectionKey, Enum.GetName(typeof(BindingInfo.Types.Direction), outInfo.Direction).ToLower()); | ||
outInfo.Type = Type; | ||
rawBindingObject.Add(BindingTypeKey, Type); | ||
|
||
foreach (KeyValuePair<string, Object> pair in otherInformation) | ||
{ | ||
rawBindingObject.Add(pair.Key, JToken.FromObject(pair.Value)); | ||
} | ||
|
||
rawBinding = JsonConvert.SerializeObject(rawBindingObject); | ||
bindingInfo = outInfo; | ||
return rawBinding; | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
// | ||
|
||
using Microsoft.Azure.WebJobs.Script.Grpc.Messages; | ||
using System.Collections.Generic; | ||
|
||
namespace Microsoft.Azure.Functions.PowerShellWorker.WorkerIndexing | ||
{ | ||
internal class FunctionInformation | ||
{ | ||
private const string FunctionLanguagePowerShell = "powershell"; | ||
|
||
public string Directory { get; set; } = ""; | ||
public string ScriptFile { get; set; } = ""; | ||
public string Name { get; set; } = ""; | ||
public string EntryPoint { get; set; } = ""; | ||
public string FunctionId { get; set; } = ""; | ||
public List<BindingInformation> Bindings { get; set; } = new List<BindingInformation>(); | ||
|
||
internal RpcFunctionMetadata ConvertToRpc() | ||
{ | ||
RpcFunctionMetadata returnMetadata = new RpcFunctionMetadata(); | ||
returnMetadata.FunctionId = FunctionId; | ||
returnMetadata.Directory = Directory; | ||
returnMetadata.EntryPoint = EntryPoint; | ||
returnMetadata.Name = Name; | ||
returnMetadata.ScriptFile = ScriptFile; | ||
returnMetadata.Language = FunctionLanguagePowerShell; | ||
foreach(BindingInformation binding in Bindings) | ||
{ | ||
string rawBinding = binding.ConvertToRpcRawBinding(out BindingInfo bindingInfo); | ||
returnMetadata.Bindings.Add(binding.Name, bindingInfo); | ||
returnMetadata.RawBindings.Add(rawBinding); | ||
} | ||
return returnMetadata; | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
// | ||
|
||
using Microsoft.Azure.WebJobs.Script.Grpc.Messages; | ||
using Newtonsoft.Json; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Management.Automation; | ||
using System.Management.Automation.Runspaces; | ||
|
||
namespace Microsoft.Azure.Functions.PowerShellWorker.WorkerIndexing | ||
{ | ||
internal class WorkerIndexingHelper | ||
{ | ||
// TODO: Follow up with the PowerShell on why we get a CommandNotFoundException when using the module qualified cmdlet name. | ||
//const string GetFunctionsMetadataCmdletName = "AzureFunctions.PowerShell.SDK\\Get-FunctionsMetadata"; | ||
const string GetFunctionsMetadataCmdletName = "Get-FunctionsMetadata"; | ||
Francisco-Gamino marked this conversation as resolved.
Show resolved
Hide resolved
|
||
internal static IEnumerable<RpcFunctionMetadata> IndexFunctions(string baseDir) | ||
{ | ||
List<RpcFunctionMetadata> indexedFunctions = new List<RpcFunctionMetadata>(); | ||
|
||
// This is not the correct way to deal with getting a runspace for the cmdlet. | ||
|
||
// Firstly, creating a runspace is expensive. If we are going to generate a runspace, it should be done on | ||
// the function load request so that it can be created while the host is processing. | ||
|
||
// Secondly, this assumes that the AzureFunctions.PowerShell.SDK module is present on the machine/VM's | ||
// PSModulePath. On an Azure instance, it will not be. What we need to do here is move the call | ||
// to SetupAppRootPathAndModulePath in RequestProcessor to the init request, and then use the | ||
// _firstPwshInstance to invoke the Get-FunctionsMetadata command. The only issue with this is that | ||
// SetupAppRootPathAndModulePath needs the initial function init request in order to know if managed | ||
// dependencies are enabled in this function app. | ||
|
||
// Proposed solutions: | ||
// 1. Pass ManagedDependencyEnabled flag in the worker init request | ||
// 2. Change the flow, so that _firstPwshInstance is initialized in worker init with the PSModulePath | ||
// assuming that managed dependencies are enabled, and then revert the PSModulePath in the first function | ||
// init request should the managed dependencies not be enabled. | ||
// 3. Continue using a new runspace for invoking Get-FunctionsMetadata, but initialize it in worker init and | ||
// point the PsModulePath to the module path bundled with the worker. | ||
|
||
|
||
InitialSessionState initial = InitialSessionState.CreateDefault(); | ||
Runspace runspace = RunspaceFactory.CreateRunspace(initial); | ||
runspace.Open(); | ||
System.Management.Automation.PowerShell _powershell = System.Management.Automation.PowerShell.Create(); | ||
_powershell.Runspace = runspace; | ||
|
||
_powershell.AddCommand(GetFunctionsMetadataCmdletName).AddArgument(baseDir); | ||
string outputString = string.Empty; | ||
foreach (PSObject rawMetadata in _powershell.Invoke()) | ||
{ | ||
if (outputString != string.Empty) | ||
{ | ||
throw new Exception(PowerShellWorkerStrings.GetFunctionsMetadataMultipleResultsError); | ||
} | ||
outputString = rawMetadata.ToString(); | ||
} | ||
_powershell.Commands.Clear(); | ||
|
||
List<FunctionInformation> functionInformations = JsonConvert.DeserializeObject<List<FunctionInformation>>(outputString); | ||
|
||
foreach(FunctionInformation fi in functionInformations) | ||
{ | ||
indexedFunctions.Add(fi.ConvertToRpc()); | ||
} | ||
|
||
return indexedFunctions; | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -352,4 +352,10 @@ | |
<data name="DependencySnapshotDoesNotContainAcceptableModuleVersions" xml:space="preserve"> | ||
<value>Dependency snapshot '{0}' does not contain acceptable module versions.</value> | ||
</data> | ||
<data name="GetFunctionsMetadataMultipleResultsError" xml:space="preserve"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please ping the Team channel to get feedback on the new string resources you added? |
||
<value>Multiple results from metadata cmdlet.</value> | ||
</data> | ||
<data name="InvalidBindingInfoDirection" xml:space="preserve"> | ||
<value>Invalid binding direction. Binding name: {0}</value> | ||
</data> | ||
</root> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
{ | ||
"description":{ | ||
"language":"powershell", | ||
"extensions":[".ps1", ".psm1"], | ||
"defaultExecutablePath":"dotnet", | ||
"defaultWorkerPath":"%FUNCTIONS_WORKER_RUNTIME_VERSION%/Microsoft.Azure.Functions.PowerShellWorker.dll", | ||
"supportedRuntimeVersions":["7", "7.2"], | ||
"description": { | ||
Francisco-Gamino marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"language": "powershell", | ||
"extensions": [ ".ps1", ".psm1" ], | ||
"defaultExecutablePath": "dotnet", | ||
"defaultWorkerPath": "%FUNCTIONS_WORKER_RUNTIME_VERSION%/Microsoft.Azure.Functions.PowerShellWorker.dll", | ||
"supportedRuntimeVersions": [ "7", "7.2" ], | ||
"defaultRuntimeVersion": "7", | ||
"sanitizeRuntimeVersionRegex":"\\d+\\.?\\d*" | ||
"sanitizeRuntimeVersionRegex": "\\d+\\.?\\d*", | ||
"workerIndexing": "true" | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.