2 Copyright (C) 2009 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.
22 #include "qscriptengine_p.h"
24 #include "qscriptprogram_p.h"
25 #include "qscriptvalue_p.h"
28 Constructs a default QScriptEnginePrivate object, a new global context will be created.
31 QScriptEnginePrivate::QScriptEnginePrivate(const QScriptEngine
* engine
)
32 : q_ptr(const_cast<QScriptEngine
*>(engine
))
33 , m_context(JSGlobalContextCreate(0))
37 QScriptEnginePrivate::~QScriptEnginePrivate()
39 JSGlobalContextRelease(m_context
);
42 QScriptSyntaxCheckResultPrivate
* QScriptEnginePrivate::checkSyntax(const QString
& program
)
45 JSStringRef source
= QScriptConverter::toString(program
);
46 bool syntaxIsCorrect
= JSCheckScriptSyntax(m_context
, source
, /* url */ 0, /* starting line */ 1, &exception
);
47 JSStringRelease(source
);
48 if (syntaxIsCorrect
) {
49 return new QScriptSyntaxCheckResultPrivate(this);
51 JSValueProtect(m_context
, exception
);
52 return new QScriptSyntaxCheckResultPrivate(this, const_cast<JSObjectRef
>(exception
));
56 Evaluates program and returns the result of the evaluation.
59 QScriptValuePrivate
* QScriptEnginePrivate::evaluate(const QString
& program
, const QString
& fileName
, int lineNumber
)
61 JSStringRef script
= QScriptConverter::toString(program
);
62 JSStringRef file
= QScriptConverter::toString(fileName
);
63 QScriptValuePrivate
* result
= new QScriptValuePrivate(this, evaluate(script
, file
, lineNumber
));
64 JSStringRelease(script
);
65 JSStringRelease(file
);
70 Evaluates program and returns the result of the evaluation.
73 QScriptValuePrivate
* QScriptEnginePrivate::evaluate(const QScriptProgramPrivate
* program
)
75 if (program
->isNull())
76 return new QScriptValuePrivate
;
77 return new QScriptValuePrivate(this, evaluate(program
->program(), program
->file(), program
->line()));
80 QScriptValuePrivate
* QScriptEnginePrivate::globalObject() const
82 JSObjectRef globalObject
= JSContextGetGlobalObject(context());
83 return new QScriptValuePrivate(this, globalObject
, globalObject
);