2015-03-03 06:01:40 +01:00
|
|
|
/*
|
|
|
|
* 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 "Utils.h"
|
2015-06-26 23:02:09 +02:00
|
|
|
#include "VolumeBase.h"
|
2015-03-03 06:01:40 +01:00
|
|
|
|
|
|
|
#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:
|
2015-03-14 00:09:20 +01:00
|
|
|
Disk(const std::string& eventPath, dev_t device, const std::string& nickname, int flags);
|
2015-03-03 06:01:40 +01:00
|
|
|
virtual ~Disk();
|
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
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,
|
2015-05-15 05:33:55 +02:00
|
|
|
/* Flag that disk is EMMC internal */
|
|
|
|
kEmmc = 1 << 4,
|
2015-03-14 00:09:20 +01:00
|
|
|
};
|
|
|
|
|
2015-03-03 06:01:40 +01:00
|
|
|
const std::string& getId() { return mId; }
|
2015-03-14 00:09:20 +01:00
|
|
|
const std::string& getEventPath() { return mEventPath; }
|
2015-03-03 06:01:40 +01:00
|
|
|
const std::string& getSysPath() { return mSysPath; }
|
|
|
|
const std::string& getDevPath() { return mDevPath; }
|
|
|
|
dev_t getDevice() { return mDevice; }
|
|
|
|
uint64_t getSize() { return mSize; }
|
|
|
|
const std::string& getLabel() { return mLabel; }
|
2015-03-14 00:09:20 +01:00
|
|
|
int getFlags() { return mFlags; }
|
2015-03-03 06:01:40 +01:00
|
|
|
|
|
|
|
std::shared_ptr<VolumeBase> findVolume(const std::string& id);
|
|
|
|
|
2015-06-26 23:02:09 +02:00
|
|
|
void listVolumes(VolumeBase::Type type, std::list<std::string>& list);
|
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
status_t create();
|
|
|
|
status_t destroy();
|
|
|
|
|
2015-03-03 06:01:40 +01:00
|
|
|
status_t readMetadata();
|
|
|
|
status_t readPartitions();
|
|
|
|
|
2015-03-31 19:35:33 +02:00
|
|
|
status_t unmountAll();
|
|
|
|
|
2015-03-03 06:01:40 +01:00
|
|
|
status_t partitionPublic();
|
|
|
|
status_t partitionPrivate();
|
|
|
|
status_t partitionMixed(int8_t ratio);
|
|
|
|
|
2015-04-09 06:07:21 +02:00
|
|
|
void notifyEvent(int msg);
|
|
|
|
void notifyEvent(int msg, const std::string& value);
|
|
|
|
|
2015-03-03 06:01:40 +01:00
|
|
|
private:
|
|
|
|
/* ID that uniquely references this disk */
|
|
|
|
std::string mId;
|
2015-03-14 00:09:20 +01:00
|
|
|
/* Original event path */
|
|
|
|
std::string mEventPath;
|
2015-03-03 06:01:40 +01:00
|
|
|
/* 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 */
|
2015-03-14 00:09:20 +01:00
|
|
|
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;
|
2015-04-09 06:07:21 +02:00
|
|
|
/* Flag that we just partitioned and should format all volumes */
|
|
|
|
bool mJustPartitioned;
|
2015-03-14 00:09:20 +01:00
|
|
|
|
|
|
|
void createPublicVolume(dev_t device);
|
2015-03-31 19:35:33 +02:00
|
|
|
void createPrivateVolume(dev_t device, const std::string& partGuid);
|
2015-03-14 00:09:20 +01:00
|
|
|
|
|
|
|
void destroyAllVolumes();
|
2015-03-03 06:01:40 +01:00
|
|
|
|
|
|
|
int getMaxMinors();
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Disk);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace vold
|
|
|
|
} // namespace android
|
|
|
|
|
|
|
|
#endif
|