Class: LinuxAdmin::Disk

Inherits:
Object
  • Object
show all
Defined in:
lib/linux_admin/disk.rb

Constant Summary collapse

PARTED_FIELDS =
[:id, :start_sector, :end_sector,
:size, :partition_type, :fs_type]

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ Disk

Returns a new instance of Disk.



18
19
20
21
# File 'lib/linux_admin/disk.rb', line 18

def initialize(args = {})
  @path  = args[:path]
  @model = "unknown"
end

Instance Attribute Details

#modelObject

Returns the value of attribute model.



9
10
11
# File 'lib/linux_admin/disk.rb', line 9

def model
  @model
end

#pathObject

Returns the value of attribute path.



9
10
11
# File 'lib/linux_admin/disk.rb', line 9

def path
  @path
end

Class Method Details

.localObject



11
12
13
14
15
16
# File 'lib/linux_admin/disk.rb', line 11

def self.local
  result = Common.run!(Common.cmd("lsblk"), :params => {:d => nil, :n => nil, :p => nil, :o => "NAME"})
  result.output.split.collect do |d|
    Disk.new :path => d
  end
end

Instance Method Details

#clear!Object



94
95
96
97
98
99
100
101
102
103
# File 'lib/linux_admin/disk.rb', line 94

def clear!
  @partitions = []

  # clear partition table
  Common.run!(Common.cmd(:dd),
      :params => { 'if=' => '/dev/zero', 'of=' => @path,
                   'bs=' => 512, 'count=' => 1})

  self
end

#create_partition(partition_type, *args) ⇒ Object



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
# File 'lib/linux_admin/disk.rb', line 54

def create_partition(partition_type, *args)
  create_partition_table unless has_partition_table?

  start = finish = size = nil
  case args.length
  when 1 then
    start  = partitions.empty? ? 0 : partitions.last.end_sector
    size   = args.first
    finish = start + size

  when 2 then
    start  = args[0]
    finish = args[1]

  else
    raise ArgumentError, "must specify start/finish or size"
  end

  id = partitions.empty? ? 1 : (partitions.last.id + 1)
  options = parted_options_array('mkpart', '-a', 'opt', partition_type, start, finish)
  Common.run!(Common.cmd(:parted), :params => {nil => options})

  partition = Partition.new(:disk           => self,
                            :id             => id,
                            :start_sector   => start,
                            :end_sector     => finish,
                            :size           => size,
                            :partition_type => partition_type)
  partitions << partition
  partition
end

#create_partition_table(type = "msdos") ⇒ Object



44
45
46
# File 'lib/linux_admin/disk.rb', line 44

def create_partition_table(type = "msdos")
  Common.run!(Common.cmd(:parted), :params => {nil => parted_options_array("mklabel", type)})
end

#create_partitions(partition_type, *args) ⇒ Object



86
87
88
89
90
91
92
# File 'lib/linux_admin/disk.rb', line 86

def create_partitions(partition_type, *args)
  check_if_partitions_overlap(args)

  args.each { |arg|
    self.create_partition(partition_type, arg[:start], arg[:end])
  }
end

#has_partition_table?Boolean

Returns:

  • (Boolean)


48
49
50
51
52
# File 'lib/linux_admin/disk.rb', line 48

def has_partition_table?
  result = Common.run(Common.cmd(:parted), :params => {nil => parted_options_array("print")})

  result_indicates_partition_table?(result)
end

#partition_path(id) ⇒ Object



105
106
107
108
109
110
111
112
# File 'lib/linux_admin/disk.rb', line 105

def partition_path(id)
  case model
  when "nvme"
    "#{path}p#{id}"
  else
    "#{path}#{id}"
  end
end

#partitionsObject



37
38
39
40
41
42
# File 'lib/linux_admin/disk.rb', line 37

def partitions
  @partitions ||=
    parted_output.collect { |disk|
      partition_from_parted(disk)
    }
end

#sizeObject



23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/linux_admin/disk.rb', line 23

def size
  @size ||= begin
    size = nil
    out = Common.run!(Common.cmd(:fdisk), :params => {"-l" => nil}).output
    out.each_line do |l|
      /Disk #{path}: .*B, (\d+) bytes/.match(l) do |m|
        size = m[1].to_i
        break
      end
    end
    size
  end
end