
1. vitrage_sync_mode to vitrage_action_type 2. vitrage_sync_type to vitrage_entity_type Change-Id: Icd60d8f6f6c5658449028bcec9688f61b8da7c62
154 lines
5.8 KiB
Python
154 lines
5.8 KiB
Python
# Copyright 2016 - Nokia
|
|
#
|
|
# 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.
|
|
|
|
from oslo_log import log as logging
|
|
|
|
from vitrage.common.constants import DatasourceProperties as DSProps
|
|
from vitrage.common.constants import EntityCategory
|
|
from vitrage.common.constants import EventAction
|
|
from vitrage.common.constants import VertexProperties as VProps
|
|
from vitrage.datasources.nova.host import NOVA_HOST_DATASOURCE
|
|
from vitrage.datasources.resource_transformer_base import \
|
|
ResourceTransformerBase
|
|
from vitrage.datasources.static_physical import STATIC_PHYSICAL_DATASOURCE
|
|
from vitrage.datasources.static_physical import SWITCH
|
|
from vitrage.datasources import transformer_base
|
|
from vitrage.datasources.transformer_base import Neighbor
|
|
import vitrage.graph.utils as graph_utils
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class StaticPhysicalTransformer(ResourceTransformerBase):
|
|
|
|
RELATION_TYPE = 'relation_type'
|
|
RELATIONSHIPS_SECTION = 'relationships'
|
|
|
|
# Event types which need to refer them differently
|
|
UPDATE_EVENT_TYPES = {
|
|
EventAction.DELETE_ENTITY: EventAction.DELETE_ENTITY
|
|
}
|
|
|
|
def __init__(self, transformers, conf):
|
|
super(StaticPhysicalTransformer, self).__init__(transformers, conf)
|
|
self._register_relations_direction()
|
|
|
|
def _create_snapshot_entity_vertex(self, entity_event):
|
|
return self._create_vertex(entity_event)
|
|
|
|
def _create_update_entity_vertex(self, entity_event):
|
|
return self._create_vertex(entity_event)
|
|
|
|
def _create_vertex(self, entity_event):
|
|
|
|
entity_type = entity_event[VProps.TYPE]
|
|
entity_id = entity_event[VProps.ID]
|
|
sample_timestamp = entity_event[DSProps.SAMPLE_DATE]
|
|
update_timestamp = self._format_update_timestamp(
|
|
update_timestamp=None,
|
|
sample_timestamp=sample_timestamp)
|
|
state = entity_event[VProps.STATE]
|
|
entity_key = self._create_entity_key(entity_event)
|
|
metadata = self._extract_metadata(entity_event)
|
|
|
|
return graph_utils.create_vertex(
|
|
entity_key,
|
|
entity_id=entity_id,
|
|
entity_category=EntityCategory.RESOURCE,
|
|
entity_type=entity_type,
|
|
sample_timestamp=sample_timestamp,
|
|
update_timestamp=update_timestamp,
|
|
entity_state=state,
|
|
metadata=metadata)
|
|
|
|
def _create_snapshot_neighbors(self, entity_event):
|
|
return self._create_static_physical_neighbors(entity_event)
|
|
|
|
def _create_update_neighbors(self, entity_event):
|
|
return self._create_static_physical_neighbors(entity_event)
|
|
|
|
def _create_static_physical_neighbors(self, entity_event):
|
|
neighbors = []
|
|
entity_type = entity_event[VProps.TYPE]
|
|
entity_key = self._create_entity_key(entity_event)
|
|
timestamp = entity_event[DSProps.SAMPLE_DATE]
|
|
|
|
for neighbor_details in entity_event.get(
|
|
self.RELATIONSHIPS_SECTION, {}):
|
|
# TODO(alexey): need to decide what to do if one of the entities
|
|
# fails
|
|
neighbor = self._create_neighbor(neighbor_details, entity_type,
|
|
entity_key, timestamp)
|
|
if neighbor is not None:
|
|
neighbors.append(neighbor)
|
|
|
|
return neighbors
|
|
|
|
def _create_neighbor(self, neighbor_details, entity_type,
|
|
entity_key, sample_timestamp):
|
|
neighbor_type = neighbor_details[VProps.TYPE]
|
|
entity_transformer = self.transformers[neighbor_type]
|
|
|
|
if entity_transformer:
|
|
neighbor_id = neighbor_details[VProps.ID]
|
|
relation_type = neighbor_details[self.RELATION_TYPE]
|
|
is_source = self._find_relation_direction_source(
|
|
entity_type, neighbor_type)
|
|
|
|
properties = {
|
|
VProps.TYPE: neighbor_type,
|
|
VProps.ID: neighbor_id,
|
|
VProps.SAMPLE_TIMESTAMP: sample_timestamp
|
|
}
|
|
neighbor = entity_transformer.create_placeholder_vertex(
|
|
**properties)
|
|
|
|
relation_edge = graph_utils.create_edge(
|
|
source_id=neighbor.vertex_id if is_source else entity_key,
|
|
target_id=entity_key if is_source else neighbor.vertex_id,
|
|
relationship_type=relation_type)
|
|
|
|
return Neighbor(neighbor, relation_edge)
|
|
else:
|
|
LOG.warning('Cannot find zone transformer')
|
|
return None
|
|
|
|
def _create_entity_key(self, entity_event):
|
|
entity_id = entity_event[VProps.ID]
|
|
entity_type = entity_event[VProps.TYPE]
|
|
key_fields = self._key_values(entity_type, entity_id)
|
|
return transformer_base.build_key(key_fields)
|
|
|
|
@staticmethod
|
|
def _extract_metadata(entity_event):
|
|
metadata = {VProps.NAME: entity_event[VProps.NAME]}
|
|
return metadata
|
|
|
|
def _find_relation_direction_source(self, entity_type, neighbor_type):
|
|
# TODO(alexey): maybe check if this type exists, because it throws
|
|
# exception if it doesn't
|
|
return self.relation_direction[(entity_type, neighbor_type)]
|
|
|
|
def _register_relations_direction(self):
|
|
self.relation_direction = {}
|
|
|
|
relationship = (SWITCH, NOVA_HOST_DATASOURCE)
|
|
self.relation_direction[relationship] = True
|
|
|
|
relationship = (SWITCH, SWITCH)
|
|
self.relation_direction[relationship] = True
|
|
|
|
def get_type(self):
|
|
return STATIC_PHYSICAL_DATASOURCE
|