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
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_CROS_MOUNT_LIBRARY_H_
#define CHROME_BROWSER_CHROMEOS_CROS_MOUNT_LIBRARY_H_
#pragma once
#include <string>
#include <vector>
#include "base/observer_list.h"
#include "base/singleton.h"
#include "base/time.h"
#include "cros/chromeos_mount.h"
namespace chromeos {
// This class handles the interaction with the ChromeOS mount library APIs.
// Classes can add themselves as observers. Users can get an instance of this
// library class like this: chromeos::CrosLibrary::Get()->GetMountLibrary()
class MountLibrary {
public:
// Used to house an instance of each found mount device.
struct Disk {
Disk() {}
Disk(const std::string& devicepath,
const std::string& mountpath,
const std::string& systempath,
bool isparent,
bool hasmedia)
: device_path(devicepath),
mount_path(mountpath),
system_path(systempath),
is_parent(isparent),
has_media(hasmedia) {}
// The path of the device, used by devicekit-disks.
std::string device_path;
// The path to the mount point of this device. Will be empty if not mounted.
std::string mount_path;
// The path of the device according to the udev system.
std::string system_path;
// if the device is a parent device (i.e. sdb rather than sdb1)
bool is_parent;
// if the device has media currently
bool has_media;
};
typedef std::vector<Disk> DiskVector;
class Observer {
public:
virtual void MountChanged(MountLibrary* obj,
MountEventType evt,
const std::string& path) = 0;
};
virtual ~MountLibrary() {}
virtual void AddObserver(Observer* observer) = 0;
virtual void RemoveObserver(Observer* observer) = 0;
virtual const DiskVector& disks() const = 0;
virtual bool MountPath(const char* device_path) = 0;
// Factory function, creates a new instance and returns ownership.
// For normal usage, access the singleton via CrosLibrary::Get().
static MountLibrary* GetImpl(bool stub);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_CROS_MOUNT_LIBRARY_H_
|