initial import
[vuplus_webkit] / Source / WebKit2 / Shared / WebData.h
1 /*
2  * Copyright (C) 2010 Apple 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
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #ifndef WebData_h
27 #define WebData_h
28
29 #include "APIObject.h"
30 #include "DataReference.h"
31 #include <wtf/Forward.h>
32 #include <wtf/Vector.h>
33
34 namespace WebKit {
35
36 // WebData - A data buffer type suitable for vending to an API.
37
38 class WebData : public APIObject {
39 public:
40     static const Type APIType = TypeData;
41
42     typedef void (*FreeDataFunction)(unsigned char*, const void* context);
43
44     static PassRefPtr<WebData> createWithoutCopying(const unsigned char* bytes, size_t size, FreeDataFunction freeDataFunction, const void* context)
45     {
46         return adoptRef(new WebData(bytes, size, freeDataFunction, context));
47     }
48
49     static PassRefPtr<WebData> create(const unsigned char* bytes, size_t size)
50     {
51         unsigned char *copiedBytes = 0;
52
53         if (size) {
54             copiedBytes = static_cast<unsigned char*>(fastMalloc(size));
55             memcpy(copiedBytes, bytes, size);
56         }
57
58         return createWithoutCopying(copiedBytes, size, fastFreeBytes, 0);
59     }
60     
61     static PassRefPtr<WebData> create(const Vector<unsigned char>& buffer)
62     {
63         return create(buffer.data(), buffer.size());
64     }
65
66     ~WebData()
67     {
68         m_freeDataFunction(const_cast<unsigned char*>(m_bytes), m_context);
69     }
70
71     const unsigned char* bytes() const { return m_bytes; }
72     size_t size() const { return m_size; }
73
74     CoreIPC::DataReference dataReference() const { return CoreIPC::DataReference(m_bytes, m_size); }
75
76 private:
77     WebData(const unsigned char* bytes, size_t size, FreeDataFunction freeDataFunction, const void* context)
78         : m_bytes(bytes)
79         , m_size(size)
80         , m_freeDataFunction(freeDataFunction)
81         , m_context(context)
82     {
83     }
84
85     static void fastFreeBytes(unsigned char* bytes, const void*)
86     {
87         if (bytes)
88             fastFree(static_cast<void*>(bytes));
89     }
90
91     virtual Type type() const { return APIType; }
92
93     const unsigned char* m_bytes;
94     size_t m_size;
95
96     FreeDataFunction m_freeDataFunction;
97     const void* m_context;
98 };
99
100 } // namespace WebKit
101
102 #endif // WebData_h