-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Problem The current result of the storage proposal is presented as a list of actions, which could make a bit complex to understand the overall picture of the resulting devices. That list of actions is going to be replaced by a more visual representation of the devices. To make this possible, more information about the devices has to be exported on D-Bus. * Part of https://trello.com/c/7TTVVquM. ## Solution Add the following information to D-Bus: * The list of actions includes the SID of the affected device. * The partition table exports the unused slots. * The LVM devices (volume groups, physical volumes and logical volumes) are exported. * The block devices includes their start block and also indicates whether the device is encrypted. * The staging devices are exported. NOTE: This PR goes to a feature branch instead of master. ## Testing * Added unit tests * Tested manually
- Loading branch information
Showing
18 changed files
with
374 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
90 changes: 90 additions & 0 deletions
90
service/lib/agama/dbus/storage/interfaces/device/lvm_vg.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright (c) [2024] SUSE LLC | ||
# | ||
# All Rights Reserved. | ||
# | ||
# This program is free software; you can redistribute it and/or modify it | ||
# under the terms of version 2 of the GNU General Public License as published | ||
# by the Free Software Foundation. | ||
# | ||
# This program is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
# more details. | ||
# | ||
# You should have received a copy of the GNU General Public License along | ||
# with this program; if not, contact SUSE LLC. | ||
# | ||
# To contact SUSE LLC about this file by physical or electronic mail, you may | ||
# find current contact information at www.suse.com. | ||
|
||
require "dbus" | ||
|
||
module Agama | ||
module DBus | ||
module Storage | ||
module Interfaces | ||
module Device | ||
# Interface for a LVM Volume Group. | ||
# | ||
# @note This interface is intended to be included by {Agama::DBus::Storage::Device} if | ||
# needed. | ||
module LvmVg | ||
# Whether this interface should be implemented for the given device. | ||
# | ||
# @note LVM Volume Groups implement this interface. | ||
# | ||
# @param storage_device [Y2Storage::Device] | ||
# @return [Boolean] | ||
def self.apply?(storage_device) | ||
storage_device.is?(:lvm_vg) | ||
end | ||
|
||
VOLUME_GROUP_INTERFACE = "org.opensuse.Agama.Storage1.LVM.VolumeGroup" | ||
private_constant :VOLUME_GROUP_INTERFACE | ||
|
||
# Name of the volume group | ||
# | ||
# @return [String] e.g., "/dev/mapper/vg0" | ||
def lvm_vg_name | ||
storage_device.name | ||
end | ||
|
||
# Size of the volume group in bytes | ||
# | ||
# @return [Integer] | ||
def lvm_vg_size | ||
storage_device.size.to_i | ||
end | ||
|
||
# D-Bus paths of the objects representing the physical volumes. | ||
# | ||
# @return [Array<String>] | ||
def lvm_vg_pvs | ||
storage_device.lvm_pvs.map { |p| tree.path_for(p.plain_blk_device) } | ||
end | ||
|
||
# D-Bus paths of the objects representing the logical volumes. | ||
# | ||
# @return [Array<String>] | ||
def lvm_vg_lvs | ||
storage_device.lvm_lvs.map { |l| tree.path_for(l) } | ||
end | ||
|
||
def self.included(base) | ||
base.class_eval do | ||
dbus_interface VOLUME_GROUP_INTERFACE do | ||
dbus_reader :lvm_vg_name, "s", dbus_name: "Name" | ||
dbus_reader :lvm_vg_size, "t", dbus_name: "Size" | ||
dbus_reader :lvm_vg_pvs, "ao", dbus_name: "PhysicalVolumes" | ||
dbus_reader :lvm_vg_lvs, "ao", dbus_name: "LogicalVolumes" | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.