blob: 36e1e1d8222df0ffbe6604181f1796115df28eb5 (
plain) (
blame)
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
|
/*
* 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 {
};
class DiskLabel : public Key {
};
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, std::string my_block, std::string my_mountpoint,
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 data, int lineno, int *errors,
int *warnings);
bool validate(ScriptOptions) const override;
bool execute(ScriptOptions) const override;
};
}
}
#endif /* !__HSCRIPT_DISK_HH_ */
|