| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
| 18 * | 18 * |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef FormDataList_h | 21 #ifndef FormDataList_h |
| 22 #define FormDataList_h | 22 #define FormDataList_h |
| 23 | 23 |
| 24 #include "core/fileapi/Blob.h" | 24 #include "core/fileapi/Blob.h" |
| 25 #include "heap/Handle.h" |
| 25 #include "platform/network/FormData.h" | 26 #include "platform/network/FormData.h" |
| 26 #include "wtf/Forward.h" | 27 #include "wtf/Forward.h" |
| 27 #include "wtf/text/CString.h" | 28 #include "wtf/text/CString.h" |
| 28 #include "wtf/text/TextEncoding.h" | 29 #include "wtf/text/TextEncoding.h" |
| 29 | 30 |
| 30 namespace WebCore { | 31 namespace WebCore { |
| 31 | 32 |
| 32 class FormDataList { | 33 class FormDataList { |
| 33 public: | 34 public: |
| 34 class Item { | 35 class Item { |
| 36 ALLOW_ONLY_INLINE_ALLOCATION(); |
| 35 public: | 37 public: |
| 36 Item() { } | 38 Item() { } |
| 37 Item(const WTF::CString& data) : m_data(data) { } | 39 Item(const WTF::CString& data) : m_data(data) { } |
| 38 Item(PassRefPtr<Blob> blob, const String& filename) : m_blob(blob), m_fi
lename(filename) { } | 40 Item(PassRefPtrWillBeRawPtr<Blob> blob, const String& filename) : m_blob
(blob), m_filename(filename) { } |
| 39 | 41 |
| 40 const WTF::CString& data() const { return m_data; } | 42 const WTF::CString& data() const { return m_data; } |
| 41 Blob* blob() const { return m_blob.get(); } | 43 Blob* blob() const { return m_blob.get(); } |
| 42 const String& filename() const { return m_filename; } | 44 const String& filename() const { return m_filename; } |
| 43 | 45 |
| 46 void trace(Visitor*); |
| 47 |
| 44 private: | 48 private: |
| 45 WTF::CString m_data; | 49 WTF::CString m_data; |
| 46 RefPtr<Blob> m_blob; | 50 RefPtrWillBeMember<Blob> m_blob; |
| 47 String m_filename; | 51 String m_filename; |
| 48 }; | 52 }; |
| 49 | 53 |
| 50 FormDataList(const WTF::TextEncoding&); | 54 FormDataList(const WTF::TextEncoding&); |
| 51 | 55 |
| 52 void appendData(const String& key, const String& value) | 56 void appendData(const String& key, const String& value) |
| 53 { | 57 { |
| 54 appendString(key); | 58 appendString(key); |
| 55 appendString(value); | 59 appendString(value); |
| 56 } | 60 } |
| 57 void appendData(const String& key, const CString& value) | 61 void appendData(const String& key, const CString& value) |
| 58 { | 62 { |
| 59 appendString(key); | 63 appendString(key); |
| 60 appendString(value); | 64 appendString(value); |
| 61 } | 65 } |
| 62 void appendData(const String& key, int value) | 66 void appendData(const String& key, int value) |
| 63 { | 67 { |
| 64 appendString(key); | 68 appendString(key); |
| 65 appendString(String::number(value)); | 69 appendString(String::number(value)); |
| 66 } | 70 } |
| 67 void appendBlob(const String& key, PassRefPtr<Blob> blob, const String& file
name = String()) | 71 void appendBlob(const String& key, PassRefPtrWillBeRawPtr<Blob> blob, const
String& filename = String()) |
| 68 { | 72 { |
| 69 appendString(key); | 73 appendString(key); |
| 70 appendBlob(blob, filename); | 74 appendBlob(blob, filename); |
| 71 } | 75 } |
| 72 | 76 |
| 73 const Vector<Item>& items() const { return m_items; } | 77 const WillBeHeapVector<Item>& items() const { return m_items; } |
| 74 const WTF::TextEncoding& encoding() const { return m_encoding; } | 78 const WTF::TextEncoding& encoding() const { return m_encoding; } |
| 75 | 79 |
| 76 PassRefPtr<FormData> createFormData(const WTF::TextEncoding&, FormData::Enco
dingType = FormData::FormURLEncoded); | 80 PassRefPtr<FormData> createFormData(const WTF::TextEncoding&, FormData::Enco
dingType = FormData::FormURLEncoded); |
| 77 PassRefPtr<FormData> createMultiPartFormData(const WTF::TextEncoding&); | 81 PassRefPtr<FormData> createMultiPartFormData(const WTF::TextEncoding&); |
| 78 | 82 |
| 83 void trace(Visitor*); |
| 84 |
| 79 private: | 85 private: |
| 80 void appendKeyValuePairItemsTo(FormData*, const WTF::TextEncoding&, bool isM
ultiPartForm, FormData::EncodingType = FormData::FormURLEncoded); | 86 void appendKeyValuePairItemsTo(FormData*, const WTF::TextEncoding&, bool isM
ultiPartForm, FormData::EncodingType = FormData::FormURLEncoded); |
| 81 | 87 |
| 82 void appendString(const CString&); | 88 void appendString(const CString&); |
| 83 void appendString(const String&); | 89 void appendString(const String&); |
| 84 void appendBlob(PassRefPtr<Blob>, const String& filename); | 90 void appendBlob(PassRefPtrWillBeRawPtr<Blob>, const String& filename); |
| 85 | 91 |
| 86 WTF::TextEncoding m_encoding; | 92 WTF::TextEncoding m_encoding; |
| 87 Vector<Item> m_items; | 93 WillBeHeapVector<Item> m_items; |
| 88 }; | 94 }; |
| 89 | 95 |
| 90 } // namespace WebCore | 96 } // namespace WebCore |
| 91 | 97 |
| 98 // FIXME: oilpan: remove once traceability can be derived/inferred. |
| 99 namespace WTF { |
| 100 template<> |
| 101 struct NeedsTracing<WebCore::FormDataList::Item> { |
| 102 static const bool value = true; |
| 103 }; |
| 104 } |
| 105 |
| 92 #endif // FormDataList_h | 106 #endif // FormDataList_h |
| OLD | NEW |