2 * Copyright (C) 2010 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #include "modules/filesystem/FileWriterSync.h"
35 #include "bindings/core/v8/ExceptionState.h"
36 #include "core/dom/ExceptionCode.h"
37 #include "core/fileapi/Blob.h"
38 #include "public/platform/WebFileWriter.h"
39 #include "public/platform/WebURL.h"
43 void FileWriterSync::write(Blob
* data
, ExceptionState
& exceptionState
)
48 exceptionState
.throwDOMException(TypeMismatchError
, FileError::typeMismatchErrorMessage
);
53 writer()->write(position(), data
->uuid());
56 FileError::throwDOMException(exceptionState
, m_error
);
59 setPosition(position() + data
->size());
60 if (position() > length())
61 setLength(position());
64 void FileWriterSync::seek(long long position
, ExceptionState
& exceptionState
)
68 seekInternal(position
);
71 void FileWriterSync::truncate(long long offset
, ExceptionState
& exceptionState
)
76 exceptionState
.throwDOMException(InvalidStateError
, FileError::invalidStateErrorMessage
);
80 writer()->truncate(offset
);
83 FileError::throwDOMException(exceptionState
, m_error
);
86 if (offset
< position())
91 void FileWriterSync::didWrite(long long bytes
, bool complete
)
93 ASSERT(m_error
== FileError::OK
);
96 m_complete
= complete
;
98 ASSERT_UNUSED(complete
, complete
);
102 void FileWriterSync::didTruncate()
104 ASSERT(m_error
== FileError::OK
);
111 void FileWriterSync::didFail(WebFileError error
)
113 ASSERT(m_error
== FileError::OK
);
114 m_error
= static_cast<FileError::ErrorCode
>(error
);
121 FileWriterSync::FileWriterSync()
122 : m_error(FileError::OK
)
129 void FileWriterSync::prepareForWrite()
132 m_error
= FileError::OK
;
138 FileWriterSync::~FileWriterSync()
142 DEFINE_TRACE(FileWriterSync
)
144 FileWriterBase::trace(visitor
);