summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/cross_operation_delegate.cc
blob: 47a405f3b120b6698cdc57025fa930b297c5e1eb (plain)
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
// Copyright (c) 2013 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 "webkit/fileapi/cross_operation_delegate.h"

#include "base/bind.h"
#include "webkit/blob/shareable_file_reference.h"
#include "webkit/fileapi/file_system_context.h"
#include "webkit/fileapi/file_system_operation_context.h"
#include "webkit/fileapi/local_file_system_operation.h"

namespace fileapi {

CrossOperationDelegate::CrossOperationDelegate(
    LocalFileSystemOperation* original_operation,
    const FileSystemURL& src_root,
    const FileSystemURL& dest_root,
    OperationType operation_type,
    const StatusCallback& callback)
    : RecursiveOperationDelegate(original_operation),
      src_root_(src_root),
      dest_root_(dest_root),
      operation_type_(operation_type),
      callback_(callback),
      src_root_operation_(NULL) {
  same_file_system_ =
      src_root_.origin() == dest_root_.origin() &&
      src_root_.type() == dest_root_.type();
}

CrossOperationDelegate::~CrossOperationDelegate() {
  if (src_root_operation_)
    delete src_root_operation_;
}

void CrossOperationDelegate::Run() {
  // Not supported; this should never be called.
  NOTREACHED();
}

void CrossOperationDelegate::RunRecursively() {
  // Perform light-weight checks first.

  // It is an error to try to copy/move an entry into its child.
  if (same_file_system_ && src_root_.path().IsParent(dest_root_.path())) {
    callback_.Run(base::PLATFORM_FILE_ERROR_INVALID_OPERATION);
    return;
  }

  // It is an error to copy/move an entry into the same path.
  if (same_file_system_ && src_root_.path() == dest_root_.path()) {
    callback_.Run(base::PLATFORM_FILE_ERROR_EXISTS);
    return;
  }

  // Initialize the src_root_operation_ for the src root URL.
  DCHECK(!src_root_operation_);
  if (!same_file_system_) {
    base::PlatformFileError error = base::PLATFORM_FILE_OK;
    FileSystemOperation* operation = file_system_context()->
        CreateFileSystemOperation(src_root_, &error);
    if (error != base::PLATFORM_FILE_OK) {
      DCHECK(!operation);
      callback_.Run(error);
      return;
    }
    src_root_operation_ = operation->AsLocalFileSystemOperation();
    DCHECK(src_root_operation_);
  }

  // First try to copy/move it as a file.
  CopyOrMoveFile(src_root_, dest_root_,
                 base::Bind(&CrossOperationDelegate::DidTryCopyOrMoveFile,
                            AsWeakPtr()));
}

void CrossOperationDelegate::ProcessFile(const FileSystemURL& src_url,
                                         const StatusCallback& callback) {
  CopyOrMoveFile(src_url, CreateDestURL(src_url), callback);
}

void CrossOperationDelegate::ProcessDirectory(const FileSystemURL& src_url,
                                              const StatusCallback& callback) {
  FileSystemURL dest_url = CreateDestURL(src_url);
  LocalFileSystemOperation* dest_operation = NewDestOperation(dest_url);
  if (!dest_operation) {
    return;
  }

  // If operation_type == Move we may need to record directories and
  // restore directory timestamps in the end, though it may have
  // negative performance impact.
  // See http://crbug.com/171284 for more details.
  dest_operation->CreateDirectory(
      dest_url, false /* exclusive */, false /* recursive */, callback);
}

void CrossOperationDelegate::DidTryCopyOrMoveFile(
    base::PlatformFileError error) {
  if (error == base::PLATFORM_FILE_OK ||
      error != base::PLATFORM_FILE_ERROR_NOT_A_FILE) {
    callback_.Run(error);
    return;
  }

  // The src_root_ looks to be a directory.
  // Try removing the dest_root_ to see if it exists and/or it is an
  // empty directory.
  LocalFileSystemOperation* dest_operation = NewDestOperation(dest_root_);
  if (!dest_operation)
    return;
  dest_operation->RemoveDirectory(
      dest_root_, base::Bind(&CrossOperationDelegate::DidTryRemoveDestRoot,
                             AsWeakPtr()));
}

void CrossOperationDelegate::DidTryRemoveDestRoot(
    base::PlatformFileError error) {
  if (error == base::PLATFORM_FILE_ERROR_NOT_A_DIRECTORY) {
    callback_.Run(base::PLATFORM_FILE_ERROR_INVALID_OPERATION);
    return;
  }
  if (error != base::PLATFORM_FILE_OK &&
      error != base::PLATFORM_FILE_ERROR_NOT_FOUND) {
    callback_.Run(error);
    return;
  }

  // Start to process the source directory recursively.
  // TODO(kinuko): This could be too expensive for same_file_system_==true
  // and operation==MOVE case, probably we can just rename the root directory.
  // http://crbug.com/172187
  StartRecursiveOperation(
      src_root_, base::Bind(&CrossOperationDelegate::DidFinishCopy,
                            AsWeakPtr(), src_root_, callback_));
}

void CrossOperationDelegate::CopyOrMoveFile(
    const FileSystemURL& src,
    const FileSystemURL& dest,
    const StatusCallback& callback) {
  LocalFileSystemOperation* src_operation = NewSourceOperation(src);
  if (!src_operation)
    return;

  // Same filesystem case.
  if (same_file_system_) {
    if (operation_type_ == OPERATION_MOVE)
      src_operation->MoveFileLocal(src, dest, callback);
    else
      src_operation->CopyFileLocal(src, dest, callback);
    return;
  }

  // Cross filesystem case.
  // Perform CreateSnapshotFile, CopyInForeignFile and then calls
  // copy_callback which removes the source file if operation_type == MOVE.
  StatusCallback copy_callback =
      base::Bind(&CrossOperationDelegate::DidFinishCopy, AsWeakPtr(),
                 src, callback);
  src_operation->CreateSnapshotFile(
      src, base::Bind(&CrossOperationDelegate::DidCreateSnapshot, AsWeakPtr(),
                      dest, copy_callback));
}

void CrossOperationDelegate::DidCreateSnapshot(
    const FileSystemURL& dest,
    const StatusCallback& callback,
    base::PlatformFileError error,
    const base::PlatformFileInfo& file_info,
    const base::FilePath& platform_path,
    const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) {
  if (error != base::PLATFORM_FILE_OK) {
    callback.Run(error);
    return;
  }
  current_file_ref_ = file_ref;

  // For now we assume CreateSnapshotFile always return a valid local file path.
  // TODO(kinuko): Otherwise create a FileStreamReader to perform a copy/move.
  DCHECK(!platform_path.empty());

  LocalFileSystemOperation* dest_operation = NewDestOperation(dest);
  if (!dest_operation)
    return;
  dest_operation->CopyInForeignFile(platform_path, dest, callback);
}

void CrossOperationDelegate::DidFinishCopy(
    const FileSystemURL& src,
    const StatusCallback& callback,
    base::PlatformFileError error) {
  if (error != base::PLATFORM_FILE_OK ||
      operation_type_ == OPERATION_COPY) {
    callback.Run(error);
    return;
  }

  DCHECK_EQ(OPERATION_MOVE, operation_type_);

  // Remove the source for finalizing move operation.
  LocalFileSystemOperation* src_operation = NewSourceOperation(src);
  if (!src_operation)
    return;
  src_operation->Remove(
      src, true /* recursive */,
      base::Bind(&CrossOperationDelegate::DidRemoveSourceForMove,
                 AsWeakPtr(), callback));
}

void CrossOperationDelegate::DidRemoveSourceForMove(
    const StatusCallback& callback,
    base::PlatformFileError error) {
  if (error == base::PLATFORM_FILE_ERROR_NOT_FOUND)
    error = base::PLATFORM_FILE_OK;
  callback.Run(error);
}

FileSystemURL CrossOperationDelegate::CreateDestURL(
    const FileSystemURL& src_url) const {
  DCHECK_EQ(src_root_.type(), src_url.type());
  DCHECK_EQ(src_root_.origin(), src_url.origin());

  base::FilePath path = dest_root_.path();
  src_root_.path().AppendRelativePath(src_url.path(), &path);
  return dest_root_.WithPath(path);
}

LocalFileSystemOperation* CrossOperationDelegate::NewDestOperation(
    const FileSystemURL& url) {
  base::PlatformFileError error = base::PLATFORM_FILE_OK;
  LocalFileSystemOperation* operation =
      RecursiveOperationDelegate::NewOperation(url, &error);
  if (!operation) {
    DCHECK_NE(base::PLATFORM_FILE_OK, error);
    callback_.Run(error);
    return NULL;
  }
  return operation;
}

LocalFileSystemOperation* CrossOperationDelegate::NewSourceOperation(
    const FileSystemURL& url) {
  if (same_file_system_)
    return NewDestOperation(url);

  base::PlatformFileError error = base::PLATFORM_FILE_OK;
  FileSystemOperation* operation = file_system_context()->
      CreateFileSystemOperation(url, &error);
  if (!operation) {
    DCHECK_NE(base::PLATFORM_FILE_OK, error);
    callback_.Run(error);
    return NULL;
  }
  LocalFileSystemOperation* local_operation =
      operation->AsLocalFileSystemOperation();
  DCHECK(local_operation);
  DCHECK(src_root_operation_);

  // Let the new operation inherit from the root operation.
  local_operation->set_overriding_operation_context(
      src_root_operation_->operation_context());
  return local_operation;
}

}  // namespace fileapi