summaryrefslogtreecommitdiffstats
path: root/commands/storage/lmi/scripts/storage/lv_cmd.py
blob: 51d9f2e9ad9ce5052415522700f2f931c6416a04 (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
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
# Storage Management Providers
#
# Copyright (C) 2013-2014 Red Hat, Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
#    this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
#    this list of conditions and the following disclaimer in the documentation
#    and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# The views and conclusions contained in the software and documentation are
# those of the authors and should not be interpreted as representing official
# policies, either expressed or implied, of the FreeBSD Project.
#
# Authors: Jan Safranek <jsafrane@redhat.com>
#

"""
Logical Volume management.

Usage:
    %(cmd)s list [ <vg> ...]
    %(cmd)s create <vg> <name> <size>
    %(cmd)s delete <lv> ...
    %(cmd)s show [ <lv> ...]

Commands:
    list        List available logical volumes on given volume groups.
                If no volume groups are provided, all logical volumes are
                listed.

    create      Create a logical volume on given volume group.

    delete      Delete given logical volume.

    show        Show detailed information about given Logical Volumes. If no
                Logical Volumes are provided, all of them are displayed.

Options:
    vg          Name of the volume group, with or without `/dev/` prefix.

    size        Size of the new logical volume, by default in bytes.
                'T', 'G', 'M' or 'K' suffix can be used to use specify other
                units (TiB, GiB, MiB and KiB) - '1K' specifies 1 KiB
                (= 1024 bytes).
                The suffix is case insensitive, i.e. 1g = 1G = 1073741824 bytes.

                'E' suffix can be used to specify number of volume group
                extents, '100e' means 100 extents.
"""

from lmi.scripts.common import command
from lmi.scripts.storage import lvm, show
from lmi.scripts.storage.common import str2size, size2str, str2device, str2vg
from lmi.scripts.common import formatter
from lmi.scripts.common.formatter import command as fcmd

class Lister(command.LmiLister):
    COLUMNS = ('DeviceID', "Name", "ElementName", "Size")

    def transform_options(self, options):
        """
        Rename 'vg' option to 'vgs' parameter name for better
        readability.
        """
        options['<vgs>'] = options.pop('<vg>')

    def execute(self, ns, vgs=None):
        """
        Implementation of 'lv list' command.
        """
        for lv in lvm.get_lvs(ns, vgs):
            size = size2str(lv.NumberOfBlocks * lv.BlockSize,
                    self.app.config.human_friendly)
            yield (lv.DeviceID,
                    lv.Name,
                    lv.ElementName,
                    size)


class Create(command.LmiCheckResult):
    EXPECT = None

    def execute(self, ns, vg, name, size):
        """
        Implementation of 'lv create' command.
        """
        vg = str2vg(ns, vg[0])
        lvm.create_lv(ns, vg, name, str2size(size, vg.ExtentSize, 'E'))


class Delete(command.LmiCheckResult):
    EXPECT = None

    def transform_options(self, options):
        """
        Rename 'lv' option to 'lvs' parameter name for better
        readability.
        """
        options['<lvs>'] = options.pop('<lv>')

    def execute(self, ns, lvs):
        """
        Implementation of 'lv delete' command.
        """
        for lv in lvs:
            lvm.delete_lv(ns, lv)


class Show(command.LmiLister):
    COLUMNS = ('Name', 'Value')

    def transform_options(self, options):
        """
        Rename 'lv' option to 'lvs' parameter name for better
        readability.
        """
        options['<lvs>'] = options.pop('<lv>')

    def execute(self, ns, lvs=None):
        """
        Implementation of 'lv show' command.
        """
        if not lvs:
            lvs = lvm.get_lvs(ns)
        for lv in lvs:
            lv = str2device(ns, lv)
            cmd = fcmd.NewTableCommand(title=lv.DeviceID)
            yield cmd
            for line in show.lv_show(ns, lv, self.app.config.human_friendly):
                yield line


Lv = command.register_subcommands(
        'Lv', __doc__,
        { 'list'    : Lister ,
          'create'  : Create,
          'delete'  : Delete,
          'show'    : Show,
        },
    )