syncable_file_system_util.h revision 1320f92c476a1ad9d19dba2a48c72b75566198e9
1// Copyright 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.
4
5#ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNCABLE_FILE_SYSTEM_UTIL_H_
6#define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNCABLE_FILE_SYSTEM_UTIL_H_
7
8#include <string>
9
10#include "base/callback_forward.h"
11#include "base/files/file_path.h"
12#include "storage/browser/fileapi/file_system_url.h"
13
14namespace storage {
15class FileSystemContext;
16class FileSystemURL;
17}
18
19namespace tracked_objects {
20class Location;
21}
22
23namespace sync_file_system {
24
25// Registers a syncable filesystem.
26void RegisterSyncableFileSystem();
27
28// Revokes the syncable filesystem.
29void RevokeSyncableFileSystem();
30
31// Returns the root URI of the syncable filesystem for |origin|.
32GURL GetSyncableFileSystemRootURI(const GURL& origin);
33
34// Creates a FileSystem URL for the |path| in a syncable filesystem for
35// |origin|.
36//
37// Example: Assume following arguments are given:
38//   origin: 'http://www.example.com/',
39//   path: '/foo/bar',
40// returns 'filesystem:http://www.example.com/external/syncfs/foo/bar'
41storage::FileSystemURL CreateSyncableFileSystemURL(const GURL& origin,
42                                                   const base::FilePath& path);
43
44// Creates a special filesystem URL for synchronizing |syncable_url|.
45storage::FileSystemURL CreateSyncableFileSystemURLForSync(
46    storage::FileSystemContext* file_system_context,
47    const storage::FileSystemURL& syncable_url);
48
49// Serializes a given FileSystemURL |url| and sets the serialized string to
50// |serialized_url|. If the URL does not represent a syncable filesystem,
51// |serialized_url| is not filled in, and returns false. Separators of the
52// path will be normalized depending on its platform.
53//
54// Example: Assume a following FileSystemURL object is given:
55//   origin() returns 'http://www.example.com/',
56//   type() returns the kFileSystemTypeSyncable,
57//   filesystem_id() returns 'syncfs',
58//   path() returns '/foo/bar',
59// this URL will be serialized to
60// (on Windows)
61//   'filesystem:http://www.example.com/external/syncfs/foo\\bar'
62// (on others)
63//   'filesystem:http://www.example.com/external/syncfs/foo/bar'
64bool SerializeSyncableFileSystemURL(const storage::FileSystemURL& url,
65                                    std::string* serialized_url);
66
67// Deserializes a serialized FileSystem URL string |serialized_url| and sets the
68// deserialized value to |url|. If the reconstructed object is invalid or does
69// not represent a syncable filesystem, returns false.
70//
71// NOTE: On any platform other than Windows, this function assumes that
72// |serialized_url| does not contain '\\'. If it contains '\\' on such
73// platforms, '\\' may be replaced with '/' (It would not be an expected
74// behavior).
75//
76// See the comment of SerializeSyncableFileSystemURL() for more details.
77bool DeserializeSyncableFileSystemURL(const std::string& serialized_url,
78                                      storage::FileSystemURL* url);
79
80// Returns SyncFileSystem sub-directory path.
81base::FilePath GetSyncFileSystemDir(const base::FilePath& profile_base_dir);
82
83// Posts |callback| to the current thread.
84void RunSoon(const tracked_objects::Location& from_here,
85             const base::Closure& callback);
86
87base::Closure NoopClosure();
88
89}  // namespace sync_file_system
90
91#endif  // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNCABLE_FILE_SYSTEM_UTIL_H_
92