1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef WEBKIT_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_
6 #define WEBKIT_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_
12 #include "base/memory/ref_counted.h"
13 #include "base/synchronization/lock.h"
14 #include "webkit/browser/fileapi/mount_points.h"
15 #include "webkit/browser/webkit_storage_browser_export.h"
16 #include "webkit/common/fileapi/file_system_mount_option.h"
17 #include "webkit/common/fileapi/file_system_types.h"
27 // Manages external filesystem namespaces that are identified by 'mount name'
28 // and are persisted until RevokeFileSystem is called.
29 // Files in an external filesystem are identified by a filesystem URL like:
31 // filesystem:<origin>/external/<mount_name>/relative/path
33 class WEBKIT_STORAGE_BROWSER_EXPORT ExternalMountPoints
34 : public base::RefCountedThreadSafe
<ExternalMountPoints
>,
37 static ExternalMountPoints
* GetSystemInstance();
38 static scoped_refptr
<ExternalMountPoints
> CreateRefCounted();
40 // Registers a new named external filesystem.
41 // The |path| is registered as the root path of the mount point which
42 // is identified by a URL "filesystem:.../external/mount_name".
44 // For example, if the path "/media/removable" is registered with
45 // the mount_name "removable", a filesystem URL like
46 // "filesystem:.../external/removable/a/b" will be resolved as
47 // "/media/removable/a/b".
49 // The |mount_name| should NOT contain a path separator '/'.
50 // Returns false if the given name is already registered.
52 // Overlapping mount points in a single MountPoints instance are not allowed.
53 // Adding mount point whose path overlaps with an existing mount point will
54 // fail except for media galleries, which do not count toward registered
55 // paths for overlap calculation.
57 // If not empty, |path| must be absolute. It is allowed for the path to be
58 // empty, but |GetVirtualPath| will not work for those mount points.
60 // An external file system registered by this method can be revoked
61 // by calling RevokeFileSystem with |mount_name|.
62 bool RegisterFileSystem(const std::string
& mount_name
,
64 const FileSystemMountOption
& mount_option
,
65 const base::FilePath
& path
);
67 // MountPoints overrides.
68 virtual bool HandlesFileSystemMountType(FileSystemType type
) const OVERRIDE
;
69 virtual bool RevokeFileSystem(const std::string
& mount_name
) OVERRIDE
;
70 virtual bool GetRegisteredPath(const std::string
& mount_name
,
71 base::FilePath
* path
) const OVERRIDE
;
72 virtual bool CrackVirtualPath(
73 const base::FilePath
& virtual_path
,
74 std::string
* mount_name
,
77 FileSystemMountOption
* mount_option
) const OVERRIDE
;
78 virtual FileSystemURL
CrackURL(const GURL
& url
) const OVERRIDE
;
79 virtual FileSystemURL
CreateCrackedFileSystemURL(
82 const base::FilePath
& path
) const OVERRIDE
;
84 // Returns a list of registered MountPointInfos (of <mount_name, path>).
85 void AddMountPointInfosTo(std::vector
<MountPointInfo
>* mount_points
) const;
87 // Converts a path on a registered file system to virtual path relative to the
88 // file system root. E.g. if 'Downloads' file system is mapped to
89 // '/usr/local/home/Downloads', and |absolute| path is set to
90 // '/usr/local/home/Downloads/foo', the method will set |virtual_path| to
92 // Returns false if the path cannot be resolved (e.g. if the path is not
93 // part of any registered filesystem).
95 // Media gallery type file systems do not count for this calculation. i.e.
96 // if only a media gallery is registered for the path, false will be returned.
97 // If a media gallery and another file system are registered for related
98 // paths, only the other registration is taken into account.
100 // Returned virtual_path will have normalized path separators.
101 bool GetVirtualPath(const base::FilePath
& absolute_path
,
102 base::FilePath
* virtual_path
) const;
104 // Returns the virtual root path that looks like /<mount_name>.
105 base::FilePath
CreateVirtualRootPath(const std::string
& mount_name
) const;
107 FileSystemURL
CreateExternalFileSystemURL(
109 const std::string
& mount_name
,
110 const base::FilePath
& path
) const;
112 // Revoke all registered filesystems. Used only by testing (for clean-ups).
113 void RevokeAllFileSystems();
116 friend class base::RefCountedThreadSafe
<ExternalMountPoints
>;
118 // Represents each file system instance (defined in the .cc).
121 typedef std::map
<std::string
, Instance
*> NameToInstance
;
123 // Reverse map from registered path to its corresponding mount name.
124 typedef std::map
<base::FilePath
, std::string
> PathToName
;
126 // Use |GetSystemInstance| of |CreateRefCounted| to get an instance.
127 ExternalMountPoints();
128 virtual ~ExternalMountPoints();
130 // MountPoint overrides.
131 virtual FileSystemURL
CrackFileSystemURL(
132 const FileSystemURL
& url
) const OVERRIDE
;
134 // Performs sanity checks on the new mount point.
135 // Checks the following:
136 // - there is no registered mount point with mount_name
137 // - path does not contain a reference to a parent
138 // - path is absolute
139 // - path does not overlap with an existing mount point path unless it is a
140 // media gallery type.
142 // |lock_| should be taken before calling this method.
143 bool ValidateNewMountPoint(const std::string
& mount_name
,
145 const base::FilePath
& path
);
147 // This lock needs to be obtained when accessing the instance_map_.
148 mutable base::Lock lock_
;
150 NameToInstance instance_map_
;
151 PathToName path_to_name_map_
;
153 DISALLOW_COPY_AND_ASSIGN(ExternalMountPoints
);
156 } // namespace fileapi
158 #endif // WEBKIT_BROWSER_FILEAPI_EXTERNAL_MOUNT_POINTS_H_