Merge "[CherryPick] Refactoring: Move the content of HTMLInputElement::subtreeHasChan...
[framework/web/webkit-efl.git] / Source / WebCore / page / PagePopupClient.cpp
1 /*
2  * Copyright (C) 2012 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 "PagePopupClient.h"
33
34 #if ENABLE(PAGE_POPUP)
35
36 #include <wtf/text/StringBuilder.h>
37
38 namespace WebCore {
39
40 #define addLiteral(literal, writer)    writer.addData(literal, sizeof(literal) - 1)
41
42 void PagePopupClient::addJavaScriptString(const String& str, DocumentWriter& writer)
43 {
44     addLiteral("\"", writer);
45     StringBuilder builder;
46     builder.reserveCapacity(str.length());
47     for (unsigned i = 0; i < str.length(); ++i) {
48         if (str[i] == '\\' || str[i] == '"')
49             builder.append('\\');
50         builder.append(str[i]);
51     }
52     addString(builder.toString(), writer);
53     addLiteral("\"", writer);
54 }
55
56 void PagePopupClient::addProperty(const char* name, const String& value, DocumentWriter& writer)
57 {
58     writer.addData(name, strlen(name));
59     addLiteral(": ", writer);
60     addJavaScriptString(value, writer);
61     addLiteral(",\n", writer);
62 }
63
64 void PagePopupClient::addProperty(const char* name, unsigned value, DocumentWriter& writer)
65 {
66     writer.addData(name, strlen(name));
67     addLiteral(": ", writer);
68     addString(String::number(value), writer);
69     addLiteral(",\n", writer);
70 }
71
72 void PagePopupClient::addProperty(const char* name, bool value, DocumentWriter& writer)
73 {
74     writer.addData(name, strlen(name));
75     addLiteral(": ", writer);
76     if (value)
77         addLiteral("true", writer);
78     else
79         addLiteral("false", writer);
80     addLiteral(",\n", writer);
81 }
82
83 void PagePopupClient::addProperty(const char* name, const Vector<String>& values, DocumentWriter& writer)
84 {
85     writer.addData(name, strlen(name));
86     addLiteral(": [", writer);
87     for (unsigned i = 0; i < values.size(); ++i) {
88         if (i)
89             addLiteral(",", writer);
90         addJavaScriptString(values[i], writer);
91     }
92     addLiteral("],\n", writer);
93 }
94
95 } // namespace WebCore
96
97 #endif // ENABLE(PAGE_POPUP)