d5af8efc9e9f2fcb625df766c1eb79611f8be6a4
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / fileapi / FileReader.h
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 #ifndef FileReader_h
32 #define FileReader_h
33
34 #include "core/dom/ActiveDOMObject.h"
35 #include "core/events/EventTarget.h"
36 #include "core/fileapi/FileError.h"
37 #include "core/fileapi/FileReaderLoader.h"
38 #include "core/fileapi/FileReaderLoaderClient.h"
39 #include "platform/heap/Handle.h"
40 #include "wtf/Forward.h"
41 #include "wtf/RefCounted.h"
42 #include "wtf/text/WTFString.h"
43
44 namespace blink {
45
46 class Blob;
47 class ExceptionState;
48 class ExecutionContext;
49
50 class FileReader FINAL : public RefCountedWillBeGarbageCollectedFinalized<FileReader>, public ActiveDOMObject, public FileReaderLoaderClient, public EventTargetWithInlineData {
51     DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCounted<FileReader>);
52     WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(FileReader);
53 public:
54     static PassRefPtrWillBeRawPtr<FileReader> create(ExecutionContext*);
55
56     virtual ~FileReader();
57
58     enum ReadyState {
59         EMPTY = 0,
60         LOADING = 1,
61         DONE = 2
62     };
63
64     void readAsArrayBuffer(Blob*, ExceptionState&);
65     void readAsBinaryString(Blob*, ExceptionState&);
66     void readAsText(Blob*, const String& encoding, ExceptionState&);
67     void readAsText(Blob*, ExceptionState&);
68     void readAsDataURL(Blob*, ExceptionState&);
69     void abort();
70
71     void doAbort();
72
73     ReadyState readyState() const { return m_state; }
74     PassRefPtrWillBeRawPtr<FileError> error() { return m_error; }
75     FileReaderLoader::ReadType readType() const { return m_readType; }
76     PassRefPtr<ArrayBuffer> arrayBufferResult() const;
77     String stringResult();
78
79     // ActiveDOMObject
80     virtual void stop() OVERRIDE;
81     virtual bool hasPendingActivity() const OVERRIDE;
82
83     // EventTarget
84     virtual const AtomicString& interfaceName() const OVERRIDE;
85     virtual ExecutionContext* executionContext() const OVERRIDE { return ActiveDOMObject::executionContext(); }
86
87     // FileReaderLoaderClient
88     virtual void didStartLoading() OVERRIDE;
89     virtual void didReceiveData() OVERRIDE;
90     virtual void didFinishLoading() OVERRIDE;
91     virtual void didFail(FileError::ErrorCode) OVERRIDE;
92
93     DEFINE_ATTRIBUTE_EVENT_LISTENER(loadstart);
94     DEFINE_ATTRIBUTE_EVENT_LISTENER(progress);
95     DEFINE_ATTRIBUTE_EVENT_LISTENER(load);
96     DEFINE_ATTRIBUTE_EVENT_LISTENER(abort);
97     DEFINE_ATTRIBUTE_EVENT_LISTENER(error);
98     DEFINE_ATTRIBUTE_EVENT_LISTENER(loadend);
99
100     virtual void trace(Visitor*) OVERRIDE;
101
102 private:
103     explicit FileReader(ExecutionContext*);
104
105     class ThrottlingController;
106
107     void terminate();
108     void readInternal(Blob*, FileReaderLoader::ReadType, ExceptionState&);
109     void fireEvent(const AtomicString& type);
110
111     void executePendingRead();
112
113     ReadyState m_state;
114
115     // Internal loading state, which could differ from ReadyState as it's
116     // for script-visible state while this one's for internal state.
117     enum LoadingState {
118         LoadingStateNone,
119         LoadingStatePending,
120         LoadingStateLoading,
121         LoadingStateAborted
122     };
123     LoadingState m_loadingState;
124
125     String m_blobType;
126     RefPtr<BlobDataHandle> m_blobDataHandle;
127     FileReaderLoader::ReadType m_readType;
128     String m_encoding;
129
130     OwnPtr<FileReaderLoader> m_loader;
131     RefPtrWillBeMember<FileError> m_error;
132     double m_lastProgressNotificationTimeMS;
133     int m_asyncOperationId;
134 };
135
136 } // namespace blink
137
138 #endif // FileReader_h