Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / filesystem / DirectoryReaderSync.cpp
1 /*
2  * Copyright (C) 2010 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
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
13  * distribution.
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.
17  *
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.
29  */
30
31 #include "config.h"
32 #include "modules/filesystem/DirectoryReaderSync.h"
33
34 #include "bindings/core/v8/ExceptionState.h"
35 #include "core/dom/ExceptionCode.h"
36 #include "modules/filesystem/DirectoryEntry.h"
37 #include "modules/filesystem/DirectoryEntrySync.h"
38 #include "modules/filesystem/EntriesCallback.h"
39 #include "modules/filesystem/EntrySync.h"
40 #include "modules/filesystem/ErrorCallback.h"
41 #include "modules/filesystem/FileEntrySync.h"
42
43 namespace blink {
44
45 class DirectoryReaderSync::EntriesCallbackHelper : public EntriesCallback {
46 public:
47     explicit EntriesCallbackHelper(DirectoryReaderSync* reader)
48         : m_reader(reader)
49     {
50     }
51
52     virtual void handleEvent(const EntryHeapVector& entries) OVERRIDE
53     {
54         EntrySyncHeapVector syncEntries;
55         syncEntries.reserveInitialCapacity(entries.size());
56         for (size_t i = 0; i < entries.size(); ++i)
57             syncEntries.uncheckedAppend(EntrySync::create(entries[i].get()));
58         m_reader->addEntries(syncEntries);
59     }
60
61 private:
62     Persistent<DirectoryReaderSync> m_reader;
63 };
64
65 class DirectoryReaderSync::ErrorCallbackHelper : public ErrorCallback {
66 public:
67     explicit ErrorCallbackHelper(DirectoryReaderSync* reader)
68         : m_reader(reader)
69     {
70     }
71
72     virtual void handleEvent(FileError* error) OVERRIDE
73     {
74         m_reader->setError(error->code());
75     }
76
77 private:
78     Persistent<DirectoryReaderSync> m_reader;
79 };
80
81 DirectoryReaderSync::DirectoryReaderSync(DOMFileSystemBase* fileSystem, const String& fullPath)
82     : DirectoryReaderBase(fileSystem, fullPath)
83     , m_callbacksId(0)
84     , m_errorCode(FileError::OK)
85 {
86     ScriptWrappable::init(this);
87 }
88
89 DirectoryReaderSync::~DirectoryReaderSync()
90 {
91 }
92
93 EntrySyncHeapVector DirectoryReaderSync::readEntries(ExceptionState& exceptionState)
94 {
95     if (!m_callbacksId) {
96         m_callbacksId = filesystem()->readDirectory(this, m_fullPath, adoptPtr(new EntriesCallbackHelper(this)), adoptPtr(new ErrorCallbackHelper(this)), DOMFileSystemBase::Synchronous);
97     }
98
99     if (m_errorCode == FileError::OK && m_hasMoreEntries && m_entries.isEmpty())
100         m_fileSystem->waitForAdditionalResult(m_callbacksId);
101
102     if (m_errorCode != FileError::OK) {
103         FileError::throwDOMException(exceptionState, m_errorCode);
104         return EntrySyncHeapVector();
105     }
106
107     EntrySyncHeapVector result;
108     result.swap(m_entries);
109     return result;
110 }
111
112 void DirectoryReaderSync::trace(Visitor* visitor)
113 {
114     visitor->trace(m_entries);
115     DirectoryReaderBase::trace(visitor);
116 }
117
118 } // namespace