blob: 0f24b14ef56e731c20b048301bc755ed1e19bb8d (
plain)
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
|
// Copyright (c) 2012 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_MEDIA_GALLERIES_FILEAPI_MTP_DEVICE_MAP_SERVICE_H_
#define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MTP_DEVICE_MAP_SERVICE_H_
#include <map>
#include "base/files/file_path.h"
#include "base/lazy_instance.h"
#include "base/threading/thread_checker.h"
class MTPDeviceAsyncDelegate;
// This class provides media transfer protocol (MTP) device delegate to
// complete media file system operations.
// Lives on the IO thread in production.
// TODO(gbillock): Make this class owned by the MediaFileSystemRegistry.
class MTPDeviceMapService {
public:
static MTPDeviceMapService* GetInstance();
// Gets the media device delegate associated with |filesystem_id|.
// Return NULL if the |filesystem_id| is no longer valid (e.g. because the
// corresponding device is detached, etc).
// Called on the IO thread.
MTPDeviceAsyncDelegate* GetMTPDeviceAsyncDelegate(
const std::string& filesystem_id);
// Register that an MTP filesystem is in use for the given |device_location|.
void RegisterMTPFileSystem(const base::FilePath::StringType& device_location,
const std::string& filesystem_id,
const bool read_only);
// Removes the MTP entry associated with the given
// |device_location|. Signals the MTPDeviceMapService to destroy the
// delegate if there are no more uses of it.
void RevokeMTPFileSystem(const std::string& filesystem_id);
private:
friend struct base::DefaultLazyInstanceTraits<MTPDeviceMapService>;
// Adds the MTP device delegate to the map service. |device_location|
// specifies the mount location of the MTP device.
// Called on the IO thread.
void AddAsyncDelegate(const base::FilePath::StringType& device_location,
const bool read_only,
MTPDeviceAsyncDelegate* delegate);
// Removes the MTP device delegate from the map service. |device_location|
// specifies the mount location of the MTP device.
// Called on the IO thread.
void RemoveAsyncDelegate(const base::FilePath::StringType& device_location,
const bool read_only);
// A key to be used in AsyncDelegateMap and MTPDeviceUsageMap.
typedef base::FilePath::StringType AsyncDelegateKey;
// Gets a key from |device_location| and |read_only|.
static AsyncDelegateKey GetAsyncDelegateKey(
const base::FilePath::StringType& device_location,
const bool read_only);
// Mapping of device_location and MTPDeviceAsyncDelegate* object. It is safe
// to store and access the raw pointer. This class operates on the IO thread.
typedef std::map<AsyncDelegateKey, MTPDeviceAsyncDelegate*> AsyncDelegateMap;
// Map a filesystem id (fsid) to an MTP device location.
typedef std::pair<base::FilePath::StringType, bool> MTPDeviceInfo;
typedef std::map<std::string, MTPDeviceInfo> MTPDeviceFileSystemMap;
// Map a MTP or PTP device location to a count of current uses of that
// location.
typedef std::map<AsyncDelegateKey, int> MTPDeviceUsageMap;
// Get access to this class using GetInstance() method.
MTPDeviceMapService();
~MTPDeviceMapService();
// Map of attached mtp device async delegates.
AsyncDelegateMap async_delegate_map_;
MTPDeviceFileSystemMap mtp_device_map_;
MTPDeviceUsageMap mtp_device_usage_map_;
DISALLOW_COPY_AND_ASSIGN(MTPDeviceMapService);
};
#endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_MTP_DEVICE_MAP_SERVICE_H_
|