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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
|
// 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.
#include "base/bind.h"
#include "base/memory/weak_ptr.h"
#include "base/message_loop.h"
#include "webkit/chromeos/fileapi/memory_file_util.h"
namespace {
const int kDefaultReadDirectoryBufferSize = 100;
} // namespace
namespace fileapi {
// In-memory implementation of AsyncFileStream.
class MemoryFileUtilAsyncFileStream : public AsyncFileStream {
public:
// |file_entry| is owned by MemoryFileUtil.
MemoryFileUtilAsyncFileStream(MemoryFileUtil::FileEntry* file_entry,
int flags)
: file_entry_(file_entry),
flags_(flags),
offset_(0),
weak_ptr_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) {
}
// AsyncFileStream override.
virtual void Read(char* buffer,
int64 length,
const ReadWriteCallback& callback) OVERRIDE {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtilAsyncFileStream::DoRead,
weak_ptr_factory_.GetWeakPtr(),
buffer, length, callback));
}
// AsyncFileStream override.
virtual void Write(const char* buffer,
int64 length,
const ReadWriteCallback& callback) OVERRIDE {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtilAsyncFileStream::DoWrite,
weak_ptr_factory_.GetWeakPtr(),
buffer, length, callback));
}
// AsyncFileStream override.
virtual void Seek(int64 offset,
const SeekCallback& callback) OVERRIDE {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtilAsyncFileStream::DoSeek,
weak_ptr_factory_.GetWeakPtr(),
offset, callback));
}
private:
// Callback used for Read().
void DoRead(char* buffer,
int64 length,
const ReadWriteCallback& callback) {
if ((flags_ & base::PLATFORM_FILE_READ) == 0) {
callback.Run(base::PLATFORM_FILE_ERROR_INVALID_OPERATION, 0);
return;
}
// Shorten the length so the read does not overrun.
length = std::min(length, file_size() - offset_);
const std::string& contents = file_entry_->contents;
std::copy(contents.begin() + offset_,
contents.begin() + offset_ + length,
buffer);
offset_ += length;
callback.Run(base::PLATFORM_FILE_OK, length);
}
// Callback used for Write().
void DoWrite(const char* buffer,
int64 length,
const ReadWriteCallback& callback) {
if ((flags_ & base::PLATFORM_FILE_WRITE) == 0) {
callback.Run(base::PLATFORM_FILE_ERROR_INVALID_OPERATION, 0);
return;
}
// Extend the contents if needed.
std::string* contents = &file_entry_->contents;
if (offset_ + length > file_size())
contents->resize(offset_ + length, 0); // Fill with 0.
std::copy(buffer, buffer + length,
contents->begin() + offset_);
file_entry_->last_modified = base::Time::Now();
offset_ += length;
callback.Run(base::PLATFORM_FILE_OK, length);
}
// Callback used for Seek().
void DoSeek(int64 offset,
const SeekCallback& callback) {
if (offset > file_size()) {
// Unlike lseek(2), we don't allow an offset larger than the file
// size for this file implementation.
callback.Run(base::PLATFORM_FILE_ERROR_INVALID_OPERATION);
return;
}
offset_ = offset;
callback.Run(base::PLATFORM_FILE_OK);
}
// Returns the file size as int64.
int64 file_size() const {
return static_cast<int64>(file_entry_->contents.size());
}
MemoryFileUtil::FileEntry* file_entry_;
const int flags_;
int64 offset_;
base::WeakPtrFactory<MemoryFileUtilAsyncFileStream> weak_ptr_factory_;
};
MemoryFileUtil::FileEntry::FileEntry()
: is_directory(false) {
}
MemoryFileUtil::FileEntry::~FileEntry() {
}
MemoryFileUtil::MemoryFileUtil(const base::FilePath& root_path)
: read_directory_buffer_size_(kDefaultReadDirectoryBufferSize) {
FileEntry root;
root.is_directory = true;
root.last_modified = base::Time::Now();
files_[root_path] = root;
}
MemoryFileUtil::~MemoryFileUtil() {
}
// Depending on the flags value the flow of file opening will be one of
// the following:
//
// PLATFORM_FILE_OPEN:
// - GetFileInfo
// - DidGetFileInfoForOpen
// - OpenVerifiedFile
//
// PLATFORM_FILE_CREATE:
// - Create
// - DidCreateOrTruncateForOpen
// - OpenVerifiedFile
//
// PLATFORM_FILE_OPEN_ALWAYS:
// - GetFileInfo
// - DidGetFileInfoForOpen
// - OpenVerifiedFile OR Create
// DidCreateOrTruncateForOpen
// OpenVerifiedFile
//
// PLATFORM_FILE_CREATE_ALWAYS:
// - Truncate
// - OpenTruncatedFileOrCreate
// - OpenVerifiedFile OR Create
// DidCreateOrTruncateForOpen
// OpenVerifiedFile
//
// PLATFORM_FILE_OPEN_TRUNCATED:
// - Truncate
// - DidCreateOrTruncateForOpen
// - OpenVerifiedFile
//
void MemoryFileUtil::Open(
const base::FilePath& file_path,
int flags,
const OpenCallback& callback) {
int create_flag = flags & (base::PLATFORM_FILE_OPEN |
base::PLATFORM_FILE_CREATE |
base::PLATFORM_FILE_OPEN_ALWAYS |
base::PLATFORM_FILE_CREATE_ALWAYS |
base::PLATFORM_FILE_OPEN_TRUNCATED);
switch (create_flag) {
case base::PLATFORM_FILE_OPEN:
case base::PLATFORM_FILE_OPEN_ALWAYS:
GetFileInfo(
file_path,
base::Bind(&MemoryFileUtil::DidGetFileInfoForOpen,
base::Unretained(this), file_path, flags, callback));
break;
case base::PLATFORM_FILE_CREATE:
Create(
file_path,
base::Bind(&MemoryFileUtil::DidCreateOrTruncateForOpen,
base::Unretained(this), file_path, flags, 0, callback));
break;
case base::PLATFORM_FILE_CREATE_ALWAYS:
Truncate(
file_path,
0,
base::Bind(&MemoryFileUtil::OpenTruncatedFileOrCreate,
base::Unretained(this), file_path, flags, callback));
break;
case base::PLATFORM_FILE_OPEN_TRUNCATED:
Truncate(
file_path,
0,
base::Bind(&MemoryFileUtil::DidCreateOrTruncateForOpen,
base::Unretained(this), file_path, flags, 0, callback));
break;
default:
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(callback,
base::PLATFORM_FILE_ERROR_INVALID_OPERATION,
static_cast<AsyncFileStream*>(NULL)));
}
}
void MemoryFileUtil::GetFileInfo(
const base::FilePath& file_path,
const GetFileInfoCallback& callback) {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtil::DoGetFileInfo, base::Unretained(this),
file_path.StripTrailingSeparators(), callback));
}
void MemoryFileUtil::Create(
const base::FilePath& file_path,
const StatusCallback& callback) {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtil::DoCreate, base::Unretained(this),
file_path.StripTrailingSeparators(), false, callback));
}
void MemoryFileUtil::Truncate(
const base::FilePath& file_path,
int64 length,
const StatusCallback& callback) {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtil::DoTruncate, base::Unretained(this),
file_path.StripTrailingSeparators(), length, callback));
}
void MemoryFileUtil::Touch(
const base::FilePath& file_path,
const base::Time& last_access_time,
const base::Time& last_modified_time,
const StatusCallback& callback) {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtil::DoTouch, base::Unretained(this),
file_path.StripTrailingSeparators(),
last_modified_time, callback));
}
void MemoryFileUtil::Remove(
const base::FilePath& file_path,
bool recursive,
const StatusCallback& callback) {
if (recursive) {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtil::DoRemoveRecursive,
base::Unretained(this), file_path.StripTrailingSeparators(),
callback));
} else {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtil::DoRemoveSingleFile,
base::Unretained(this), file_path.StripTrailingSeparators(),
callback));
}
}
void MemoryFileUtil::CreateDirectory(
const base::FilePath& dir_path,
const StatusCallback& callback) {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtil::DoCreate,
base::Unretained(this), dir_path.StripTrailingSeparators(),
true, callback));
}
void MemoryFileUtil::ReadDirectory(
const base::FilePath& dir_path,
const ReadDirectoryCallback& callback) {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtil::DoReadDirectory,
base::Unretained(this), dir_path.StripTrailingSeparators(),
base::FilePath(), callback));
}
void MemoryFileUtil::DoGetFileInfo(const base::FilePath& file_path,
const GetFileInfoCallback& callback) {
base::PlatformFileInfo file_info;
FileIterator file_it = files_.find(file_path);
if (file_it == files_.end()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND, file_info);
return;
}
const FileEntry& file_entry = file_it->second;
file_info.size = file_entry.contents.size();
file_info.is_directory = file_entry.is_directory;
file_info.is_symbolic_link = false;
// In this file system implementation we store only one datetime. Many
// popular file systems do the same.
file_info.last_modified = file_entry.last_modified;
file_info.last_accessed = file_entry.last_modified;
file_info.creation_time = file_entry.last_modified;
callback.Run(base::PLATFORM_FILE_OK, file_info);
}
void MemoryFileUtil::DoCreate(
const base::FilePath& file_path,
bool is_directory,
const StatusCallback& callback) {
if (FileExists(file_path)) {
callback.Run(base::PLATFORM_FILE_ERROR_EXISTS);
return;
}
if (!IsDirectory(file_path.DirName())) {
callback.Run(base::PLATFORM_FILE_ERROR_FAILED);
return;
}
FileEntry file;
file.is_directory = is_directory;
file.last_modified = base::Time::Now();
files_[file_path] = file;
callback.Run(base::PLATFORM_FILE_OK);
}
void MemoryFileUtil::DoTruncate(
const base::FilePath& file_path,
int64 length,
const StatusCallback& callback) {
FileIterator file_it = files_.find(file_path);
if (file_it == files_.end()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
FileEntry& file = file_it->second;
// Fill the extended part with 0 if |length| is larger than the original
// contents size.
file.contents.resize(length, 0);
callback.Run(base::PLATFORM_FILE_OK);
}
void MemoryFileUtil::DoTouch(
const base::FilePath& file_path,
const base::Time& last_modified_time,
const StatusCallback& callback) {
FileIterator file_it = files_.find(file_path);
if (file_it == files_.end()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
FileEntry& file = file_it->second;
file.last_modified = last_modified_time;
callback.Run(base::PLATFORM_FILE_OK);
}
void MemoryFileUtil::DoRemoveSingleFile(
const base::FilePath& file_path,
const StatusCallback& callback) {
FileIterator file_it = files_.find(file_path);
if (file_it == files_.end()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
FileEntry& file = file_it->second;
if (file.is_directory) {
// Check if the directory is empty. This can be done by checking if
// the next file is present under the directory. Note that |files_| is
// a map hence the file names are sorted by names.
FileIterator tmp_it = file_it;
++tmp_it;
if (tmp_it != files_.end() && file_path.IsParent(tmp_it->first)) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_A_FILE);
return;
}
}
files_.erase(file_it);
callback.Run(base::PLATFORM_FILE_OK);
}
void MemoryFileUtil::DoRemoveRecursive(
const base::FilePath& file_path,
const StatusCallback& callback) {
FileIterator file_it = files_.find(file_path);
if (file_it == files_.end()) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND);
return;
}
FileEntry& file = file_it->second;
if (!file.is_directory) {
files_.erase(file_it);
callback.Run(base::PLATFORM_FILE_OK);
return;
}
// Remove the directory itself.
files_.erase(file_it++);
// Remove files under the directory.
while (file_it != files_.end()) {
if (file_path.IsParent(file_it->first)) {
files_.erase(file_it++);
} else {
break;
}
}
callback.Run(base::PLATFORM_FILE_OK);
}
void MemoryFileUtil::DoReadDirectory(
const base::FilePath& dir_path,
const base::FilePath& in_from,
const ReadDirectoryCallback& callback) {
base::FilePath from = in_from;
read_directory_buffer_.clear();
if (!FileExists(dir_path)) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_FOUND,
read_directory_buffer_, true);
return;
}
if (!IsDirectory(dir_path)) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_A_DIRECTORY,
read_directory_buffer_, true);
return;
}
if (from.empty())
from = dir_path;
bool completed = true;
// Here we iterate over all paths in files_ starting with the prefix |from|.
// It is not very efficient in case of a deep tree with many files in
// subdirectories. If ever we'll need efficiency from this implementation of
// FS, this should be changed.
for (ConstFileIterator it = files_.lower_bound(from);
it != files_.end();
++it) {
if (dir_path == it->first) // Skip the directory itself.
continue;
if (!dir_path.IsParent(it->first)) // Not in the directory.
break;
if (it->first.DirName() != dir_path) // a file in subdirectory
continue;
if (read_directory_buffer_.size() == read_directory_buffer_size_) {
from = it->first;
completed = false;
break;
}
const FileEntry& file = it->second;
DirectoryEntry entry;
entry.name = it->first.BaseName().value();
entry.is_directory = file.is_directory;
entry.size = file.contents.size();
entry.last_modified_time = file.last_modified;
read_directory_buffer_.push_back(entry);
}
callback.Run(base::PLATFORM_FILE_OK, read_directory_buffer_, completed);
if (!completed) {
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&MemoryFileUtil::DoReadDirectory,
base::Unretained(this), dir_path,
from, callback));
}
}
void MemoryFileUtil::OpenVerifiedFile(
const base::FilePath& file_path,
int flags,
const OpenCallback& callback) {
FileIterator file_it = files_.find(file_path);
// The existence of the file is guranteed here.
DCHECK(file_it != files_.end());
FileEntry* file_entry = &file_it->second;
callback.Run(base::PLATFORM_FILE_OK,
new MemoryFileUtilAsyncFileStream(file_entry, flags));
}
void MemoryFileUtil::DidGetFileInfoForOpen(
const base::FilePath& file_path,
int flags,
const OpenCallback& callback,
PlatformFileError get_info_result,
const base::PlatformFileInfo& file_info) {
if (get_info_result == base::PLATFORM_FILE_OK && file_info.is_directory) {
callback.Run(base::PLATFORM_FILE_ERROR_NOT_A_FILE, NULL);
return;
}
if (get_info_result == base::PLATFORM_FILE_OK) {
OpenVerifiedFile(file_path, flags, callback);
return;
}
if (get_info_result == base::PLATFORM_FILE_ERROR_NOT_FOUND &&
flags & base::PLATFORM_FILE_CREATE_ALWAYS) {
Create(file_path,
base::Bind(&MemoryFileUtil::DidCreateOrTruncateForOpen,
base::Unretained(this), file_path, flags, 0, callback));
return;
}
callback.Run(get_info_result, NULL);
}
void MemoryFileUtil::OpenTruncatedFileOrCreate(
const base::FilePath& file_path,
int flags,
const OpenCallback& callback,
PlatformFileError result) {
if (result == base::PLATFORM_FILE_OK) {
OpenVerifiedFile(file_path, flags, callback);
return;
}
if (result == base::PLATFORM_FILE_ERROR_NOT_FOUND) {
Create(
file_path,
base::Bind(&MemoryFileUtil::DidCreateOrTruncateForOpen,
base::Unretained(this), file_path, flags, 0, callback));
return;
}
callback.Run(result, NULL);
}
void MemoryFileUtil::DidCreateOrTruncateForOpen(
const base::FilePath& file_path,
int flags,
int64 size,
const OpenCallback& callback,
PlatformFileError result) {
if (result != base::PLATFORM_FILE_OK) {
callback.Run(result, NULL);
return;
}
OpenVerifiedFile(file_path, flags, callback);
}
} // namespace fileapi
|