phantomjs/src/phantom.cpp

291 lines
8.0 KiB
C++
Raw Normal View History

2011-04-09 21:34:04 +04:00
/*
This file is part of the PhantomJS project from Ofi Labs.
Copyright (C) 2011 Ariya Hidayat <ariya.hidayat@gmail.com>
Copyright (C) 2011 Ivan De Marino <ivan.de.marino@gmail.com>
2011-04-09 21:34:04 +04:00
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 "phantom.h"
#include <QtGui>
#include <QtWebKit>
#include <QDir>
#include <QFileInfo>
#include <QFile>
2010-12-27 07:04:53 +03:00
#include "consts.h"
2011-08-21 11:47:34 +04:00
#include "terminal.h"
#include "utils.h"
#include "webpage.h"
#include "webserver.h"
// public:
2010-12-27 07:04:53 +03:00
Phantom::Phantom(QObject *parent)
: QObject(parent)
, m_terminated(false)
2010-12-27 07:04:53 +03:00
, m_returnValue(0)
, m_filesystem(0)
2010-12-27 07:04:53 +03:00
{
// second argument: script name
QStringList args = QApplication::arguments();
2011-02-13 22:38:09 +03:00
// Skip the first argument, i.e. the application executable (phantomjs).
args.removeFirst();
m_config.init(&args);
if (m_config.versionFlag()) {
m_terminated = true;
Terminal::instance()->cout(QString("%1 (development)").arg(PHANTOMJS_VERSION_STRING));
return;
}
if (!m_config.unknownOption().isEmpty()) {
Terminal::instance()->cerr(m_config.unknownOption());
m_terminated = true;
return;
}
m_page = new WebPage(this, &m_config);
m_pages.append(m_page);
if (m_config.scriptFile().isEmpty()) {
Utils::showUsage();
return;
}
if (m_config.proxyHost().isEmpty()) {
QNetworkProxyFactory::setUseSystemConfiguration(true);
} else {
QString proxyType = m_config.proxyType();
QNetworkProxy::ProxyType networkProxyType = QNetworkProxy::HttpProxy;
if (proxyType == "socks5") {
networkProxyType = QNetworkProxy::Socks5Proxy;
}
QNetworkProxy proxy(networkProxyType, m_config.proxyHost(), m_config.proxyPort());
QNetworkProxy::setApplicationProxy(proxy);
}
// Set output encoding
Terminal::instance()->setEncoding(m_config.outputEncoding());
// Set script file encoding
m_scriptFileEnc.setEncoding(m_config.scriptEncoding());
connect(m_page, SIGNAL(javaScriptConsoleMessageSent(QString, int, QString)),
SLOT(printConsoleMessage(QString, int, QString)));
connect(m_page, SIGNAL(initialized()),
SLOT(onInitialized()));
2011-08-26 22:02:59 +04:00
m_defaultPageSettings[PAGE_SETTINGS_LOAD_IMAGES] = QVariant::fromValue(m_config.autoLoadImages());
m_defaultPageSettings[PAGE_SETTINGS_LOAD_PLUGINS] = QVariant::fromValue(m_config.pluginsEnabled());
m_defaultPageSettings[PAGE_SETTINGS_JS_ENABLED] = QVariant::fromValue(true);
m_defaultPageSettings[PAGE_SETTINGS_XSS_AUDITING] = QVariant::fromValue(false);
m_defaultPageSettings[PAGE_SETTINGS_USER_AGENT] = QVariant::fromValue(m_page->userAgent());
m_defaultPageSettings[PAGE_SETTINGS_LOCAL_ACCESS_REMOTE] = QVariant::fromValue(m_config.localToRemoteUrlAccessEnabled());
2011-05-28 09:36:34 +04:00
m_page->applySettings(m_defaultPageSettings);
setLibraryPath(QFileInfo(m_config.scriptFile()).dir().absolutePath());
onInitialized();
}
2011-05-26 13:18:09 +04:00
Phantom::~Phantom()
{
2010-12-27 07:04:53 +03:00
}
QStringList Phantom::args() const
2010-12-27 07:04:53 +03:00
{
return m_config.scriptArgs();
2010-12-27 07:04:53 +03:00
}
2011-05-28 09:36:34 +04:00
QVariantMap Phantom::defaultPageSettings() const
{
return m_defaultPageSettings;
}
QString Phantom::outputEncoding() const
{
2011-08-21 11:47:34 +04:00
return Terminal::instance()->getEncoding();
}
void Phantom::setOutputEncoding(const QString &encoding)
{
2011-08-21 11:47:34 +04:00
Terminal::instance()->setEncoding(encoding);
}
bool Phantom::execute()
2010-12-27 07:04:53 +03:00
{
if (m_terminated)
return false;
if (m_config.scriptFile().isEmpty())
return false;
if (m_config.debug())
{
if (!Utils::loadJSForDebug(m_config.scriptFile(), m_scriptFileEnc, QDir::currentPath(), m_page->mainFrame())) {
m_returnValue = -1;
return false;
}
m_page->showInspector(m_config.remoteDebugPort());
} else {
if (!Utils::injectJsInFrame(m_config.scriptFile(), m_scriptFileEnc, QDir::currentPath(), m_page->mainFrame(), true)) {
m_returnValue = -1;
return false;
}
}
return !m_terminated;
2010-12-27 07:04:53 +03:00
}
int Phantom::returnValue() const
2010-12-27 07:04:53 +03:00
{
return m_returnValue;
2010-12-27 07:04:53 +03:00
}
QString Phantom::libraryPath() const
{
return m_page->libraryPath();
}
void Phantom::setLibraryPath(const QString &libraryPath)
{
m_page->setLibraryPath(libraryPath);
}
QString Phantom::scriptName() const
{
return QFileInfo(m_config.scriptFile()).fileName();
}
QVariantMap Phantom::version() const
{
QVariantMap result;
result["major"] = PHANTOMJS_VERSION_MAJOR;
result["minor"] = PHANTOMJS_VERSION_MINOR;
result["patch"] = PHANTOMJS_VERSION_PATCH;
return result;
}
// public slots:
QObject *Phantom::createWebPage()
{
WebPage *page = new WebPage(this, &m_config);
m_pages.append(page);
2011-05-28 09:36:34 +04:00
page->applySettings(m_defaultPageSettings);
page->setLibraryPath(QFileInfo(m_config.scriptFile()).dir().absolutePath());
return page;
}
QObject* Phantom::createWebServer()
{
WebServer *server = new WebServer(this, &m_config);
m_servers.append(server);
///TODO:
// page->applySettings(m_defaultPageSettings);
// page->setLibraryPath(QFileInfo(m_config.scriptFile()).dir().absolutePath());
return server;
}
QObject *Phantom::createFilesystem()
{
if (!m_filesystem)
m_filesystem = new FileSystem(this);
return m_filesystem;
}
QString Phantom::loadModuleSource(const QString &name)
{
QString moduleSource;
QString moduleSourceFilePath = ":/modules/" + name + ".js";
moduleSource = Utils::readResourceFileUtf8(moduleSourceFilePath);
return moduleSource;
}
2011-09-11 13:19:20 +04:00
bool Phantom::injectJs(const QString &jsFilePath)
{
return Utils::injectJsInFrame(jsFilePath, libraryPath(), m_page->mainFrame());
}
void Phantom::exit(int code)
{
if (m_config.debug())
Terminal::instance()->cout("Phantom::exit() called but not quitting in debug mode.");
else {
doExit(code);
}
}
void Phantom::debugExit(int code)
{
doExit(code);
}
void Phantom::doExit(int code)
{
if (m_config.debug())
{
Utils::cleanupFromDebug();
}
m_terminated = true;
m_returnValue = code;
qDeleteAll(m_pages);
m_pages.clear();
m_page = 0;
QApplication::instance()->exit(code);
2010-12-27 07:04:53 +03:00
}
void
Phantom::onInitialized()
{
// Add 'phantom' object to the global scope
m_page->mainFrame()->addToJavaScriptWindowObject("phantom", this);
// Bootstrap the PhantomJS scope
m_page->mainFrame()->evaluateJavaScript(Utils::readResourceFileUtf8(":/bootstrap.js"));
}
// private slots:
void Phantom::printConsoleMessage(const QString &message, int lineNumber, const QString &source)
{
QString msg = message;
if (!source.isEmpty())
msg = source + ":" + QString::number(lineNumber) + " " + msg;
2011-08-21 11:47:34 +04:00
Terminal::instance()->cout(msg);
}