]>
git.saurik.com Git - apple/javascriptcore.git/blob - qt/api/qscriptstring_p.h
d4fc88e3e6b195d0c6950709b37504af5b66abf0
2 Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
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
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifndef qscriptstring_p_h
21 #define qscriptstring_p_h
23 #include "qscriptconverter_p.h"
24 #include "qscriptstring.h"
25 #include <JavaScriptCore/JavaScript.h>
26 #include <QtCore/qnumeric.h>
27 #include <QtCore/qshareddata.h>
29 class QScriptStringPrivate
: public QSharedData
{
31 inline QScriptStringPrivate();
32 inline QScriptStringPrivate(const QString
& qtstring
);
33 inline ~QScriptStringPrivate();
35 static inline QScriptString
get(QScriptStringPrivate
* d
);
36 static inline QScriptStringPtr
get(const QScriptString
& p
);
38 inline bool isValid() const;
40 inline bool operator==(const QScriptStringPrivate
& other
) const;
41 inline bool operator!=(const QScriptStringPrivate
& other
) const;
43 inline quint32
toArrayIndex(bool* ok
= 0) const;
45 inline QString
toString() const;
47 inline quint64
id() const;
54 QScriptStringPrivate::QScriptStringPrivate()
58 QScriptStringPrivate::QScriptStringPrivate(const QString
& qtstring
)
59 : m_string(QScriptConverter::toString(qtstring
))
62 QScriptStringPrivate::~QScriptStringPrivate()
65 JSStringRelease(m_string
);
68 QScriptString
QScriptStringPrivate::get(QScriptStringPrivate
* d
)
71 return QScriptString(d
);
74 QScriptStringPtr
QScriptStringPrivate::get(const QScriptString
& p
)
79 bool QScriptStringPrivate::isValid() const
84 bool QScriptStringPrivate::operator==(const QScriptStringPrivate
& other
) const
86 return isValid() && other
.isValid() && JSStringIsEqual(m_string
, other
.m_string
);
89 bool QScriptStringPrivate::operator!=(const QScriptStringPrivate
& other
) const
91 return isValid() && other
.isValid() && !JSStringIsEqual(m_string
, other
.m_string
);
94 quint32
QScriptStringPrivate::toArrayIndex(bool* ok
) const
96 quint32 idx
= QScriptConverter::toArrayIndex(m_string
);
98 *ok
= (idx
!= 0xffffffff);
102 QString
QScriptStringPrivate::toString() const
104 return QScriptConverter::toString(m_string
);
107 quint64
QScriptStringPrivate::id() const
109 return reinterpret_cast<quint32
>(m_string
);
112 #endif // qscriptstring_p_h