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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
|
/*
* Copyright (C) 2008 Apple Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "third_party/blink/renderer/core/fileapi/file.h"
#include <memory>
#include "base/memory/scoped_refptr.h"
#include "third_party/blink/public/mojom/filesystem/file_system.mojom-blink.h"
#include "third_party/blink/public/platform/file_path_conversion.h"
#include "third_party/blink/public/platform/platform.h"
#include "third_party/blink/renderer/bindings/core/v8/to_v8_traits.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_file_property_bag.h"
#include "third_party/blink/renderer/core/core_initializer.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/fileapi/file_backed_blob_factory_dispatcher.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/html/forms/form_controller.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/bindings/script_state.h"
#include "third_party/blink/renderer/platform/blob/blob_data.h"
#include "third_party/blink/renderer/platform/file_metadata.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
#include "third_party/blink/renderer/platform/network/mime/mime_type_registry.h"
#include "third_party/blink/renderer/platform/wtf/date_math.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
static String GetContentTypeFromFileName(const String& name,
File::ContentTypeLookupPolicy policy) {
String type;
wtf_size_t index = name.ReverseFind('.');
if (index != WTF::kNotFound) {
if (policy == File::kWellKnownContentTypes) {
type = MIMETypeRegistry::GetWellKnownMIMETypeForExtension(
name.Substring(index + 1));
} else {
DCHECK_EQ(policy, File::kAllContentTypes);
type =
MIMETypeRegistry::GetMIMETypeForExtension(name.Substring(index + 1));
}
}
return type;
}
static scoped_refptr<BlobDataHandle> CreateBlobDataHandleForFileWithType(
ExecutionContext* context,
const String& path,
const String& content_type) {
return BlobDataHandle::CreateForFile(
FileBackedBlobFactoryDispatcher::GetFileBackedBlobFactory(context), path,
/*offset=*/0, BlobData::kToEndOfFile,
/*expected_modification_time=*/std::nullopt, content_type);
}
static scoped_refptr<BlobDataHandle> CreateBlobDataHandleForFile(
ExecutionContext* context,
const String& path,
File::ContentTypeLookupPolicy policy) {
if (path.empty()) {
auto blob_data = std::make_unique<BlobData>();
blob_data->SetContentType("application/octet-stream");
return BlobDataHandle::Create(std::move(blob_data), /*size=*/0);
}
return CreateBlobDataHandleForFileWithType(
context, path, GetContentTypeFromFileName(path, policy));
}
static scoped_refptr<BlobDataHandle> CreateBlobDataHandleForFileWithName(
ExecutionContext* context,
const String& path,
const String& file_system_name,
File::ContentTypeLookupPolicy policy) {
return CreateBlobDataHandleForFileWithType(
context, path, GetContentTypeFromFileName(file_system_name, policy));
}
static scoped_refptr<BlobDataHandle> CreateBlobDataHandleForFileWithMetadata(
ExecutionContext* context,
const String& file_system_name,
const FileMetadata& metadata) {
// We are creating a handle for a snapshot file. The FileSystemManager may
// have to create a read permission needed on the browser side for this
// operation. As the manager might revoke this permission directly after the
// call, we have to ensure the permission is available while we create the
// handle. So we need create a handle using the synchronous version of the
// IPC.
return BlobDataHandle::CreateForFileSync(
FileBackedBlobFactoryDispatcher::GetFileBackedBlobFactory(context),
metadata.platform_path,
/*offset=*/0, metadata.length, metadata.modification_time,
GetContentTypeFromFileName(file_system_name,
File::kWellKnownContentTypes));
}
// static
File* File::Create(ExecutionContext* context,
const HeapVector<Member<V8BlobPart>>& file_bits,
const String& file_name,
const FilePropertyBag* options) {
DCHECK(options->hasType());
base::Time last_modified;
if (options->hasLastModified()) {
// We don't use base::Time::FromMillisecondsSinceUnixEpoch(double) here
// because options->lastModified() is a 64-bit integer, and casting it to
// double is lossy.
last_modified =
base::Time::UnixEpoch() + base::Milliseconds(options->lastModified());
} else {
last_modified = base::Time::Now();
}
DCHECK(options->hasEndings());
bool normalize_line_endings_to_native = options->endings() == "native";
if (normalize_line_endings_to_native)
UseCounter::Count(context, WebFeature::kFileAPINativeLineEndings);
auto blob_data = std::make_unique<BlobData>();
blob_data->SetContentType(NormalizeType(options->type()));
PopulateBlobData(blob_data.get(), file_bits,
normalize_line_endings_to_native);
uint64_t file_size = blob_data->length();
return MakeGarbageCollected<File>(
file_name, last_modified,
BlobDataHandle::Create(std::move(blob_data), file_size));
}
File* File::CreateFromControlState(ExecutionContext* context,
const FormControlState& state,
wtf_size_t& index) {
if (index + 2 >= state.ValueSize()) {
index = state.ValueSize();
return nullptr;
}
String path = state[index++];
String name = state[index++];
String relative_path = state[index++];
if (relative_path.empty())
return File::CreateForUserProvidedFile(context, path, name);
return File::CreateWithRelativePath(context, path, name, relative_path);
}
String File::PathFromControlState(const FormControlState& state,
wtf_size_t& index) {
if (index + 2 >= state.ValueSize()) {
index = state.ValueSize();
return String();
}
String path = state[index];
index += 3;
return path;
}
File* File::CreateWithRelativePath(ExecutionContext* context,
const String& path,
const String& name,
const String& relative_path) {
File* file = MakeGarbageCollected<File>(
context, path, name, File::kAllContentTypes, File::kIsUserVisible);
file->relative_path_ = relative_path;
return file;
}
// static
File* File::CreateForFileSystemFile(ExecutionContext& context,
const KURL& url,
const FileMetadata& metadata,
UserVisibility user_visibility) {
String content_type = GetContentTypeFromFileName(
url.GetPath().ToString(), File::kWellKnownContentTypes);
// RegisterBlob doesn't take nullable strings.
if (content_type.IsNull()) {
content_type = g_empty_string;
}
scoped_refptr<BlobDataHandle> handle;
CoreInitializer::GetInstance().GetFileSystemManager(&context).RegisterBlob(
content_type, url, metadata.length, metadata.modification_time, &handle);
return MakeGarbageCollected<File>(url, metadata, user_visibility, handle);
}
File::File(ExecutionContext* context,
const String& path,
ContentTypeLookupPolicy policy,
UserVisibility user_visibility)
: Blob(CreateBlobDataHandleForFile(context, path, policy)),
has_backing_file_(true),
user_visibility_(user_visibility),
path_(path),
name_(FilePathToWebString(WebStringToFilePath(path).BaseName())) {}
File::File(ExecutionContext* context,
const String& path,
const String& name,
ContentTypeLookupPolicy policy,
UserVisibility user_visibility)
: Blob(CreateBlobDataHandleForFileWithName(context, path, name, policy)),
has_backing_file_(true),
user_visibility_(user_visibility),
path_(path),
name_(name) {}
File::File(const String& path,
const String& name,
const String& relative_path,
UserVisibility user_visibility,
bool has_snapshot_data,
uint64_t size,
const std::optional<base::Time>& last_modified,
scoped_refptr<BlobDataHandle> blob_data_handle)
: Blob(std::move(blob_data_handle)),
has_backing_file_(!path.empty() || !relative_path.empty()),
user_visibility_(user_visibility),
path_(path),
name_(name),
snapshot_modification_time_(last_modified),
relative_path_(relative_path) {
if (has_snapshot_data)
snapshot_size_ = size;
}
File::File(const String& name,
const std::optional<base::Time>& modification_time,
scoped_refptr<BlobDataHandle> blob_data_handle)
: Blob(std::move(blob_data_handle)),
has_backing_file_(false),
user_visibility_(File::kIsNotUserVisible),
name_(name),
snapshot_modification_time_(modification_time) {
uint64_t size = Blob::size();
if (size != std::numeric_limits<uint64_t>::max())
snapshot_size_ = size;
}
File::File(ExecutionContext* context,
const String& name,
const FileMetadata& metadata,
UserVisibility user_visibility)
: Blob(CreateBlobDataHandleForFileWithMetadata(context, name, metadata)),
has_backing_file_(true),
user_visibility_(user_visibility),
path_(metadata.platform_path),
name_(name),
snapshot_modification_time_(metadata.modification_time) {
if (metadata.length >= 0) {
snapshot_size_ = metadata.length;
}
}
File::File(const KURL& file_system_url,
const FileMetadata& metadata,
UserVisibility user_visibility,
scoped_refptr<BlobDataHandle> blob_data_handle)
: Blob(std::move(blob_data_handle)),
has_backing_file_(false),
user_visibility_(user_visibility),
name_(DecodeURLEscapeSequences(file_system_url.LastPathComponent(),
DecodeURLMode::kUTF8OrIsomorphic)),
file_system_url_(file_system_url),
snapshot_size_(metadata.length),
snapshot_modification_time_(metadata.modification_time) {
DCHECK_GE(metadata.length, 0);
}
File::File(const File& other)
: Blob(other.GetBlobDataHandle()),
has_backing_file_(other.has_backing_file_),
user_visibility_(other.user_visibility_),
path_(other.path_),
name_(other.name_),
file_system_url_(other.file_system_url_),
snapshot_size_(other.snapshot_size_),
snapshot_modification_time_(other.snapshot_modification_time_),
relative_path_(other.relative_path_) {}
File* File::Clone(const String& name) const {
File* file = MakeGarbageCollected<File>(*this);
if (!name.IsNull())
file->name_ = name;
return file;
}
base::Time File::LastModifiedTime() const {
CaptureSnapshotIfNeeded();
if (HasValidSnapshotMetadata() && snapshot_modification_time_)
return *snapshot_modification_time_;
// lastModified / lastModifiedDate getters should return the current time
// when the last modification time isn't known.
return base::Time::Now();
}
int64_t File::lastModified() const {
// lastModified returns a number, not a Date instance,
// http://dev.w3.org/2006/webapi/FileAPI/#file-attrs
return (LastModifiedTime() - base::Time::UnixEpoch()).InMilliseconds();
}
ScriptObject File::lastModifiedDate(ScriptState* script_state) const {
// lastModifiedDate returns a Date instance,
// http://www.w3.org/TR/FileAPI/#dfn-lastModifiedDate
return ToV8FromDate(script_state, std::make_optional(LastModifiedTime()));
}
std::optional<base::Time> File::LastModifiedTimeForSerialization() const {
CaptureSnapshotIfNeeded();
return snapshot_modification_time_;
}
uint64_t File::size() const {
CaptureSnapshotIfNeeded();
// FIXME: JavaScript cannot represent sizes as large as uint64_t, we need
// to come up with an exception to throw if file size is not representable.
if (HasValidSnapshotMetadata())
return *snapshot_size_;
return 0;
}
void File::CaptureSnapshotIfNeeded() const {
if (HasValidSnapshotMetadata() && snapshot_modification_time_)
return;
uint64_t snapshot_size;
if (GetBlobDataHandle()->CaptureSnapshot(&snapshot_size,
&snapshot_modification_time_)) {
snapshot_size_ = snapshot_size;
}
}
bool File::HasSameSource(const File& other) const {
if (has_backing_file_ != other.has_backing_file_)
return false;
if (has_backing_file_)
return path_ == other.path_;
if (file_system_url_.IsEmpty() != other.file_system_url_.IsEmpty())
return false;
if (!file_system_url_.IsEmpty())
return file_system_url_ == other.file_system_url_;
return Uuid() == other.Uuid();
}
bool File::AppendToControlState(FormControlState& state) {
// FIXME: handle Blob-backed File instances, see http://crbug.com/394948
if (!HasBackingFile())
return false;
state.Append(GetPath());
state.Append(name());
state.Append(webkitRelativePath());
return true;
}
} // namespace blink
|