Skip to content

Commit

Permalink
WIP: Try to use QJSEngine for phantom context
Browse files Browse the repository at this point in the history
  • Loading branch information
execjosh committed Apr 18, 2013
1 parent 83c25b2 commit 127c832
Show file tree
Hide file tree
Showing 8 changed files with 567 additions and 0 deletions.
61 changes: 61 additions & 0 deletions src/js/console.cpp
@@ -0,0 +1,61 @@
/*
This file is part of the PhantomJS project from Ofi Labs.
Copyright (C) 2013 execjosh, http://execjosh.blogspot.com
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "console.h"

#include <iostream>
#include <QStringList>

namespace JS
{

// public:

Console::Console(QObject *parent)
: QObject(parent)
{
}

Console::~Console()
{
}

// public slots:

void Console::log(const QVariant &val)
{
QStringList strList;
strList << "[CONSOLE.LOG]";
strList << val.toString();
std::cout << qPrintable(strList.join(' ')) << std::endl;
}

};

// vim:ts=4:sw=4:sts=4:et:
54 changes: 54 additions & 0 deletions src/js/console.h
@@ -0,0 +1,54 @@
/*
This file is part of the PhantomJS project from Ofi Labs.
Copyright (C) 2013 execjosh, http://execjosh.blogspot.com
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#ifndef JS_CONSOLE_H
#define JS_CONSOLE_H

#include <QObject>
#include <QVariant>

namespace JS
{
class Console : public QObject
{
Q_OBJECT

public:
explicit Console(QObject *parent = 0);
virtual ~Console();

public slots:
void log(const QVariant &val);
};

};

#endif // JS_CONSOLE_H

// vim:ts=4:sw=4:sts=4:et:
178 changes: 178 additions & 0 deletions src/js/pjsengine.cpp
@@ -0,0 +1,178 @@
/*
This file is part of the PhantomJS project from Ofi Labs.
Copyright (C) 2013 execjosh, http://execjosh.blogspot.com
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "pjsengine.h"

#include <Qt>
#include <QApplication>
#include <QDebug>
#include <iostream>

namespace JS
{

// public:

PJSEngine::PJSEngine(QObject *parent)
: QObject(parent)
, m_initialized(false)
, m_terminated(false)
, m_js((QJSEngine *) NULL)
, m_console((JS::Console *) NULL)
, m_timers()
{
}

PJSEngine::~PJSEngine()
{
qDeleteAll(m_timers);
}

bool PJSEngine::init()
{
// Bail out if already initialized
if (m_initialized) {
return false;
}

if ((QJSEngine *) NULL == m_js) {
m_js = new QJSEngine(this);
}

if ((JS::Console *) NULL == m_console) {
m_console = new JS::Console(this);
QJSValue console = m_js->newQObject(m_console);
m_js->globalObject().setProperty("console", console);
}

QJSValue me = m_js->newQObject(this);

m_js->globalObject().setProperty("_createSingleShotTimer", me.property("createSingleShotTimer"));
m_js->globalObject().setProperty("_createRepeatingTimer", me.property("createRepeatingTimer"));
QJSValue timerFuncs = m_js->evaluate(
"(function () {"
"function timerFunc(timerFactory) {"
"return function (cb, ms) {"
"var t = timerFactory(ms);"
"t.timeout.connect(cb);"
"return t.timerId;"
"};"
"}"
"return {"
" setTimeout: timerFunc(_createSingleShotTimer)"
",setInterval: timerFunc(_createRepeatingTimer)"
"};"
"}())"
);
m_js->globalObject().setProperty("setTimeout", timerFuncs.property("setTimeout"));
m_js->globalObject().setProperty("setInterval", timerFuncs.property("setInterval"));
m_js->globalObject().setProperty("clearTimeout", me.property("clearTimer"));
m_js->globalObject().setProperty("clearInterval", me.property("clearTimer"));

QJSValue phantom = m_js->newObject();
phantom.setProperty("exit", me.property("exit"));
m_js->globalObject().setProperty("phantom", phantom);

m_initialized = true;

return true;
}

void PJSEngine::evaluate(const QString &src, const QString &file)
{
if (!m_initialized) {
return;
}

QJSValue result = m_js->evaluate(src, file);
if (result.isError()) {
qDebug() << "uncaught exception:" << result.toString();
}
}

// public slots:

void PJSEngine::exit(int code)
{
// TODO
std::cerr << "EXIT(" << code << ")" << std::endl;
QApplication::instance()->exit(code);
}

bool PJSEngine::isTerminated() const
{
return m_terminated;
}

QObject *PJSEngine::createSingleShotTimer(int ms)
{
return _createTimer(ms, true);
}

QObject *PJSEngine::createRepeatingTimer(int ms)
{
return _createTimer(ms, false);
}

void PJSEngine::clearTimer(int id)
{
// TODO: how to prevent double kills?
QObject::killTimer(id);
m_timers.remove(id);
}

void PJSEngine::timerEvent(QTimerEvent *e)
{
int id = e->timerId();
JS::TimerContext *tc = m_timers.value(id);
if (-1 == tc->timerId()) {
QObject::killTimer(id);
} else if (tc->isSingleShot()) {
clearTimer(id);
tc->invokeTimeout();
tc->deleteLater();
} else {
tc->invokeTimeout();
}
}

// private:

QObject *PJSEngine::_createTimer(int ms, bool isSingleShot)
{
// TODO: Use Qt::CoarseTimer for long timeouts?
Qt::TimerType timerType = Qt::PreciseTimer;
JS::TimerContext *tc = new JS::TimerContext(QObject::startTimer(ms, timerType), isSingleShot, this);
m_timers.insert(tc->timerId(), tc);
return tc;
}

};

// vim:ts=4:sw=4:sts=4:et:
82 changes: 82 additions & 0 deletions src/js/pjsengine.h
@@ -0,0 +1,82 @@
/*
This file is part of the PhantomJS project from Ofi Labs.
Copyright (C) 2013 execjosh, http://execjosh.blogspot.com
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#ifndef JS_PJSENGINE_H
#define JS_PJSENGINE_H

#include <QObject>
#include <QJSEngine>
#include <QVariant>

#include "console.h"
#include "timercontext.h"

namespace JS
{

class PJSEngine : public QObject
{
Q_OBJECT

public:
explicit PJSEngine(QObject *parent = 0);
virtual ~PJSEngine();

bool init();
void evaluate(const QString &src, const QString &file = "");

signals:

public slots:
void exit(int code = 0);
bool isTerminated() const;

// Timeout stuff
QObject *createSingleShotTimer(int ms);
QObject *createRepeatingTimer(int ms);
void clearTimer(int id);

protected:
void timerEvent(QTimerEvent *e);

private:
QObject *_createTimer(int ms, bool isSingleShot);

bool m_initialized;
bool m_terminated;
QJSEngine *m_js;
JS::Console *m_console;
QMap<int, JS::TimerContext *> m_timers;
};

};

#endif // JS_PJSENGINE_H

// vim:ts=4:sw=4:sts=4:et:

0 comments on commit 127c832

Please sign in to comment.