summaryrefslogtreecommitdiff
path: root/neutron/objects/port/extensions/port_hints.py
blob: a9fd1c793f03780cb0dc75f4b2605fec022e7850 (plain)
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
# Copyright 2023 Ericsson Software Technology
#
# 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 neutron_lib.objects import common_types

from neutron.db.models import port_hints
from neutron.objects import base


@base.NeutronObjectRegistry.register
class PortHints(base.NeutronDbObject):
    # Version 1.0: Initial version
    VERSION = '1.0'

    db_model = port_hints.PortHints

    primary_keys = ['port_id']

    fields = {
        'port_id': common_types.UUIDField(),
        'hints': common_types.DictOfMiscValuesField(),
    }

    foreign_keys = {'Port': {'port_id': 'id'}}

    @classmethod
    def modify_fields_to_db(cls, fields):
        result = super(PortHints, cls).modify_fields_to_db(fields)
        if 'hints' in result:
            # dump field into string, set '' if empty '{}' or None
            result['hints'] = (
                cls.filter_to_json_str(result['hints'], default=''))
        return result

    @classmethod
    def modify_fields_from_db(cls, db_obj):
        fields = super(PortHints, cls).modify_fields_from_db(db_obj)
        if 'hints' in fields:
            # load string from DB into dict, set None if hints is ''
            fields['hints'] = (
                cls.load_json_from_str(fields['hints']))
        return fields