blob: a8461fbebb831b01a74f161908c3143b08adbff9 [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
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070077 void notifyEvent(int msg);
78 void notifyEvent(int msg, const std::string& value);
79
Jeff Sharkeydeb24052015-03-02 21:01:40 -080080private:
81 /* ID that uniquely references this disk */
82 std::string mId;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070083 /* Original event path */
84 std::string mEventPath;
Jeff Sharkeydeb24052015-03-02 21:01:40 -080085 /* Device path under sysfs */
86 std::string mSysPath;
87 /* Device path under dev */
88 std::string mDevPath;
89 /* Kernel device representing disk */
90 dev_t mDevice;
91 /* Size of disk, in bytes */
92 uint64_t mSize;
93 /* User-visible label, such as manufacturer */
94 std::string mLabel;
95 /* Current partitions on disk */
Jeff Sharkey36801cc2015-03-13 16:09:20 -070096 std::vector<std::shared_ptr<VolumeBase>> mVolumes;
97 /* Nickname for this disk */
98 std::string mNickname;
99 /* Flags applicable to this disk */
100 int mFlags;
101 /* Flag indicating object is created */
102 bool mCreated;
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700103 /* Flag that we just partitioned and should format all volumes */
104 bool mJustPartitioned;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700105
106 void createPublicVolume(dev_t device);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700107 void createPrivateVolume(dev_t device, const std::string& partGuid);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700108
109 void destroyAllVolumes();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800110
111 int getMaxMinors();
112
113 DISALLOW_COPY_AND_ASSIGN(Disk);
114};
115
116} // namespace vold
117} // namespace android
118
119#endif