src/metadata/GraphSegment.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
# Copyright 2018, 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 EntityVertex) ScriptClass GraphSegment { $graphElement = $null $leadsToVertex = $false $name = $null $type = $null $isDynamic = $false $parent = $null $isVirtual = $false $isInVirtualPath = $false $graphUri = $null $decoration = $null function __initialize($graphElement, $parent = $null, $instanceName = $null) { $this.graphElement = $graphElement $this.parent = if ( $parent ) { $parent } else { $::.GraphSegment.RootSegment } $isVertex = $true $this.leadsToVertex = if ( $this.graphElement.pstypename -eq 'EntityEdge' ) { $isVertex = $false if ( $instanceName ) { throw "An instance name '$instanceName' was specified for an edge, which already has a name" } $this.type = $this.graphElement.transition.type # If this is one to many, then the next element is an individual vertex. Otherwise, # the node is another (named) transition $this.graphElement.oneToMany } else { $this.type = ($this.graphElement.type) $this.graphElement.type -eq 'EntitySet' } $this.name = if ( $isVertex -and ($this.graphElement |=> IsRoot) ) { '/' } elseif ( $this.leadsToVertex -or ($isVertex -and $this.graphElement.type -eq 'Singleton') ) { $this.graphElement.name } elseif ( $instanceName ) { $this.isDynamic = $true $instanceName } elseif (! $isVertex -and ! $this.leadsToVertex ) { # This is an edge, but instead of leading to a vertex, it leads to another edge $this.graphElement.name } else { $this.isDynamic = $true $this.isVirtual = $true "{{{0}}}" -f $this.graphElement.name } $this.isInVirtualPath = $this.isVirtual -or ( $parent -ne $null -and $parent.IsInVirtualPath ) $this.GraphUri = if ( $this.parent ) { $::.GraphUtilities.JoinFragmentUri($this.parent.graphUri, $this.name) } else { $this.name } } function Decorate($data) { if ($this.decoration) { throw 'Segment already has decoration data' } $this.decoration = $data } function NewVertexSegment($graph, $segmentName, $allowedVertexTypes) { if ( ! $this.leadsToVertex ) { throw "Vertex segment instance name may not be supplied for '$($this.graphElement.id)', segments are pre-defined" } $graphElement = if ( $this.graphElement.pstypename -eq 'EntityEdge' ) { if ( $this.GraphElement.sink |=> IsNull ) { return $null } else { $this.GraphElement.sink } } elseif ( $this.graphElement.type -eq 'EntitySet' ) { $typeData = $this.graphElement.entity.typeData $graph |=> TypeVertexFromTypeName $typeData.EntityTypeName } else { throw "Unexpected vertex type '$($this.graphElement.type)' for segment '$($segment.name)'" } if ( ! $graphElement ) { throw "Unable to determine element type for '$($this.graphElement)' for segment '$($segment.name)'" } if ( $allowedVertexTypes -and ($graphElement.Type -notin $allowedVertextypes) ) { return $null } new-so GraphSegment $graphElement $this $segmentName } function NewTransitionSegments($segmentName, $allowedTransitionTypes = $null) { if ( $this.leadsToVertex ) { throw "Current segment $($this.graphElement.name) is static, so next segment must be dynamic" } $isVertex = $this.graphElement.pstypename -eq 'EntityVertex' $edges = if ( $isVertex ) { if ( $segmentName -and $segmentName -ne '' ) { $this.graphElement.outGoingEdges[$segmentName] } else { $this.graphElement.outGoingEdges.values } } else { # This is already an edge, so the next edges come from the sink if ( ! ( $this.graphElement.sink |=> IsNull ) ) { $this.graphElement.sink.outgoingEdges.values } } $edges | foreach { if ( ! $allowedTransitionTypes -or ($_.transition.type -in $allowedTransitionTypes) ) { new-so GraphSegment $_ $this } } } function NewNextSegments($graph, $segmentName, $allowedTransitionTypes) { if ( $this.leadsToVertex ) { $newVertex = NewVertexSegment $graph $segmentName $allowedTransitionTypes if ( $newVertex ) { $newVertex } else { @() } } else { NewTransitionSegments $segmentName $allowedTransitionTypes } } function IsRoot { $this.GraphElement.PSTypeName -eq 'EntityVertex' -and ($this.GraphElement |=> IsRoot) } function ToGraphUri($graph = $null) { if ( ! $graph ) { ToGraphUriFromEndpoint } else { ToGraphUriFromEndpoint $graph.Endpoint $graph.ApiVersion } } function ToGraphUriFromEndpoint($graphEndpointUri = $null, $graphVersion = $null) { $currentSegment = $this $relativeUriString = $this.name while ($currentSegment.parent -ne $null) { $relativeUriString = $::.GraphUtilities.JoinFragmentUri($currentSegment.parent.name, $relativeUriString) $currentSegment = $currentSegment.parent } if ( ! $graphEndpointUri ) { $::.GraphUtilities.JoinGraphUri('/', $relativeUriString) } else { $relativeVersionedUriString = $::.GraphUtilities.JoinRelativeUri($graphVersion, $relativeUriString) $::.GraphUtilities.JoinAbsoluteUri($graphEndpointUri, $relativeVersionedUriString) } } static { $RootSegment = $null $NullSegment = $null } } $::.GraphSegment.RootSegment = new-so GraphSegment $::.EntityVertex.RootVertex $::.GraphSegment.NullSegment = new-so GraphSegment $::.Entityvertex.NullVertex |