You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
4.0 KiB

/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ANDROID_VOLD_DISK_H
#define ANDROID_VOLD_DISK_H
#include "StubVolume.h"
#include "Utils.h"
#include "VolumeBase.h"
#include <utils/Errors.h>
#include <vector>
namespace android {
namespace vold {
class VolumeBase;
/*
* Representation of detected physical media.
*
* Knows how to create volumes based on the partition tables found, and also
* how to repartition itself.
*/
class Disk {
public:
Disk(const std::string& eventPath, dev_t device, const std::string& nickname, int flags);
virtual ~Disk();
enum Flags {
/* Flag that disk is adoptable */
kAdoptable = 1 << 0,
/* Flag that disk is considered primary when the user hasn't
* explicitly picked a primary storage location */
kDefaultPrimary = 1 << 1,
/* Flag that disk is SD card */
kSd = 1 << 2,
/* Flag that disk is USB disk */
kUsb = 1 << 3,
/* Flag that disk is EMMC internal */
kEmmc = 1 << 4,
/* Flag that disk is Stub disk, i.e., disk that is managed from outside
* Android (e.g., ARC++). */
kStub = 1 << 5,
/* Flag that disk is non-removable */
kNonRemovable = 1 << 6,
};
const std::string& getId() const { return mId; }
const std::string& getEventPath() const { return mEventPath; }
const std::string& getSysPath() const { return mSysPath; }
const std::string& getDevPath() const { return mDevPath; }
dev_t getDevice() const { return mDevice; }
uint64_t getSize() const { return mSize; }
const std::string& getLabel() const { return mLabel; }
int getFlags() const { return mFlags; }
std::shared_ptr<VolumeBase> findVolume(const std::string& id);
void listVolumes(VolumeBase::Type type, std::list<std::string>& list) const;
std::vector<std::shared_ptr<VolumeBase>> getVolumes() const;
virtual status_t create();
virtual status_t destroy();
virtual status_t readMetadata();
virtual status_t readPartitions();
void initializePartition(std::shared_ptr<StubVolume> vol);
status_t unmountAll();
virtual status_t partitionPublic();
virtual status_t partitionPrivate();
virtual status_t partitionMixed(int8_t ratio);
protected:
/* ID that uniquely references this disk */
std::string mId;
/* Original event path */
std::string mEventPath;
/* Device path under sysfs */
std::string mSysPath;
/* Device path under dev */
std::string mDevPath;
/* Kernel device representing disk */
dev_t mDevice;
/* Size of disk, in bytes */
uint64_t mSize;
/* User-visible label, such as manufacturer */
std::string mLabel;
/* Current partitions on disk */
std::vector<std::shared_ptr<VolumeBase>> mVolumes;
/* Nickname for this disk */
std::string mNickname;
/* Flags applicable to this disk */
int mFlags;
/* Flag indicating object is created */
bool mCreated;
/* Flag that we just partitioned and should format all volumes */
bool mJustPartitioned;
/* Flag that we need to skip first disk change events after partitioning*/
bool mSkipChange;
void createPublicVolume(dev_t device);
void createPrivateVolume(dev_t device, const std::string& partGuid);
void createStubVolume();
void destroyAllVolumes();
int getMaxMinors();
bool isStub() { return mFlags & kStub; }
DISALLOW_COPY_AND_ASSIGN(Disk);
};
} // namespace vold
} // namespace android
#endif