initial import
[vuplus_webkit] / Source / WebKit / chromium / src / WebImageDecoder.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 "WebImageDecoder.h"
33
34 #include "BMPImageDecoder.h"
35 #include "ICOImageDecoder.h"
36 #include "SharedBuffer.h"
37 #include "WebData.h"
38 #include "WebImage.h"
39 #include "WebSize.h"
40
41 #if WEBKIT_USING_SKIA
42 #include <wtf/OwnPtr.h>
43 #include <wtf/PassOwnPtr.h>
44 #endif
45
46 #include <wtf/PassRefPtr.h>
47
48 using namespace WebCore;
49
50 namespace WebKit {
51
52 void WebImageDecoder::reset()
53 {
54     delete m_private;
55 }
56
57 void WebImageDecoder::init(Type type)
58 {
59     switch (type) {
60     case TypeBMP:
61         m_private = new BMPImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied);
62         break;
63     case TypeICO:
64         m_private = new ICOImageDecoder(ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileApplied);
65         break;
66     }
67 }
68
69 void WebImageDecoder::setData(const WebData& data, bool allDataReceived)
70 {
71     ASSERT(m_private);
72     m_private->setData(PassRefPtr<SharedBuffer>(data).get(), allDataReceived);
73 }
74
75 bool WebImageDecoder::isFailed() const
76 {
77     ASSERT(m_private);
78     return m_private->failed();
79 }
80
81 bool WebImageDecoder::isSizeAvailable() const
82 {
83     ASSERT(m_private);
84     return m_private->isSizeAvailable();
85 }
86
87 WebSize WebImageDecoder::size() const
88 {
89     ASSERT(m_private);
90     return m_private->size();
91 }
92
93 size_t WebImageDecoder::frameCount() const
94 {
95     ASSERT(m_private);
96     return m_private->frameCount();
97 }
98
99 bool WebImageDecoder::isFrameCompleteAtIndex(int index) const
100 {
101     ASSERT(m_private);
102     ImageFrame* const frameBuffer = m_private->frameBufferAtIndex(index);
103     if (!frameBuffer)
104         return false;
105     return (frameBuffer->status() == ImageFrame::FrameComplete);
106 }
107
108 WebImage WebImageDecoder::getFrameAtIndex(int index = 0) const
109 {
110     ASSERT(m_private);
111     ImageFrame* const frameBuffer = m_private->frameBufferAtIndex(index);
112     if (!frameBuffer)
113         return WebImage();
114 #if WEBKIT_USING_SKIA
115     OwnPtr<NativeImageSkia> image = adoptPtr(frameBuffer->asNewNativeImage());
116     return WebImage(image->bitmap());
117 #elif WEBKIT_USING_CG
118     // FIXME: Implement CG side of this.
119     return WebImage(frameBuffer->asNewNativeImage());
120 #endif
121 }
122
123 } // namespace WebKit