blob: 82ef1f5d0c03eaca3b8032962f2238f0cf39db1d [file] [log] [blame]
Jeff Sharkeydeb24052015-03-02 21:01:40 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_VOLD_DISK_H
18#define ANDROID_VOLD_DISK_H
19
20#include "Utils.h"
21
22#include <utils/Errors.h>
23
24#include <vector>
25
26namespace android {
27namespace vold {
28
29class VolumeBase;
30
Jeff Sharkeydeb24052015-03-02 21:01:40 -080031/*
32 * Representation of detected physical media.
33 *
34 * Knows how to create volumes based on the partition tables found, and also
35 * how to repartition itself.
36 */
37class Disk {
38public:
Jeff Sharkey36801cc2015-03-13 16:09:20 -070039 Disk(const std::string& eventPath, dev_t device, const std::string& nickname, int flags);
Jeff Sharkeydeb24052015-03-02 21:01:40 -080040 virtual ~Disk();
41
Jeff Sharkey36801cc2015-03-13 16:09:20 -070042 enum Flags {
43 /* Flag that disk is adoptable */
44 kAdoptable = 1 << 0,
45 /* Flag that disk is considered primary when the user hasn't
46 * explicitly picked a primary storage location */
47 kDefaultPrimary = 1 << 1,
48 /* Flag that disk is SD card */
49 kSd = 1 << 2,
50 /* Flag that disk is USB disk */
51 kUsb = 1 << 3,
52 };
53
Jeff Sharkeydeb24052015-03-02 21:01:40 -080054 const std::string& getId() { return mId; }
Jeff Sharkey36801cc2015-03-13 16:09:20 -070055 const std::string& getEventPath() { return mEventPath; }
Jeff Sharkeydeb24052015-03-02 21:01:40 -080056 const std::string& getSysPath() { return mSysPath; }
57 const std::string& getDevPath() { return mDevPath; }
58 dev_t getDevice() { return mDevice; }
59 uint64_t getSize() { return mSize; }
60 const std::string& getLabel() { return mLabel; }
Jeff Sharkey36801cc2015-03-13 16:09:20 -070061 int getFlags() { return mFlags; }
Jeff Sharkeydeb24052015-03-02 21:01:40 -080062
63 std::shared_ptr<VolumeBase> findVolume(const std::string& id);
64
Jeff Sharkey36801cc2015-03-13 16:09:20 -070065 status_t create();
66 status_t destroy();
67
Jeff Sharkeydeb24052015-03-02 21:01:40 -080068 status_t readMetadata();
69 status_t readPartitions();
70
Jeff Sharkey9c484982015-03-31 10:35:33 -070071 status_t unmountAll();
72
Jeff Sharkeydeb24052015-03-02 21:01:40 -080073 status_t partitionPublic();
74 status_t partitionPrivate();
75 status_t partitionMixed(int8_t ratio);
76
77private:
78 /* ID that uniquely references this disk */
79 std::string mId;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070080 /* Original event path */
81 std::string mEventPath;
Jeff Sharkeydeb24052015-03-02 21:01:40 -080082 /* Device path under sysfs */
83 std::string mSysPath;
84 /* Device path under dev */
85 std::string mDevPath;
86 /* Kernel device representing disk */
87 dev_t mDevice;
88 /* Size of disk, in bytes */
89 uint64_t mSize;
90 /* User-visible label, such as manufacturer */
91 std::string mLabel;
92 /* Current partitions on disk */
Jeff Sharkey36801cc2015-03-13 16:09:20 -070093 std::vector<std::shared_ptr<VolumeBase>> mVolumes;
94 /* Nickname for this disk */
95 std::string mNickname;
96 /* Flags applicable to this disk */
97 int mFlags;
98 /* Flag indicating object is created */
99 bool mCreated;
100
101 void createPublicVolume(dev_t device);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700102 void createPrivateVolume(dev_t device, const std::string& partGuid);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700103
104 void destroyAllVolumes();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800105
106 int getMaxMinors();
107
108 DISALLOW_COPY_AND_ASSIGN(Disk);
109};
110
111} // namespace vold
112} // namespace android
113
114#endif