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
|
/*
* disk.hh - Definition of the Key classes for disk manipulation
* libhscript, the HorizonScript library for
* Project Horizon
*
* Copyright (c) 2019 Adélie Linux and contributors. All rights reserved.
* This code is licensed under the AGPL 3.0 license, as noted in the
* LICENSE-code file in the root directory of this repository.
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
#ifndef __HSCRIPT_DISK_HH_
#define __HSCRIPT_DISK_HH_
#include "key.hh"
namespace Horizon {
namespace Keys {
class DiskId : public Key {
private:
const std::string _block;
const std::string _ident;
DiskId(int _line, const std::string &my_block, const std::string &my_i) :
Key(_line), _block(my_block), _ident(my_i) {}
public:
/*! Retrieve the block device that this key identifies. */
const std::string device() const { return this->_block; }
/*! Retrieve the identification for the block device. */
const std::string ident() const { return this->_ident; }
static Key *parseFromData(const std::string &, int, int*, int*);
bool validate(ScriptOptions) const override;
bool execute(ScriptOptions) const override;
};
class DiskLabel : public Key {
public:
/*! The type of disklabel. */
enum LabelType {
/*! Apple Partition Map (APM) */
APM,
/*! Master Boot Record (MBR) */
MBR,
/*! GUID Partition Table (GPT) */
GPT
};
private:
const std::string _block;
const LabelType _type;
DiskLabel(int _line, const std::string &_b, const LabelType &_t) :
Key(_line), _block(_b), _type(_t) {}
public:
/*! Retrieve the block device that this key identifies. */
const std::string device() const { return this->_block; }
/*! Retrieve the type of disklabel for the block device. */
const LabelType type() const { return this->_type; }
static Key *parseFromData(const std::string &, int, int*, int*);
bool validate(ScriptOptions) const override;
bool execute(ScriptOptions) const override;
};
class Partition : public Key {
};
class Encrypt : public Key {
};
class LVMPhysical : public Key {
};
class LVMGroup : public Key {
};
class LVMVolume : public Key {
};
class Filesystem : public Key {
};
class Mount : public Key {
private:
const std::string _block;
const std::string _mountpoint;
const std::string _opts;
Mount(int _line, const std::string &my_block,
const std::string &my_mountpoint, const std::string &my_opts = "") :
Key(_line), _block(my_block), _mountpoint(my_mountpoint),
_opts(my_opts) {}
public:
/*! Retrieve the block device to which this mount pertains. */
const std::string device() const { return this->_block; }
/*! Retrieve the mountpoint for this mount. */
const std::string mountpoint() const { return this->_mountpoint; }
/*! Retrieve the mount options for this mount, if any. */
const std::string options() const { return this->_opts; }
static Key *parseFromData(const std::string &, int, int*, int*);
bool validate(ScriptOptions) const override;
bool execute(ScriptOptions) const override;
};
}
}
#endif /* !__HSCRIPT_DISK_HH_ */
|