]>
git.saurik.com Git - apple/javascriptcore.git/blob - wtf/text/StringOperators.h
e8c218147b4a1dc5f3372c9748cb22cfe54a6aca
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
22 #ifndef StringOperators_h
23 #define StringOperators_h
27 template<typename StringType1
, typename StringType2
>
30 StringAppend(StringType1 string1
, StringType2 string2
)
36 operator String() const
38 RefPtr
<StringImpl
> resultImpl
= tryMakeString(m_string1
, m_string2
);
41 return resultImpl
.release();
44 operator AtomicString() const
46 return operator String();
49 void writeTo(UChar
* destination
)
51 StringTypeAdapter
<StringType1
> adapter1(m_string1
);
52 StringTypeAdapter
<StringType2
> adapter2(m_string2
);
53 adapter1
.writeTo(destination
);
54 adapter2
.writeTo(destination
+ adapter1
.length());
59 StringTypeAdapter
<StringType1
> adapter1(m_string1
);
60 StringTypeAdapter
<StringType2
> adapter2(m_string2
);
61 return adapter1
.length() + adapter2
.length();
65 StringType1 m_string1
;
66 StringType2 m_string2
;
69 template<typename StringType1
, typename StringType2
>
70 class StringTypeAdapter
<StringAppend
<StringType1
, StringType2
> > {
72 StringTypeAdapter
<StringAppend
<StringType1
, StringType2
> >(StringAppend
<StringType1
, StringType2
>& buffer
)
77 unsigned length() { return m_buffer
.length(); }
78 void writeTo(UChar
* destination
) { m_buffer
.writeTo(destination
); }
81 StringAppend
<StringType1
, StringType2
>& m_buffer
;
84 inline StringAppend
<const char*, String
> operator+(const char* string1
, const String
& string2
)
86 return StringAppend
<const char*, String
>(string1
, string2
);
89 inline StringAppend
<const char*, AtomicString
> operator+(const char* string1
, const AtomicString
& string2
)
91 return StringAppend
<const char*, AtomicString
>(string1
, string2
);
95 StringAppend
<String
, T
> operator+(const String
& string1
, T string2
)
97 return StringAppend
<String
, T
>(string1
, string2
);
100 template<typename U
, typename V
, typename W
>
101 StringAppend
<U
, StringAppend
<V
, W
> > operator+(U string1
, const StringAppend
<V
, W
>& string2
)
103 return StringAppend
<U
, StringAppend
<V
, W
> >(string1
, string2
);
108 #endif // StringOperators_h