Skip to content

Latest commit

 

History

History
93 lines (84 loc) · 3.1 KB

partition_p.h

File metadata and controls

93 lines (84 loc) · 3.1 KB
 
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
/*
* Copyright (C) 2016 Jolla Ltd. <andrew.den.exter@jolla.com>
*
* You may use this file under the terms of the BSD license as follows:
*
* "Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of Nemo Mobile nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* 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."
*/
#ifndef PARTITION_P_H
#define PARTITION_P_H
#include "partition.h"
Nov 28, 2018
Nov 28, 2018
37
38
#include <QVariantMap>
39
40
class PartitionManagerPrivate;
Mar 20, 2018
Mar 20, 2018
41
class PartitionPrivate : public QSharedData
42
43
44
45
46
47
48
49
50
51
52
{
public:
PartitionPrivate(PartitionManagerPrivate *manager)
: manager(manager)
, bytesAvailable(0)
, bytesTotal(0)
, bytesFree(0)
, storageType(Partition::Invalid)
, status(Partition::Unmounted)
, readOnly(true)
, canMount(false)
Sep 12, 2018
Sep 12, 2018
53
, isEncrypted(false)
Aug 31, 2018
Aug 31, 2018
54
, isCryptoDevice(false)
Sep 4, 2018
Sep 4, 2018
55
, isSupportedFileSystemType(false)
56
57
, mountFailed(false)
, deviceRoot(false)
Aug 21, 2018
Aug 21, 2018
58
, valid(false)
59
60
61
62
63
64
65
66
67
68
69
70
{
}
public:
bool isParent(const QExplicitlySharedDataPointer<PartitionPrivate> &child) const {
return (deviceRoot && child->deviceName.startsWith(deviceName + QLatin1Char('p')));
}
PartitionManagerPrivate *manager;
QString deviceName;
QString devicePath;
Aug 21, 2018
Aug 21, 2018
71
QString deviceLabel;
72
73
74
QString mountPath;
QString filesystemType;
QString activeState;
Sep 19, 2018
Sep 19, 2018
75
QString cryptoBackingDevicePath;
76
77
78
79
80
qint64 bytesAvailable;
qint64 bytesTotal;
qint64 bytesFree;
Partition::StorageType storageType;
Partition::Status status;
Nov 28, 2018
Nov 28, 2018
81
QVariantMap drive;
82
83
bool readOnly;
bool canMount;
Sep 12, 2018
Sep 12, 2018
84
bool isEncrypted;
Aug 31, 2018
Aug 31, 2018
85
bool isCryptoDevice;
Sep 4, 2018
Sep 4, 2018
86
bool isSupportedFileSystemType;
87
88
bool mountFailed;
bool deviceRoot;
Aug 21, 2018
Aug 21, 2018
89
90
// If valid, only mount status and available bytes will be checked
bool valid;