
* templates are now stored in the database. * evaluator is reloaded whenever a template is added/removed. * supporting all types of templates (standard, equivalence, definition) * new cli commands: - vitrage template add - vitrage template delete Change-Id: I58abf5e034662206bd6919493c95c450c0ecdf9c Depends-On: I07741ed100b9eb70b303567706b659d10a34b156 Implements: blueprint crud-templates
47 lines
1.9 KiB
Python
47 lines
1.9 KiB
Python
# Copyright 2017 - ZTE Corporation
|
|
#
|
|
# 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 vitrage.common.constants import TemplateStatus
|
|
from vitrage.common.constants import TemplateTypes
|
|
from vitrage.common.exception import VitrageError
|
|
from vitrage.evaluator.template_loading.equivalence_loader import \
|
|
EquivalenceLoader
|
|
|
|
from oslo_log import log as logging
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class EquivalenceRepository(object):
|
|
def __init__(self):
|
|
self.entity_equivalences = {}
|
|
|
|
def load(self, db):
|
|
equivalence_defs = db.templates.query(
|
|
template_type=TemplateTypes.EQUIVALENCE,
|
|
status=TemplateStatus.ACTIVE)
|
|
equivalence_defs = [e.file_content for e in equivalence_defs]
|
|
for equivalence_def in equivalence_defs:
|
|
equivalences = EquivalenceLoader(equivalence_def).equivalences
|
|
for equivalence in equivalences:
|
|
self._add_equivalence(equivalence)
|
|
return self.entity_equivalences
|
|
|
|
def _add_equivalence(self, equivalence):
|
|
for entity in equivalence:
|
|
if entity in self.entity_equivalences:
|
|
# TODO(yujunz): log error and continue processing the rest
|
|
raise VitrageError('one entity should not be included in '
|
|
'multiple equivalence definitions')
|
|
self.entity_equivalences[entity] = equivalence
|