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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_ASH_COMPONENTS_DBUS_CROS_DISKS_CROS_DISKS_CLIENT_H_
#define CHROMEOS_ASH_COMPONENTS_DBUS_CROS_DISKS_CROS_DISKS_CLIENT_H_
#include <cstdint>
#include <memory>
#include <ostream>
#include <string>
#include <string_view>
#include <vector>
#include "base/component_export.h"
#include "base/functional/callback_forward.h"
#include "base/observer_list_types.h"
#include "chromeos/dbus/common/dbus_callback.h"
#include "chromeos/dbus/common/dbus_client.h"
#include "third_party/cros_system_api/dbus/cros-disks/dbus-constants.h"
namespace base {
class FilePath;
}
namespace dbus {
class Response;
}
namespace ash {
using cros_disks::DeviceType;
using cros_disks::FormatError;
using cros_disks::MountError;
using cros_disks::PartitionError;
using cros_disks::RenameError;
// Enum describing types of mount used by cros-disks.
enum class MountType {
kInvalid,
kDevice,
kArchive,
kNetworkStorage,
};
// Output operator for logging.
COMPONENT_EXPORT(ASH_DBUS_CROS_DISKS)
std::ostream& operator<<(std::ostream& out, MountType type);
// Event type each corresponding to a signal sent from cros-disks.
enum class MountEventType {
kDiskAdded,
kDiskRemoved,
kDiskChanged,
kDeviceAdded,
kDeviceRemoved,
kDeviceScanned,
};
// Output operator for logging.
COMPONENT_EXPORT(ASH_DBUS_CROS_DISKS)
std::ostream& operator<<(std::ostream& out, MountEventType event);
// Mount option to control write permission to a device.
enum class MountAccessMode {
kReadWrite,
kReadOnly,
};
// Whether to mount to a new path or remount a device already mounted.
enum RemountOption {
// Mount a new device. If the device is already mounted, the mount status
// is
// unchanged and the callback for MountCompleted will receive
// MountError::kPathAlreadyMounted error code.
kMountNewDevice,
// Remount a device that is already mounted. If the device is not mounted
// yet, it will do nothing and the callback for MountCompleted will
// receive
// MountError::kPathNotMounted error code.
kRemountExistingDevice,
};
// A class to represent information about a disk sent from cros-disks.
class COMPONENT_EXPORT(ASH_DBUS_CROS_DISKS) DiskInfo {
public:
DiskInfo(const std::string& device_path, dbus::Response* response);
~DiskInfo();
// Device path. (e.g. /sys/devices/pci0000:00/.../8:0:0:0/block/sdb/sdb1)
const std::string& device_path() const { return device_path_; }
// Disk mount path. (e.g. /media/removable/VOLUME)
const std::string& mount_path() const { return mount_path_; }
// Path of the scsi/mmc/nvme storage device that this disk is a part of.
// (e.g. /sys/devices/pci0000:00/.../mmc_host/mmc0/mmc0:0002)
const std::string& storage_device_path() const {
return storage_device_path_;
}
// Is a drive or not. (i.e. true with /dev/sdb, false with /dev/sdb1)
bool is_drive() const { return is_drive_; }
// Does the disk have media content.
bool has_media() const { return has_media_; }
// Is the disk on device we booted the machine from.
bool on_boot_device() const { return on_boot_device_; }
// Is the disk on a removable device.
bool on_removable_device() const { return on_removable_device_; }
// Is the device read-only.
bool is_read_only() const { return is_read_only_; }
// Returns true if the device should be hidden from the file browser.
bool is_hidden() const { return is_hidden_; }
// Is the disk virtual.
bool is_virtual() const { return is_virtual_; }
// Is the disk auto-mountable.
bool is_auto_mountable() const { return is_auto_mountable_; }
// Disk file path (e.g. /dev/sdb).
const std::string& file_path() const { return file_path_; }
// Disk label.
const std::string& label() const { return label_; }
// Vendor ID of the device (e.g. "18d1").
const std::string& vendor_id() const { return vendor_id_; }
// Vendor name of the device (e.g. "Google Inc.").
const std::string& vendor_name() const { return vendor_name_; }
// Product ID of the device (e.g. "4e11").
const std::string& product_id() const { return product_id_; }
// Product name of the device (e.g. "Nexus One").
const std::string& product_name() const { return product_name_; }
// Disk model. (e.g. "TransMemory")
const std::string& drive_label() const { return drive_model_; }
// Device type. Not working well, yet.
DeviceType device_type() const { return device_type_; }
// USB bus number of the device (e.g. 1).
int bus_number() const { return bus_number_; }
// USB device number of the device (e.g. 5).
int device_number() const { return device_number_; }
// Total size of the disk in bytes.
uint64_t total_size_in_bytes() const { return total_size_in_bytes_; }
// Returns file system uuid.
const std::string& uuid() const { return uuid_; }
// Returns file system type identifier.
const std::string& file_system_type() const { return file_system_type_; }
private:
bool InitializeFromResponse(dbus::Response* response);
std::string device_path_;
std::string mount_path_;
std::string storage_device_path_;
std::string file_path_;
std::string label_;
std::string vendor_id_;
std::string vendor_name_;
std::string product_id_;
std::string product_name_;
std::string drive_model_;
std::string uuid_;
std::string file_system_type_;
uint64_t total_size_in_bytes_ = 0;
DeviceType device_type_ = DeviceType::kUnknown;
int bus_number_ = 0;
int device_number_ = 0;
bool is_drive_ = false;
bool has_media_ = false;
bool on_boot_device_ = false;
bool on_removable_device_ = false;
bool is_read_only_ = false;
bool is_hidden_ = true;
bool is_virtual_ = false;
bool is_auto_mountable_ = false;
};
// A struct to represent information about a mount point sent from cros-disks.
struct COMPONENT_EXPORT(ASH_DBUS_CROS_DISKS) MountPoint {
// Device or archive path.
std::string source_path;
// Mounted path.
std::string mount_path;
// Type of mount.
MountType mount_type = MountType::kInvalid;
// Condition of mount.
MountError mount_error = MountError::kSuccess;
// Progress percent between 0 and 100 when mount_error is kInProgress.
int progress_percent = 0;
// Read-only file system?
bool read_only = false;
MountPoint(const MountPoint&);
MountPoint& operator=(const MountPoint&);
MountPoint(MountPoint&&);
MountPoint& operator=(MountPoint&&);
MountPoint();
MountPoint(std::string_view source_path,
std::string_view mount_path,
MountType mount_type = MountType::kInvalid,
MountError mount_error = MountError::kSuccess,
int progress_percent = 0,
bool read_only = false);
};
// Output operator for logging.
COMPONENT_EXPORT(ASH_DBUS_CROS_DISKS)
std::ostream& operator<<(std::ostream& out, const MountPoint& entry);
// A class to make the actual DBus calls for cros-disks service.
// This class only makes calls, result/error handling should be done
// by callbacks.
class COMPONENT_EXPORT(ASH_DBUS_CROS_DISKS) CrosDisksClient
: public chromeos::DBusClient {
public:
// A callback to handle the result of EnumerateDevices.
// The argument is the enumerated device paths.
typedef base::OnceCallback<void(const std::vector<std::string>& device_paths)>
EnumerateDevicesCallback;
// A callback to handle the result of EnumerateMountEntries.
// The argument is the enumerated mount entries.
typedef base::OnceCallback<void(const std::vector<MountPoint>& entries)>
EnumerateMountEntriesCallback;
// A callback to handle the result of GetDeviceProperties.
// The argument is the information about the specified device.
typedef base::OnceCallback<void(const DiskInfo& disk_info)>
GetDevicePropertiesCallback;
// A callback to handle the result of Unmount.
// The argument is the unmount error code.
typedef base::OnceCallback<void(MountError error_code)> UnmountCallback;
// A callback to handle the result of SinglePartitionFormat.
// The argument is the partition error code.
using PartitionCallback = base::OnceCallback<void(PartitionError error_code)>;
class Observer : public base::CheckedObserver {
public:
// Called when a mount event signal is received.
virtual void OnMountEvent(MountEventType event_type,
const std::string& device_path) = 0;
// Called when a MountCompleted signal is received.
virtual void OnMountCompleted(const MountPoint& entry) = 0;
// Called when a MountProgress signal is received.
virtual void OnMountProgress(const MountPoint& entry) = 0;
// Called when a FormatCompleted signal is received.
virtual void OnFormatCompleted(FormatError error_code,
const std::string& device_path) = 0;
// Called when a RenameCompleted signal is received.
virtual void OnRenameCompleted(RenameError error_code,
const std::string& device_path) = 0;
};
// Returns the global instance if initialized. May return null.
static CrosDisksClient* Get();
// Creates and initializes the global instance. |bus| must not be null.
static void Initialize(dbus::Bus* bus);
// Creates and initializes a fake global instance.
static void InitializeFake();
// Destroys the global instance if it has been initialized.
static void Shutdown();
CrosDisksClient(const CrosDisksClient&) = delete;
CrosDisksClient& operator=(const CrosDisksClient&) = delete;
// Registers the given |observer| to listen D-Bus signals.
virtual void AddObserver(Observer* observer) = 0;
// Unregisters the |observer| from this instance.
virtual void RemoveObserver(Observer* observer) = 0;
// Calls Mount method. On method call completion, |callback| is called with
// |true| on success, or with |false| otherwise.
// When mounting an archive, caller may set two optional arguments:
// - The |source_format| argument passes the file extension (with the leading
// dot, for example ".zip"). If |source_format| is empty then the source
// format is auto-detected.
// - The |mount_label| argument passes an optional mount label to be used as
// the directory name of the mount point. If |mount_label| is empty, the
// mount label will be based on the |source_path|.
virtual void Mount(const std::string& source_path,
const std::string& source_format,
const std::string& mount_label,
const std::vector<std::string>& mount_options,
MountAccessMode access_mode,
RemountOption remount,
chromeos::VoidDBusMethodCallback callback) = 0;
// Calls Unmount method. On method call completion, |callback| is called
// with the error code.
virtual void Unmount(const std::string& device_path,
UnmountCallback callback) = 0;
// Calls EnumerateDevices method. |callback| is called after the
// method call succeeds, otherwise, |error_callback| is called.
virtual void EnumerateDevices(EnumerateDevicesCallback callback,
base::OnceClosure error_callback) = 0;
// Calls EnumerateMountEntries. |callback| is called after the
// method call succeeds, otherwise, |error_callback| is called.
virtual void EnumerateMountEntries(EnumerateMountEntriesCallback callback,
base::OnceClosure error_callback) = 0;
// Calls Format method. On completion, |callback| is called, with |true| on
// success, or with |false| otherwise.
virtual void Format(const std::string& device_path,
const std::string& filesystem,
const std::string& label,
chromeos::VoidDBusMethodCallback callback) = 0;
// Calls SinglePartitionFormat async method. |callback| is called when
// response received.
virtual void SinglePartitionFormat(const std::string& device_path,
PartitionCallback callback) = 0;
// Calls Rename method. On completion, |callback| is called, with |true| on
// success, or with |false| otherwise.
virtual void Rename(const std::string& device_path,
const std::string& volume_name,
chromeos::VoidDBusMethodCallback callback) = 0;
// Calls GetDeviceProperties method. |callback| is called after the method
// call succeeds, otherwise, |error_callback| is called.
virtual void GetDeviceProperties(const std::string& device_path,
GetDevicePropertiesCallback callback,
base::OnceClosure error_callback) = 0;
// Returns the path of the mount point for archive files.
static base::FilePath GetArchiveMountPoint();
// Returns the path of the mount point for removable disks.
static base::FilePath GetRemovableDiskMountPoint();
// Composes a list of mount options.
static std::vector<std::string> ComposeMountOptions(
std::vector<std::string> options,
std::string_view mount_label,
MountAccessMode access_mode,
RemountOption remount);
protected:
// Initialize() should be used instead.
CrosDisksClient();
~CrosDisksClient() override;
};
} // namespace ash
#endif // CHROMEOS_ASH_COMPONENTS_DBUS_CROS_DISKS_CROS_DISKS_CLIENT_H_
|