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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_SYSTEM_PROVIDER_FILE_SYSTEM_PROVIDER_API_H_
#define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_SYSTEM_PROVIDER_FILE_SYSTEM_PROVIDER_API_H_
#include "base/files/file.h"
#include "base/values.h"
#include "chrome/common/extensions/api/file_system_provider_internal.h"
#include "chromeos/crosapi/mojom/file_system_provider.mojom.h"
#include "extensions/browser/extension_function.h"
namespace extensions {
class FileSystemProviderBase : public ExtensionFunction {
protected:
~FileSystemProviderBase() override = default;
std::string GetProviderId() const;
void RespondWithError(const std::string& error);
};
class FileSystemProviderMountFunction : public FileSystemProviderBase {
public:
DECLARE_EXTENSION_FUNCTION("fileSystemProvider.mount",
FILESYSTEMPROVIDER_MOUNT)
protected:
~FileSystemProviderMountFunction() override = default;
ResponseAction Run() override;
};
class FileSystemProviderUnmountFunction : public FileSystemProviderBase {
public:
DECLARE_EXTENSION_FUNCTION("fileSystemProvider.unmount",
FILESYSTEMPROVIDER_UNMOUNT)
protected:
~FileSystemProviderUnmountFunction() override = default;
ResponseAction Run() override;
};
class FileSystemProviderGetAllFunction : public FileSystemProviderBase {
public:
DECLARE_EXTENSION_FUNCTION("fileSystemProvider.getAll",
FILESYSTEMPROVIDER_GETALL)
protected:
void RespondWithInfos(std::vector<crosapi::mojom::FileSystemInfoPtr>);
~FileSystemProviderGetAllFunction() override = default;
ResponseAction Run() override;
};
class FileSystemProviderGetFunction : public FileSystemProviderBase {
public:
DECLARE_EXTENSION_FUNCTION("fileSystemProvider.get", FILESYSTEMPROVIDER_GET)
protected:
void RespondWithInfo(crosapi::mojom::FileSystemInfoPtr info);
~FileSystemProviderGetFunction() override = default;
ResponseAction Run() override;
};
class FileSystemProviderNotifyFunction : public FileSystemProviderBase {
public:
DECLARE_EXTENSION_FUNCTION("fileSystemProvider.notify",
FILESYSTEMPROVIDER_NOTIFY)
protected:
~FileSystemProviderNotifyFunction() override = default;
ResponseAction Run() override;
private:
// Called when notifying is completed.
void OnNotifyCompleted(base::File::Error result);
};
class FileSystemProviderInternal : public FileSystemProviderBase {
protected:
~FileSystemProviderInternal() override = default;
// Returns the operation metadata from FileSystemProviderInternal methods via
// output parameters.
template <typename Params>
void GetOperationMetadata(const Params& params,
crosapi::mojom::FileSystemIdPtr* file_system_id,
int64_t* request_id) {
*file_system_id = crosapi::mojom::FileSystemId::New();
(*file_system_id)->provider = GetProviderId();
(*file_system_id)->id = params->file_system_id;
*request_id = params->request_id;
}
// Forwards the result of the mount request to the file system provider
// service. Returns false if the forwarding failed.
bool ForwardMountResult(int64_t request_id, base::Value::List& args);
// Forwards the result of the operation to the file system provider service.
// Returns false if the forwarding failed.
template <typename Params>
bool ForwardOperationResult(const Params& params,
base::Value::List& args,
crosapi::mojom::FSPOperationResponse response) {
crosapi::mojom::FileSystemIdPtr file_system_id;
int64_t request_id;
GetOperationMetadata(params, &file_system_id, &request_id);
return ForwardOperationResultImpl(response, std::move(file_system_id),
request_id, std::move(args));
}
// Forwards the result of the `OpenFileSuccess` callback to the file system
// provider service. Falls back to a generic success callback if the remote
// interface doesn't support the optional `EntryMetadata` callback.
bool ForwardOpenFileFinishedSuccessullyResult(
std::optional<
api::file_system_provider_internal::OpenFileRequestedSuccess::Params>
params,
base::Value::List& args);
private:
bool ForwardOperationResultImpl(
crosapi::mojom::FSPOperationResponse response,
crosapi::mojom::FileSystemIdPtr file_system_id,
int request_id,
base::Value::List args);
};
class FileSystemProviderInternalRespondToMountRequestFunction
: public FileSystemProviderInternal {
public:
DECLARE_EXTENSION_FUNCTION("fileSystemProviderInternal.respondToMountRequest",
FILESYSTEMPROVIDERINTERNAL_RESPONDTOMOUNTREQUEST)
protected:
~FileSystemProviderInternalRespondToMountRequestFunction() override = default;
ResponseAction Run() override;
};
class FileSystemProviderInternalUnmountRequestedSuccessFunction
: public FileSystemProviderInternal {
public:
DECLARE_EXTENSION_FUNCTION(
"fileSystemProviderInternal.unmountRequestedSuccess",
FILESYSTEMPROVIDERINTERNAL_UNMOUNTREQUESTEDSUCCESS)
protected:
~FileSystemProviderInternalUnmountRequestedSuccessFunction() override =
default;
ResponseAction Run() override;
};
class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
: public FileSystemProviderInternal {
public:
DECLARE_EXTENSION_FUNCTION(
"fileSystemProviderInternal.getMetadataRequestedSuccess",
FILESYSTEMPROVIDERINTERNAL_GETMETADATAREQUESTEDSUCCESS)
protected:
~FileSystemProviderInternalGetMetadataRequestedSuccessFunction() override =
default;
ResponseAction Run() override;
};
class FileSystemProviderInternalGetActionsRequestedSuccessFunction
: public FileSystemProviderInternal {
public:
DECLARE_EXTENSION_FUNCTION(
"fileSystemProviderInternal.getActionsRequestedSuccess",
FILESYSTEMPROVIDERINTERNAL_GETACTIONSREQUESTEDSUCCESS)
protected:
~FileSystemProviderInternalGetActionsRequestedSuccessFunction() override =
default;
ResponseAction Run() override;
};
class FileSystemProviderInternalReadDirectoryRequestedSuccessFunction
: public FileSystemProviderInternal {
public:
DECLARE_EXTENSION_FUNCTION(
"fileSystemProviderInternal.readDirectoryRequestedSuccess",
FILESYSTEMPROVIDERINTERNAL_READDIRECTORYREQUESTEDSUCCESS)
protected:
~FileSystemProviderInternalReadDirectoryRequestedSuccessFunction() override =
default;
ResponseAction Run() override;
};
class FileSystemProviderInternalReadFileRequestedSuccessFunction
: public FileSystemProviderInternal {
public:
DECLARE_EXTENSION_FUNCTION(
"fileSystemProviderInternal.readFileRequestedSuccess",
FILESYSTEMPROVIDERINTERNAL_READFILEREQUESTEDSUCCESS)
protected:
~FileSystemProviderInternalReadFileRequestedSuccessFunction() override =
default;
ResponseAction Run() override;
};
class FileSystemProviderInternalOpenFileRequestedSuccessFunction
: public FileSystemProviderInternal {
public:
DECLARE_EXTENSION_FUNCTION(
"fileSystemProviderInternal.openFileRequestedSuccess",
FILESYSTEMPROVIDERINTERNAL_OPENFILEREQUESTEDSUCCESS)
protected:
~FileSystemProviderInternalOpenFileRequestedSuccessFunction() override =
default;
ResponseAction Run() override;
};
class FileSystemProviderInternalOperationRequestedSuccessFunction
: public FileSystemProviderInternal {
public:
DECLARE_EXTENSION_FUNCTION(
"fileSystemProviderInternal.operationRequestedSuccess",
FILESYSTEMPROVIDERINTERNAL_OPERATIONREQUESTEDSUCCESS)
protected:
~FileSystemProviderInternalOperationRequestedSuccessFunction() override =
default;
ResponseAction Run() override;
};
class FileSystemProviderInternalOperationRequestedErrorFunction
: public FileSystemProviderInternal {
public:
DECLARE_EXTENSION_FUNCTION(
"fileSystemProviderInternal.operationRequestedError",
FILESYSTEMPROVIDERINTERNAL_OPERATIONREQUESTEDERROR)
protected:
~FileSystemProviderInternalOperationRequestedErrorFunction() override =
default;
ResponseAction Run() override;
};
} // namespace extensions
#endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_SYSTEM_PROVIDER_FILE_SYSTEM_PROVIDER_API_H_
|