File: base.py

package info (click to toggle)
python-glance-store 5.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,908 kB
  • sloc: python: 18,046; sh: 41; makefile: 34
file content (67 lines) | stat: -rw-r--r-- 2,440 bytes parent folder | download | duplicates (2)
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
# Copyright 2023 Red Hat, Inc.
# All Rights Reserved.
#
#    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_utils import importutils

from os_brick.initiator import connector

NFS = 'nfs'
SCALEIO = "scaleio"

BASE = 'glance_store._drivers.cinder.base.BaseBrickConnectorInterface'

_connector_mapping = {
    NFS: 'glance_store._drivers.cinder.nfs.NfsBrickConnector',
    SCALEIO: 'glance_store._drivers.cinder.scaleio.ScaleIOBrickConnector',
}


def factory(*args, **kwargs):
    connection_info = kwargs.get('connection_info')
    protocol = connection_info['driver_volume_type']
    connector = _connector_mapping.get(protocol, BASE)
    conn_cls = importutils.import_class(connector)
    return conn_cls(*args, **kwargs)


class BaseBrickConnectorInterface(object):
    def __init__(self, *args, **kwargs):
        self.connection_info = kwargs.get('connection_info')
        self.root_helper = kwargs.get('root_helper')
        self.use_multipath = kwargs.get('use_multipath')
        self.conn = connector.InitiatorConnector.factory(
            self.connection_info['driver_volume_type'], self.root_helper,
            conn=self.connection_info, use_multipath=self.use_multipath)

    def connect_volume(self, volume):
        device = self.conn.connect_volume(self.connection_info)
        return device

    def disconnect_volume(self, device):
        # Bug #2004555: use force so there aren't any leftovers
        self.conn.disconnect_volume(self.connection_info, device, force=True)

    def extend_volume(self):
        self.conn.extend_volume(self.connection_info)

    def yield_path(self, volume, volume_path):
        """
        This method returns the volume file path.

        The reason for it's implementation is to fix Bug#2000584. More
        information is added in the ScaleIO connector which makes actual
        use of it's implementation.
        """
        return volume_path