forked from Azure/azure-sdk-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- renaming cadl to typespec
- Loading branch information
Showing
3 changed files
with
257 additions
and
29 deletions.
There are no files selected for viewing
This file contains 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 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,101 @@ | ||
# For details see https://github.com/Azure/azure-sdk-tools/blob/main/doc/common/TypeSpec-Project-Scripts.md | ||
|
||
[CmdletBinding()] | ||
param ( | ||
[Parameter(Position=0)] | ||
[ValidateNotNullOrEmpty()] | ||
[string] $ProjectDirectory, | ||
[Parameter(Position=1)] | ||
[string] $typespecAdditionalOptions ## addtional typespec emitter options, separated by semicolon if more than one, e.g. option1=value1;option2=value2 | ||
) | ||
|
||
$ErrorActionPreference = "Stop" | ||
. $PSScriptRoot/Helpers/PSModule-Helpers.ps1 | ||
. $PSScriptRoot/common.ps1 | ||
Install-ModuleIfNotInstalled "powershell-yaml" "0.4.1" | Import-Module | ||
|
||
function NpmInstallForProject([string]$workingDirectory) { | ||
Push-Location $workingDirectory | ||
try { | ||
$currentDur = Resolve-Path "." | ||
Write-Host "Generating from $currentDur" | ||
|
||
if (Test-Path "package.json") { | ||
Remove-Item -Path "package.json" -Force | ||
} | ||
|
||
if (Test-Path ".npmrc") { | ||
Remove-Item -Path ".npmrc" -Force | ||
} | ||
|
||
if (Test-Path "node_modules") { | ||
Remove-Item -Path "node_modules" -Force -Recurse | ||
} | ||
|
||
if (Test-Path "package-lock.json") { | ||
Remove-Item -Path "package-lock.json" -Force | ||
} | ||
|
||
#default to root/eng/emitter-package.json but you can override by writing | ||
#Get-${Language}-EmitterPackageJsonPath in your Language-Settings.ps1 | ||
$replacementPackageJson = "$PSScriptRoot/../../emitter-package.json" | ||
if (Test-Path "Function:$GetEmitterPackageJsonPathFn") { | ||
$replacementPackageJson = &$GetEmitterPackageJsonPathFn | ||
} | ||
|
||
Write-Host("Copying package.json from $replacementPackageJson") | ||
Copy-Item -Path $replacementPackageJson -Destination "package.json" -Force | ||
npm install --no-lock-file | ||
if ($LASTEXITCODE) { exit $LASTEXITCODE } | ||
} | ||
finally { | ||
Pop-Location | ||
} | ||
} | ||
|
||
$resolvedProjectDirectory = Resolve-Path $ProjectDirectory | ||
$emitterName = &$GetEmitterNameFn | ||
$typespecConfigurationFile = Resolve-Path "$ProjectDirectory/tsp-location.yaml" | ||
|
||
Write-Host "Reading configuration from $typespecConfigurationFile" | ||
$configuration = Get-Content -Path $typespecConfigurationFile -Raw | ConvertFrom-Yaml | ||
|
||
$specSubDirectory = $configuration["directory"] | ||
$innerFolder = Split-Path $specSubDirectory -Leaf | ||
|
||
$tempFolder = "$ProjectDirectory/TempTypeSpecFiles" | ||
$npmWorkingDir = Resolve-Path $tempFolder/$innerFolder | ||
$mainTypeSpecFile = If (Test-Path "$npmWorkingDir/client.*") { Resolve-Path "$npmWorkingDir/client.*" } Else { Resolve-Path "$npmWorkingDir/main.*"} | ||
|
||
try { | ||
Push-Location $npmWorkingDir | ||
NpmInstallForProject $npmWorkingDir | ||
|
||
if ($LASTEXITCODE) { exit $LASTEXITCODE } | ||
|
||
if (Test-Path "Function:$GetEmitterAdditionalOptionsFn") { | ||
$emitterAdditionalOptions = &$GetEmitterAdditionalOptionsFn $resolvedProjectDirectory | ||
if ($emitterAdditionalOptions.Length -gt 0) { | ||
$emitterAdditionalOptions = " $emitterAdditionalOptions" | ||
} | ||
} | ||
$typespecCompileCommand = "npx tsp compile $mainTypeSpecFile --emit $emitterName$emitterAdditionalOptions" | ||
if ($typespecAdditionalOptions) { | ||
$options = $typespecAdditionalOptions.Split(";"); | ||
foreach ($option in $options) { | ||
$typespecCompileCommand += " --option $emitterName.$option" | ||
} | ||
} | ||
Write-Host($typespecCompileCommand) | ||
Invoke-Expression $typespecCompileCommand | ||
|
||
if ($LASTEXITCODE) { exit $LASTEXITCODE } | ||
} | ||
finally { | ||
Pop-Location | ||
} | ||
|
||
$shouldCleanUp = $configuration["cleanup"] ?? $true | ||
if ($shouldCleanUp) { | ||
Remove-Item $tempFolder -Recurse -Force | ||
} |
Oops, something went wrong.