src/metadata/EntityGraph.ps1
# Copyright 2020, 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. . (import-script Entity) . (import-script EntityVertex) . (import-script EntityEdge) . (import-script GraphBuilder) ScriptClass EntityGraph { $ApiVersion = $null $Endpoint = $null $vertices = $null $rootVertices = $null $typeVertices = $null $typeToSetMapping = $null $defaultNamespace = $null $dataModel = $null $builder = $null function __initialize($defaultNamespace, $apiVersion = 'localtest', [Uri] $endpoint = 'http://localhost', $dataModel) { $this.defaultNamespace = $defaultNamespace $this.vertices = @{} $this.rootVertices = @{} $this.typeVertices = @{} $this.typeToSetMapping = @{} $this.ApiVersion = $apiVersion $this.Endpoint = $endpoint $this.dataModel = $dataModel $this.builder = new-so GraphBuilder $endpoint $apiVersion $dataModel } function GetRootVertices { $this.rootVertices } function AddVertex($entity) { $vertex = new-so EntityVertex $entity $this.vertices.Add($vertex.id, $vertex) if ( $vertex.type -eq 'EntityType' ) { $this.typeVertices.Add(($vertex.typeName), $vertex) } elseif ( $vertex.type -eq 'EntitySet' -or $vertex.type -eq 'Singleton' ) { $this.rootVertices.Add($vertex.name, $vertex) if ( $vertex.type -eq 'EntitySet' ) { __AddEntityTypeToEntitySetMapping $entity.typeData.EntityTypeName $entity.name } } } function TypeVertexFromTypeName($typeName) { $typeData = $::.Entity |=> GetEntityTypeDataFromTypeName $null $typeName $this.typeVertices[$typeData.EntityTypeName] } function GetTypeVertex($qualifiedTypeName) { $vertex = TypeVertexFromTypeName $qualifiedTypeName if ( ! $vertex ) { __AddTypeVertex $qualifiedTypeName $vertex = TypeVertexFromTypeName $qualifiedTypeName } if ( ! $vertex ) { throw "Vertex '$qualifiedTypeName' not found" } __UpdateVertex $vertex $vertex } function GetVertexEdges($vertex) { __UpdateVertex $vertex $vertex.outgoingEdges } function GetEntityTypeToEntitySetMapping($entityTypeName) { $this.typeToSetMapping[$entityTypeName] } function GetDefaultNamespace { $this.defaultNamespace } function UnaliasQualifiedName($typeName) { $this.dataModel |=> UnaliasQualifiedName $typeName } function GetEnumTypes { $this.dataModel |=> GetEnumTypes } function GetEntityTypes { $this.dataModel |=> GetEntityTypes } function GetComplexTypes { $this.dataModel |=> GetComplexTypes } function __UpdateVertex($vertex) { if ( ! (__IsVertexComplete $vertex) ) { $::.ProgressWriter |=> WriteProgress -id 1 -activity "Update vertex '$($vertex.name)'" if ( $vertex.entity.type -eq 'Singleton' -or $vertex.entity.type -eq 'EntitySet' ) { __AddTypeVertex $vertex.entity.typedata.entitytypename } __AddTypeForVertex $vertex $::.ProgressWriter |=> WriteProgress -id 1 -activity "Vertex '$($vertex.name)' successfully update" -completed } } function __AddTypeForVertex($vertex) { $this.builder |=> AddEdgesToVertex $this $vertex $true } function __AddTypeVertex($qualifiedTypeName) { $vertex = TypeVertexFromTypeName $qualifiedTypeName if ( ! $vertex ) { $this.builder |=> AddEntityTypeVertices $this $qualifiedTypeName } } function __IsVertexComplete($vertex) { $vertex.TestFlags($::.GraphBuilder.AllBuildFlags) -eq $::.GraphBuilder.AllBuildFlags } function __AddEntityTypeToEntitySetMapping($entityTypeName, $entitySetName) { $existingMapping = $this.typeToSetMapping[$entityTypeName] if ( $existingMapping ) { if ( $existingMapping -ne $entitySetName ) { throw "Conflicting entity set '$entitySetName' cannot be added for type '$entityTypeName' because the type is already mapped to '$existingMapping'" } } else { $this.typeToSetMapping.Add($entityTypeName, $entitySetName) } } static { $nullVertex = new-so EntityVertex $null function NewGraph($endpoint, $version, $schemadata) { $dataModel = new-so GraphDataModel $schemadata $graph = new-so EntityGraph ($dataModel |=> GetDefaultNamespace) $version $Endpoint $dataModel $graph.builder |=> InitializeGraph $graph $graph } } } |