src/metadata/Entity.ps1
# Copyright 2021, Adam Edwards # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ScriptClass Entity { $namespace = $null $name = $null $type = $null $typeData = $null $navigations = $null function __initialize($schema, $namespace) { $this.namespace = $namespace $schemaElement = $schema | select -first 1 $this.type = $schemaElement | select -expandproperty localname $this.name = $schemaElement | select -first 1 | select -expandproperty name $this.typeData = $this.GetEntityTypeData($schema) $this.navigations = if ( ($schema | gm navigationproperty) -ne $null ) { $schema.navigationproperty | foreach { new-so Entity $_ $namespace } } } function GetEntityId { '{0}:{1}:{2}' -f $this.type, $this.namespace, $this.name } function GetEntityTypeData($schema) { $typeData = switch ($this.type) { 'NavigationProperty' { $::.GraphUtilities.ParseTypeName($schema.Type) } 'NavigationPropertyBinding' { $::.GraphUtilities.ParseTypeName($schema.parameter.bindingParameter.type) } 'Function' { $::.GraphUtilities.ParseTypeName($schema.ReturnType) } } if ( ! $typeData ) { $isCollection = $false $baseTypeName = $null $typeName = switch ($this.type) { 'Singleton' { $schema.type } 'EntityType' { $baseTypeName = if ( $schema | gm basetype -erroraction ignore ) { $schema.basetype } $::.Entity.QualifyName($this.namespace, $schema.name) } 'EntitySet' { $isCollection = $true $schema.entitytype } 'Action' { if ( $schema | gm ReturnType ) { write-verbose "'$($this.name)' is an Action that should have no return type but it is specified to have a return type of $($schema.returntype.type)" $schema.returntype.type } } '__Scalar' { $schema.name } '__Root' { $schema.name } default { throw "Unknown entity type $($this.type) for entity name $($this.name)" } } $typeData = [PSCustomObject]@{TypeName=$typeName;IsCollection=$isCollection;BaseTypeName=$baseTypeName} } $typeData } static { function QualifyName($namespace, $name) { "{0}.{1}" -f $namespace, $name } } } |