qjsengine.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtQml module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QJSENGINE_H
  40. #define QJSENGINE_H
  41. #include <QtCore/qmetatype.h>
  42. #include <QtCore/qvariant.h>
  43. #include <QtCore/qsharedpointer.h>
  44. #include <QtCore/qobject.h>
  45. #include <QtQml/qjsvalue.h>
  46. QT_BEGIN_NAMESPACE
  47. class QV8Engine;
  48. template <typename T>
  49. inline T qjsvalue_cast(const QJSValue &);
  50. class QJSEnginePrivate;
  51. class Q_QML_EXPORT QJSEngine
  52. : public QObject
  53. {
  54. Q_OBJECT
  55. public:
  56. QJSEngine();
  57. explicit QJSEngine(QObject *parent);
  58. virtual ~QJSEngine();
  59. QJSValue globalObject() const;
  60. QJSValue evaluate(const QString &program, const QString &fileName = QString(), int lineNumber = 1);
  61. QJSValue newObject();
  62. QJSValue newArray(uint length = 0);
  63. QJSValue newQObject(QObject *object);
  64. template <typename T>
  65. inline QJSValue toScriptValue(const T &value)
  66. {
  67. return create(qMetaTypeId<T>(), &value);
  68. }
  69. template <typename T>
  70. inline T fromScriptValue(const QJSValue &value)
  71. {
  72. return qjsvalue_cast<T>(value);
  73. }
  74. void collectGarbage();
  75. #if QT_DEPRECATED_SINCE(5, 6)
  76. QT_DEPRECATED void installTranslatorFunctions(const QJSValue &object = QJSValue());
  77. #endif
  78. enum Extension {
  79. TranslationExtension = 0x1,
  80. ConsoleExtension = 0x2,
  81. GarbageCollectionExtension = 0x4,
  82. AllExtensions = 0xffffffff
  83. };
  84. Q_DECLARE_FLAGS(Extensions, Extension)
  85. void installExtensions(Extensions extensions, const QJSValue &object = QJSValue());
  86. QV8Engine *handle() const { return d; }
  87. private:
  88. QJSValue create(int type, const void *ptr);
  89. static bool convertV2(const QJSValue &value, int type, void *ptr);
  90. friend inline bool qjsvalue_cast_helper(const QJSValue &, int, void *);
  91. protected:
  92. QJSEngine(QJSEnginePrivate &dd, QObject *parent = Q_NULLPTR);
  93. private:
  94. QV8Engine *d;
  95. Q_DISABLE_COPY(QJSEngine)
  96. Q_DECLARE_PRIVATE(QJSEngine)
  97. friend class QV8Engine;
  98. };
  99. Q_DECLARE_OPERATORS_FOR_FLAGS(QJSEngine::Extensions)
  100. inline bool qjsvalue_cast_helper(const QJSValue &value, int type, void *ptr)
  101. {
  102. return QJSEngine::convertV2(value, type, ptr);
  103. }
  104. template<typename T>
  105. T qjsvalue_cast(const QJSValue &value)
  106. {
  107. T t;
  108. const int id = qMetaTypeId<T>();
  109. if (qjsvalue_cast_helper(value, id, &t))
  110. return t;
  111. else if (value.isVariant())
  112. return qvariant_cast<T>(value.toVariant());
  113. return T();
  114. }
  115. template <>
  116. inline QVariant qjsvalue_cast<QVariant>(const QJSValue &value)
  117. {
  118. return value.toVariant();
  119. }
  120. Q_QML_EXPORT QJSEngine *qjsEngine(const QObject *);
  121. QT_END_NAMESPACE
  122. #endif // QJSENGINE_H